body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Cooper Light BT';
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Cooper Light BT';
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Futura Book font';
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Cooper Light BT';
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Futura Book font';
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #f98c25 !important;
}
.bg-success {
  background-color: #fa003f !important;
}
.bg-info {
  background-color: #a61a3d !important;
}
.bg-warning {
  background-color: #098484 !important;
}
.bg-danger {
  background-color: #faffb0 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f98c25 !important;
  border-color: #f98c25 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #cc6606 !important;
  border-color: #cc6606 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #cc6606 !important;
  border-color: #cc6606 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fa7a00 !important;
  border-color: #fa7a00 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ae5500 !important;
  border-color: #ae5500 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ae5500 !important;
  border-color: #ae5500 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #641025 !important;
  border-color: #641025 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #641025 !important;
  border-color: #641025 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #fa003f !important;
  border-color: #fa003f !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ae002c !important;
  border-color: #ae002c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ae002c !important;
  border-color: #ae002c !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #098484 !important;
  border-color: #098484 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #043c3c !important;
  border-color: #043c3c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #043c3c !important;
  border-color: #043c3c !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #faffb0 !important;
  border-color: #faffb0 !important;
  transition: all .5s;
  color: #a5b000 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #a5b000 !important;
  background-color: #f5ff63 !important;
  border-color: #f5ff63 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #a5b000 !important;
  background-color: #f5ff63 !important;
  border-color: #f5ff63 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #b35a05 !important;
  color: #b35a05 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f98c25 !important;
  border-color: #f98c25 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f98c25 !important;
  border-color: #f98c25 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #944800 !important;
  color: #944800 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fa7a00 !important;
  border-color: #fa7a00 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fa7a00 !important;
  border-color: #fa7a00 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #4e0c1d !important;
  color: #4e0c1d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #940025 !important;
  color: #940025 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #fa003f !important;
  border-color: #fa003f !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fa003f !important;
  border-color: #fa003f !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #022525 !important;
  color: #022525 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #098484 !important;
  border-color: #098484 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #098484 !important;
  border-color: #098484 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #f4ff4a !important;
  color: #f4ff4a !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #a5b000 !important;
  background-color: #faffb0 !important;
  border-color: #faffb0 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #a5b000 !important;
  background-color: #faffb0 !important;
  border-color: #faffb0 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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: #f98c25 !important;
}
.text-secondary {
  color: #fa7a00 !important;
}
.text-success {
  color: #fa003f !important;
}
.text-info {
  color: #a61a3d !important;
}
.text-warning {
  color: #098484 !important;
}
.text-danger {
  color: #faffb0 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b35a05 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #944800 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #940025 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4e0c1d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #022525 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #f4ff4a !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #fa003f;
}
.alert-info {
  background-color: #a61a3d;
}
.alert-warning {
  background-color: #098484;
}
.alert-danger {
  background-color: #faffb0;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f98c25;
  border-color: #f98c25;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f98c25;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef5ec;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffc7d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e55a7d;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #1df0f0;
}
.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;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #f00d0d;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #f00d0d;
}
.form-control {
  font-family: 'Futura Book font';
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #f98c25;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #f98c25;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #f98c25;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f98c25;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f98c25;
  border-bottom-color: #f98c25;
}
.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: #000000 !important;
  background-color: #f98c25 !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: #fa7a00 !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='%23f98c25' %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-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teazCDC1Xt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teazCDC1Xt .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-teazCDC1Xt .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-teazCDC1Xt .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-teazCDC1Xt .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-teazCDC1Xt .mbr-section-title,
.cid-teazCDC1Xt .card_topic {
  margin-bottom: 12px;
}
.cid-teazCDC1Xt .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-teazCDC1Xt .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-teazCDC1Xt .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-teazCDC1Xt .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-teazCDC1Xt .category_content,
.cid-teazCDC1Xt .date,
.cid-teazCDC1Xt .name_author {
  opacity: .8;
}
.cid-teazCDC1Xt .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-teazCDC1Xt .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-teazCDC1Xt .item-img,
.cid-teazCDC1Xt img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-teazCDC1Xt .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-teazCDC1Xt .item-img {
    margin-bottom: 20px;
  }
}
.cid-teazCDC1Xt .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-teazCDC1Xt .mbr-section-btn .btn-secondary-outline:hover,
.cid-teazCDC1Xt .mbr-section-btn .btn-secondary-outline .active,
.cid-teazCDC1Xt .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-teaUFvZRjz {
  background-color: #ffffff;
}
.cid-teaUFvZRjz .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-teaUFvZRjz .card {
  background: transparent;
}
.cid-teaUFvZRjz .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-teaUFvZRjz .mbr-fallback-image.disabled {
  display: none;
}
.cid-teaUFvZRjz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebmMyL8JF {
  background-color: #ffffff;
}
.cid-tebmMyL8JF .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebmMyL8JF .card {
  background: transparent;
}
.cid-tebmMyL8JF .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tebmMyL8JF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebmMyL8JF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebnOUq6jP {
  background-color: #ffffff;
}
.cid-tebnOUq6jP .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebnOUq6jP .card {
  background: transparent;
}
.cid-tebnOUq6jP .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebnOUq6jP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebnOUq6jP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebovDMRtu {
  background-color: #ffffff;
}
.cid-tebovDMRtu .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebovDMRtu .card {
  background: transparent;
}
.cid-tebovDMRtu .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tebovDMRtu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebovDMRtu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebtyvOpr9 {
  background-color: #ffffff;
}
.cid-tebtyvOpr9 .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebtyvOpr9 .card {
  background: transparent;
}
.cid-tebtyvOpr9 .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebtyvOpr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebtyvOpr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebvFbJSXQ {
  background-color: #ffffff;
}
.cid-tebvFbJSXQ .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebvFbJSXQ .card {
  background: transparent;
}
.cid-tebvFbJSXQ .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebvFbJSXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebvFbJSXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebwl67IZi {
  background-color: #ffffff;
}
.cid-tebwl67IZi .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebwl67IZi .card {
  background: transparent;
}
.cid-tebwl67IZi .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebwl67IZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebwl67IZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebx7PjGSR {
  background-color: #ffffff;
}
.cid-tebx7PjGSR .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebx7PjGSR .card {
  background: transparent;
}
.cid-tebx7PjGSR .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebx7PjGSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebx7PjGSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebxEFKQPO {
  background-color: #ffffff;
}
.cid-tebxEFKQPO .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebxEFKQPO .card {
  background: transparent;
}
.cid-tebxEFKQPO .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebxEFKQPO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebxEFKQPO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tebzVnVYe4 {
  background-color: #ffffff;
}
.cid-tebzVnVYe4 .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tebzVnVYe4 .card {
  background: transparent;
}
.cid-tebzVnVYe4 .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tebzVnVYe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tebzVnVYe4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI2KOZ8vWg {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KOZ8vWg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KOZ8vWg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KOZ8vWg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KOZ8vWg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KOZ8vWg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KOZ8vWg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KOZ8vWg .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-uI2KOZ8vWg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KOZ8vWg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KOZ8vWg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KOZ8vWg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KOZ8vWg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KOZ8vWg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KOZ8vWg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdvx0K9u5t {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tdvx0K9u5t .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tdvx0K9u5t .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tdvx0K9u5t .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tdvx0K9u5t .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tdvx0K9u5t .mbr-section-title,
.cid-tdvx0K9u5t .card_topic {
  margin-bottom: 12px;
}
.cid-tdvx0K9u5t .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tdvx0K9u5t .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tdvx0K9u5t .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tdvx0K9u5t .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tdvx0K9u5t .category_content,
.cid-tdvx0K9u5t .date,
.cid-tdvx0K9u5t .name_author {
  opacity: .8;
}
.cid-tdvx0K9u5t .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tdvx0K9u5t .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tdvx0K9u5t .item-img,
.cid-tdvx0K9u5t img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tdvx0K9u5t .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tdvx0K9u5t .item-img {
    margin-bottom: 20px;
  }
}
.cid-tdvx0K9u5t .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tdvx0K9u5t .mbr-section-btn .btn-secondary-outline:hover,
.cid-tdvx0K9u5t .mbr-section-btn .btn-secondary-outline .active,
.cid-tdvx0K9u5t .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tdpItfUpRZ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdpItfUpRZ .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdpItfUpRZ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdpItfUpRZ img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdpItfUpRZ .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-teadB8W2Id {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-teadB8W2Id img {
  border-radius: 0px;
}
.cid-teadB8W2Id .row {
  justify-content: center;
}
.cid-teadB8W2Id .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tdvACAcBlp {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdvACAcBlp .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvACAcBlp .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvACAcBlp img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvACAcBlp .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-teahfYVPmf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-teahfYVPmf img {
  border-radius: 0px;
}
.cid-teahfYVPmf .row {
  justify-content: center;
}
.cid-teahfYVPmf .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tdvBdHd3PS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdvBdHd3PS .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvBdHd3PS .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvBdHd3PS img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvBdHd3PS .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-teaity2yS2 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-teaity2yS2 img {
  border-radius: 0px;
}
.cid-teaity2yS2 .row {
  justify-content: center;
}
.cid-teaity2yS2 .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tdvBOYwRoW {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdvBOYwRoW .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvBOYwRoW .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvBOYwRoW img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvBOYwRoW .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tealoiD1JZ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tealoiD1JZ img {
  border-radius: 0px;
}
.cid-tealoiD1JZ .row {
  justify-content: center;
}
.cid-tealoiD1JZ .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tdvCoGHfoq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdvCoGHfoq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvCoGHfoq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvCoGHfoq img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvCoGHfoq .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-teanb4U3ZB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-teanb4U3ZB img {
  border-radius: 0px;
}
.cid-teanb4U3ZB .row {
  justify-content: center;
}
.cid-teanb4U3ZB .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tdvD5KQplC {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdvD5KQplC .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvD5KQplC .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvD5KQplC img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvD5KQplC .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tdvDBzCr4c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tdvDBzCr4c .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tdvDBzCr4c .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tdvDBzCr4c img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tdvDBzCr4c .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tdvEGSFdBN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tdvEGSFdBN h2,
.cid-tdvEGSFdBN h3,
.cid-tdvEGSFdBN h4,
.cid-tdvEGSFdBN p {
  margin: 0;
}
.cid-tdvEGSFdBN .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tdvEGSFdBN .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tdvEGSFdBN .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uI2ISlc0uV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2ISlc0uV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2ISlc0uV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2ISlc0uV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2ISlc0uV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2ISlc0uV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2ISlc0uV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2ISlc0uV .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-uI2ISlc0uV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2ISlc0uV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2ISlc0uV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2ISlc0uV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2ISlc0uV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2ISlc0uV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2ISlc0uV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgfN5ADpbL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tgfN5ADpbL .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tgfN5ADpbL .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tgfN5ADpbL .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tgfN5ADpbL .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tgfN5ADpbL .mbr-section-title,
.cid-tgfN5ADpbL .card_topic {
  margin-bottom: 12px;
}
.cid-tgfN5ADpbL .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tgfN5ADpbL .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tgfN5ADpbL .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tgfN5ADpbL .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tgfN5ADpbL .category_content,
.cid-tgfN5ADpbL .date,
.cid-tgfN5ADpbL .name_author {
  opacity: .8;
}
.cid-tgfN5ADpbL .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tgfN5ADpbL .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tgfN5ADpbL .item-img,
.cid-tgfN5ADpbL img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tgfN5ADpbL .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tgfN5ADpbL .item-img {
    margin-bottom: 20px;
  }
}
.cid-tgfN5ADpbL .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tgfN5ADpbL .mbr-section-btn .btn-secondary-outline:hover,
.cid-tgfN5ADpbL .mbr-section-btn .btn-secondary-outline .active,
.cid-tgfN5ADpbL .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tgfQa15E0U {
  background-color: #ffffff;
}
.cid-tgfQa15E0U .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfQa15E0U .card {
  background: transparent;
}
.cid-tgfQa15E0U .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tgfQa15E0U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfQa15E0U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfQM6WoKO {
  background-color: #ffffff;
}
.cid-tgfQM6WoKO .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfQM6WoKO .card {
  background: transparent;
}
.cid-tgfQM6WoKO .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tgfQM6WoKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfQM6WoKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfRE8y5HA {
  background-color: #ffffff;
}
.cid-tgfRE8y5HA .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfRE8y5HA .card {
  background: transparent;
}
.cid-tgfRE8y5HA .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tgfRE8y5HA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfRE8y5HA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfSBmAUWE {
  background-color: #ffffff;
}
.cid-tgfSBmAUWE .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfSBmAUWE .card {
  background: transparent;
}
.cid-tgfSBmAUWE .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tgfSBmAUWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfSBmAUWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfTDM1hxh {
  background-color: #ffffff;
}
.cid-tgfTDM1hxh .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfTDM1hxh .card {
  background: transparent;
}
.cid-tgfTDM1hxh .card-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tgfTDM1hxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfTDM1hxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfU88eQtJ {
  background-color: #ffffff;
}
.cid-tgfU88eQtJ .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfU88eQtJ .card {
  background: transparent;
}
.cid-tgfU88eQtJ .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tgfU88eQtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfU88eQtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgfVsREKxf {
  background-color: #ffffff;
}
.cid-tgfVsREKxf .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tgfVsREKxf .card {
  background: transparent;
}
.cid-tgfVsREKxf .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tgfVsREKxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgfVsREKxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI2KNjjair {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KNjjair .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KNjjair .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KNjjair .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KNjjair .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KNjjair .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KNjjair .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KNjjair .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-uI2KNjjair .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KNjjair .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KNjjair .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KNjjair .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KNjjair .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KNjjair .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KNjjair .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thtZP5158M {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-thtZP5158M .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-thtZP5158M .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-thtZP5158M .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-thtZP5158M .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-thtZP5158M .mbr-section-title,
.cid-thtZP5158M .card_topic {
  margin-bottom: 12px;
}
.cid-thtZP5158M .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-thtZP5158M .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-thtZP5158M .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-thtZP5158M .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-thtZP5158M .category_content,
.cid-thtZP5158M .date,
.cid-thtZP5158M .name_author {
  opacity: .8;
}
.cid-thtZP5158M .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-thtZP5158M .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-thtZP5158M .item-img,
.cid-thtZP5158M img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-thtZP5158M .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-thtZP5158M .item-img {
    margin-bottom: 20px;
  }
}
.cid-thtZP5158M .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-thtZP5158M .mbr-section-btn .btn-secondary-outline:hover,
.cid-thtZP5158M .mbr-section-btn .btn-secondary-outline .active,
.cid-thtZP5158M .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-thtZP5zGYW {
  background-color: #ffffff;
}
.cid-thtZP5zGYW .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP5zGYW .card {
  background: transparent;
}
.cid-thtZP5zGYW .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-thtZP5zGYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP5zGYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP63v9I {
  background-color: #ffffff;
}
.cid-thtZP63v9I .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP63v9I .card {
  background: transparent;
}
.cid-thtZP63v9I .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-thtZP63v9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP63v9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP74KyY {
  background-color: #ffffff;
}
.cid-thtZP74KyY .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP74KyY .card {
  background: transparent;
}
.cid-thtZP74KyY .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-thtZP74KyY .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP74KyY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP6zl4h {
  background-color: #ffffff;
}
.cid-thtZP6zl4h .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP6zl4h .card {
  background: transparent;
}
.cid-thtZP6zl4h .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thtZP6zl4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP6zl4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP7xjRr {
  background-color: #ffffff;
}
.cid-thtZP7xjRr .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP7xjRr .card {
  background: transparent;
}
.cid-thtZP7xjRr .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thtZP7xjRr .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP7xjRr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thWwnyjzg7 {
  background-color: #ffffff;
}
.cid-thWwnyjzg7 .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thWwnyjzg7 .card {
  background: transparent;
}
.cid-thWwnyjzg7 .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thWwnyjzg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thWwnyjzg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP8bNrz {
  background-color: #ffffff;
}
.cid-thtZP8bNrz .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP8bNrz .card {
  background: transparent;
}
.cid-thtZP8bNrz .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thtZP8bNrz .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP8bNrz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP8J5ZA {
  background-color: #ffffff;
}
.cid-thtZP8J5ZA .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP8J5ZA .card {
  background: transparent;
}
.cid-thtZP8J5ZA .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thtZP8J5ZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP8J5ZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP9eFCP {
  background-color: #ffffff;
}
.cid-thtZP9eFCP .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP9eFCP .card {
  background: transparent;
}
.cid-thtZP9eFCP .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-thtZP9eFCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP9eFCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thtZP9DLYj {
  background-color: #ffffff;
}
.cid-thtZP9DLYj .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-thtZP9DLYj .card {
  background: transparent;
}
.cid-thtZP9DLYj .card-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-thtZP9DLYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-thtZP9DLYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI2KSxoHZg {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KSxoHZg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KSxoHZg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KSxoHZg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KSxoHZg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KSxoHZg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KSxoHZg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KSxoHZg .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-uI2KSxoHZg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KSxoHZg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KSxoHZg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KSxoHZg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KSxoHZg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KSxoHZg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KSxoHZg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjbdy20KEI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tjbdy20KEI .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tjbdy20KEI .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tjbdy20KEI .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tjbdy20KEI .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tjbdy20KEI .mbr-section-title,
.cid-tjbdy20KEI .card_topic {
  margin-bottom: 12px;
}
.cid-tjbdy20KEI .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tjbdy20KEI .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tjbdy20KEI .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tjbdy20KEI .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tjbdy20KEI .category_content,
.cid-tjbdy20KEI .date,
.cid-tjbdy20KEI .name_author {
  opacity: .8;
}
.cid-tjbdy20KEI .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tjbdy20KEI .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tjbdy20KEI .item-img,
.cid-tjbdy20KEI img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tjbdy20KEI .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tjbdy20KEI .item-img {
    margin-bottom: 20px;
  }
}
.cid-tjbdy20KEI .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tjbdy20KEI .mbr-section-btn .btn-secondary-outline:hover,
.cid-tjbdy20KEI .mbr-section-btn .btn-secondary-outline .active,
.cid-tjbdy20KEI .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tjbdy2vlaW {
  background-color: #ffffff;
}
.cid-tjbdy2vlaW .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy2vlaW .card {
  background: transparent;
}
.cid-tjbdy2vlaW .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tjbdy2vlaW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy2vlaW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjbdy2WMUM {
  background-color: #ffffff;
}
.cid-tjbdy2WMUM .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy2WMUM .card {
  background: transparent;
}
.cid-tjbdy2WMUM .card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tjbdy2WMUM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy2WMUM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjbdy3vtuO {
  background-color: #ffffff;
}
.cid-tjbdy3vtuO .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy3vtuO .card {
  background: transparent;
}
.cid-tjbdy3vtuO .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tjbdy3vtuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy3vtuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjbdy4UGXx {
  background-color: #ffffff;
}
.cid-tjbdy4UGXx .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy4UGXx .card {
  background: transparent;
}
.cid-tjbdy4UGXx .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tjbdy4UGXx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy4UGXx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjbdy5kznR {
  background-color: #ffffff;
}
.cid-tjbdy5kznR .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy5kznR .card {
  background: transparent;
}
.cid-tjbdy5kznR .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tjbdy5kznR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy5kznR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjbdy5LqiA {
  background-color: #ffffff;
}
.cid-tjbdy5LqiA .wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.cid-tjbdy5LqiA .card {
  background: transparent;
}
.cid-tjbdy5LqiA .card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tjbdy5LqiA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjbdy5LqiA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI2KQIrZzU {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KQIrZzU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KQIrZzU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KQIrZzU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KQIrZzU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KQIrZzU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KQIrZzU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KQIrZzU .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-uI2KQIrZzU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KQIrZzU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KQIrZzU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KQIrZzU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KQIrZzU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KQIrZzU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KQIrZzU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsC1DJKRvQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsC1DJKRvQ .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tsC1DJKRvQ .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tsC1DJKRvQ .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tsC1DJKRvQ .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tsC1DJKRvQ .mbr-section-title,
.cid-tsC1DJKRvQ .card_topic {
  margin-bottom: 12px;
}
.cid-tsC1DJKRvQ .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tsC1DJKRvQ .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tsC1DJKRvQ .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tsC1DJKRvQ .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tsC1DJKRvQ .category_content,
.cid-tsC1DJKRvQ .date,
.cid-tsC1DJKRvQ .name_author {
  opacity: .8;
}
.cid-tsC1DJKRvQ .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tsC1DJKRvQ .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tsC1DJKRvQ .item-img,
.cid-tsC1DJKRvQ img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tsC1DJKRvQ .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tsC1DJKRvQ .item-img {
    margin-bottom: 20px;
  }
}
.cid-tsC1DJKRvQ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tsC1DJKRvQ .mbr-section-btn .btn-secondary-outline:hover,
.cid-tsC1DJKRvQ .mbr-section-btn .btn-secondary-outline .active,
.cid-tsC1DJKRvQ .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tsC1DLVJ92 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsC1DLVJ92 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tsC1DLVJ92 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tsC1DLVJ92 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tsC1DLVJ92 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tsC1DNjcYG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsC1DNjcYG .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tsC1DNjcYG .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tsC1DNjcYG img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tsC1DNjcYG .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tsC1DOgxC6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsC1DOgxC6 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tsC1DOgxC6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tsC1DOgxC6 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tsC1DOgxC6 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tsC1DPqudw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsC1DPqudw .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tsC1DPqudw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tsC1DPqudw img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tsC1DPqudw .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tsC1DQPZV6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsC1DQPZV6 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tsC1DQPZV6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tsC1DQPZV6 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tsC1DQPZV6 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-uI2JGcEJYA {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JGcEJYA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JGcEJYA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JGcEJYA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JGcEJYA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JGcEJYA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JGcEJYA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JGcEJYA .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-uI2JGcEJYA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JGcEJYA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JGcEJYA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JGcEJYA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JGcEJYA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JGcEJYA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JGcEJYA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu7nt44Yer {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu7nt44Yer .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tu7nt44Yer .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tu7nt44Yer .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tu7nt44Yer .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tu7nt44Yer .mbr-section-title,
.cid-tu7nt44Yer .card_topic {
  margin-bottom: 12px;
}
.cid-tu7nt44Yer .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tu7nt44Yer .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tu7nt44Yer .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tu7nt44Yer .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tu7nt44Yer .category_content,
.cid-tu7nt44Yer .date,
.cid-tu7nt44Yer .name_author {
  opacity: .8;
}
.cid-tu7nt44Yer .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tu7nt44Yer .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tu7nt44Yer .item-img,
.cid-tu7nt44Yer img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tu7nt44Yer .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tu7nt44Yer .item-img {
    margin-bottom: 20px;
  }
}
.cid-tu7nt44Yer .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tu7nt44Yer .mbr-section-btn .btn-secondary-outline:hover,
.cid-tu7nt44Yer .mbr-section-btn .btn-secondary-outline .active,
.cid-tu7nt44Yer .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tu7nt4xKtu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tu7nt4xKtu .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tu7nt4xKtu .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tu7nt4xKtu img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tu7nt4xKtu .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tu7nt4SXn2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tu7nt4SXn2 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tu7nt4SXn2 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tu7nt4SXn2 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tu7nt4SXn2 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tu7nt5ktzp {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tu7nt5ktzp .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tu7nt5ktzp .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tu7nt5ktzp img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tu7nt5ktzp .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tu7nt5HXCw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu7nt5HXCw .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tu7nt5HXCw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tu7nt5HXCw img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tu7nt5HXCw .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tu7ACxhJuP {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tu7ACxhJuP .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tu7ACxhJuP .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7ACxhJuP .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7ACxhJuP .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7ACxhJuP .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7ACxhJuP .mbr-text {
  color: #000000;
}
.cid-tu7AR9zUMr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JIxKyjz {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JIxKyjz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JIxKyjz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JIxKyjz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JIxKyjz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JIxKyjz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JIxKyjz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JIxKyjz .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-uI2JIxKyjz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JIxKyjz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JIxKyjz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JIxKyjz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JIxKyjz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JIxKyjz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JIxKyjz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvZkNVNv6n {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvZkNVNv6n .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tvZkNVNv6n .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tvZkNVNv6n .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tvZkNVNv6n .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tvZkNVNv6n .mbr-section-title,
.cid-tvZkNVNv6n .card_topic {
  margin-bottom: 12px;
}
.cid-tvZkNVNv6n .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tvZkNVNv6n .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tvZkNVNv6n .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tvZkNVNv6n .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tvZkNVNv6n .category_content,
.cid-tvZkNVNv6n .date,
.cid-tvZkNVNv6n .name_author {
  opacity: .8;
}
.cid-tvZkNVNv6n .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tvZkNVNv6n .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tvZkNVNv6n .item-img,
.cid-tvZkNVNv6n img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tvZkNVNv6n .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tvZkNVNv6n .item-img {
    margin-bottom: 20px;
  }
}
.cid-tvZkNVNv6n .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tvZkNVNv6n .mbr-section-btn .btn-secondary-outline:hover,
.cid-tvZkNVNv6n .mbr-section-btn .btn-secondary-outline .active,
.cid-tvZkNVNv6n .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tvZkNWgtR0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvZkNWgtR0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tvZkNWgtR0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvZkNWgtR0 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tvZkNWgtR0 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tvZkNWBybG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvZkNWBybG .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tvZkNWBybG .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvZkNWBybG img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tvZkNWBybG .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tvZkNWYcRM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvZkNWYcRM .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tvZkNWYcRM .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvZkNWYcRM img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tvZkNWYcRM .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tvZkNY9bPV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2K1GbIpN {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2K1GbIpN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2K1GbIpN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2K1GbIpN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2K1GbIpN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2K1GbIpN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2K1GbIpN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2K1GbIpN .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-uI2K1GbIpN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2K1GbIpN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2K1GbIpN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2K1GbIpN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2K1GbIpN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2K1GbIpN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2K1GbIpN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txqp46P081 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txqp46P081 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-txqp46P081 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-txqp46P081 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-txqp46P081 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-txqp46P081 .mbr-section-title,
.cid-txqp46P081 .card_topic {
  margin-bottom: 12px;
}
.cid-txqp46P081 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-txqp46P081 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-txqp46P081 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-txqp46P081 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-txqp46P081 .category_content,
.cid-txqp46P081 .date,
.cid-txqp46P081 .name_author {
  opacity: .8;
}
.cid-txqp46P081 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-txqp46P081 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-txqp46P081 .item-img,
.cid-txqp46P081 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-txqp46P081 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-txqp46P081 .item-img {
    margin-bottom: 20px;
  }
}
.cid-txqp46P081 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-txqp46P081 .mbr-section-btn .btn-secondary-outline:hover,
.cid-txqp46P081 .mbr-section-btn .btn-secondary-outline .active,
.cid-txqp46P081 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-txqp47sLpB {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txqp47sLpB .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqp47sLpB .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqp47sLpB img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqp47sLpB .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqp47P1H6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txqp47P1H6 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqp47P1H6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqp47P1H6 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqp47P1H6 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqp48ey6b {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txqp48ey6b .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqp48ey6b .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqp48ey6b img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqp48ey6b .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqu4bESro {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txqu4bESro .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-txqu4bESro .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f98c25;
}
.cid-txqu4bESro .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-txqu4bESro .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-txqu4bESro .mbr-section-title {
  color: #000000;
}
@media (min-width: 1400px) {
  .cid-txqu4bESro .col-12 {
    padding: 0 2rem;
  }
  .cid-txqu4bESro .row {
    margin: 0 -2rem;
  }
}
.cid-txqu4bESro .mbr-text,
.cid-txqu4bESro .mbr-section-btn {
  color: #333333;
}
.cid-txqBBhqGs0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txqBBhqGs0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqBBhqGs0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqBBhqGs0 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqBBhqGs0 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqD8dmTQo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txqD8dmTQo .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqD8dmTQo .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqD8dmTQo img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqD8dmTQo .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqCr0gV0E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txqCr0gV0E .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-txqCr0gV0E .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-txqCr0gV0E img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-txqCr0gV0E .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-txqp48Ew4D {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2K3BQioh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2K3BQioh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2K3BQioh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2K3BQioh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2K3BQioh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2K3BQioh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2K3BQioh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2K3BQioh .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-uI2K3BQioh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2K3BQioh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2K3BQioh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2K3BQioh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2K3BQioh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2K3BQioh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2K3BQioh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyx8b7k4lA {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyx8b7k4lA .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tyx8b7k4lA .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tyx8b7k4lA .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tyx8b7k4lA .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tyx8b7k4lA .mbr-section-title,
.cid-tyx8b7k4lA .card_topic {
  margin-bottom: 12px;
}
.cid-tyx8b7k4lA .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tyx8b7k4lA .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tyx8b7k4lA .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tyx8b7k4lA .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tyx8b7k4lA .category_content,
.cid-tyx8b7k4lA .date,
.cid-tyx8b7k4lA .name_author {
  opacity: .8;
}
.cid-tyx8b7k4lA .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tyx8b7k4lA .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tyx8b7k4lA .item-img,
.cid-tyx8b7k4lA img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tyx8b7k4lA .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tyx8b7k4lA .item-img {
    margin-bottom: 20px;
  }
}
.cid-tyx8b7k4lA .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tyx8b7k4lA .mbr-section-btn .btn-secondary-outline:hover,
.cid-tyx8b7k4lA .mbr-section-btn .btn-secondary-outline .active,
.cid-tyx8b7k4lA .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tyx8b7WVb4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyx8b7WVb4 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tyx8b7WVb4 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tyx8b7WVb4 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tyx8b7WVb4 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tyx8b8i9HJ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyx8b8i9HJ .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tyx8b8i9HJ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tyx8b8i9HJ img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tyx8b8i9HJ .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tyx8b8If7M {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyx8b8If7M .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tyx8b8If7M .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tyx8b8If7M img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tyx8b8If7M .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tyx8b9ZYQu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyx8b9ZYQu .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tyx8b9ZYQu .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tyx8b9ZYQu img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tyx8b9ZYQu .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tyx8balsOb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyx8balsOb .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tyx8balsOb .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tyx8balsOb img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tyx8balsOb .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tyx8bbeQlo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KLJY3Og {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KLJY3Og .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KLJY3Og .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KLJY3Og .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KLJY3Og .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KLJY3Og .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KLJY3Og .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KLJY3Og .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-uI2KLJY3Og .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KLJY3Og .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KLJY3Og .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KLJY3Og .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KLJY3Og .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KLJY3Og .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KLJY3Og .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzXnAQkSuv {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzXnAQkSuv .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tzXnAQkSuv .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tzXnAQkSuv .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tzXnAQkSuv .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tzXnAQkSuv .mbr-section-title,
.cid-tzXnAQkSuv .card_topic {
  margin-bottom: 12px;
}
.cid-tzXnAQkSuv .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tzXnAQkSuv .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tzXnAQkSuv .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tzXnAQkSuv .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tzXnAQkSuv .category_content,
.cid-tzXnAQkSuv .date,
.cid-tzXnAQkSuv .name_author {
  opacity: .8;
}
.cid-tzXnAQkSuv .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tzXnAQkSuv .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tzXnAQkSuv .item-img,
.cid-tzXnAQkSuv img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tzXnAQkSuv .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tzXnAQkSuv .item-img {
    margin-bottom: 20px;
  }
}
.cid-tzXnAQkSuv .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tzXnAQkSuv .mbr-section-btn .btn-secondary-outline:hover,
.cid-tzXnAQkSuv .mbr-section-btn .btn-secondary-outline .active,
.cid-tzXnAQkSuv .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tzXnAQOR8s {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tzXnAQOR8s .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tzXnAQOR8s .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tzXnAQOR8s img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tzXnAQOR8s .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tzXnARbMot {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tzXnARbMot .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tzXnARbMot .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tzXnARbMot img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tzXnARbMot .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tzXnAREsSN {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tzXnAREsSN .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tzXnAREsSN .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tzXnAREsSN img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tzXnAREsSN .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tzXnAS0KEi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzXnAS0KEi .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tzXnAS0KEi .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tzXnAS0KEi img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tzXnAS0KEi .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tzXnASNmmy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JSzsoMN {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JSzsoMN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JSzsoMN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JSzsoMN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JSzsoMN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JSzsoMN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JSzsoMN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JSzsoMN .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-uI2JSzsoMN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JSzsoMN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JSzsoMN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JSzsoMN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JSzsoMN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JSzsoMN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JSzsoMN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBKiLkDPjU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBKiLkDPjU .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tBKiLkDPjU .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tBKiLkDPjU .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tBKiLkDPjU .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tBKiLkDPjU .mbr-section-title,
.cid-tBKiLkDPjU .card_topic {
  margin-bottom: 12px;
}
.cid-tBKiLkDPjU .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tBKiLkDPjU .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tBKiLkDPjU .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tBKiLkDPjU .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tBKiLkDPjU .category_content,
.cid-tBKiLkDPjU .date,
.cid-tBKiLkDPjU .name_author {
  opacity: .8;
}
.cid-tBKiLkDPjU .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tBKiLkDPjU .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tBKiLkDPjU .item-img,
.cid-tBKiLkDPjU img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tBKiLkDPjU .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tBKiLkDPjU .item-img {
    margin-bottom: 20px;
  }
}
.cid-tBKiLkDPjU .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tBKiLkDPjU .mbr-section-btn .btn-secondary-outline:hover,
.cid-tBKiLkDPjU .mbr-section-btn .btn-secondary-outline .active,
.cid-tBKiLkDPjU .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tBKiLl6Enq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tBKiLl6Enq .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tBKiLl6Enq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tBKiLl6Enq img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tBKiLl6Enq .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tBKiLlrHrU {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tBKiLlrHrU .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tBKiLlrHrU .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tBKiLlrHrU img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tBKiLlrHrU .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tBKiLlUVBr {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tBKiLlUVBr .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tBKiLlUVBr .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tBKiLlUVBr img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tBKiLlUVBr .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tBKiLmfrtA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBKiLmfrtA .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tBKiLmfrtA .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tBKiLmfrtA img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tBKiLmfrtA .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tBKiLn4P3j {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JL25hNv {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JL25hNv .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JL25hNv .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JL25hNv .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JL25hNv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JL25hNv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JL25hNv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JL25hNv .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-uI2JL25hNv .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JL25hNv .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JL25hNv .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JL25hNv .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JL25hNv .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JL25hNv .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JL25hNv .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEzGj6E8dB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEzGj6E8dB .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tEzGj6E8dB .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tEzGj6E8dB .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tEzGj6E8dB .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tEzGj6E8dB .mbr-section-title,
.cid-tEzGj6E8dB .card_topic {
  margin-bottom: 12px;
}
.cid-tEzGj6E8dB .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tEzGj6E8dB .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tEzGj6E8dB .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tEzGj6E8dB .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tEzGj6E8dB .category_content,
.cid-tEzGj6E8dB .date,
.cid-tEzGj6E8dB .name_author {
  opacity: .8;
}
.cid-tEzGj6E8dB .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tEzGj6E8dB .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tEzGj6E8dB .item-img,
.cid-tEzGj6E8dB img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tEzGj6E8dB .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tEzGj6E8dB .item-img {
    margin-bottom: 20px;
  }
}
.cid-tEzGj6E8dB .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tEzGj6E8dB .mbr-section-btn .btn-secondary-outline:hover,
.cid-tEzGj6E8dB .mbr-section-btn .btn-secondary-outline .active,
.cid-tEzGj6E8dB .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tFTyKTBIIV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tFTyKTBIIV .mbr-section-subtitle,
.cid-tFTyKTBIIV .caption-text {
  color: #8d97ad;
}
.cid-tFTyKTBIIV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTyKTBIIV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTyKTBIIV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTyKTBIIV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTyKTBIIV .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTzyQ6C2V {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tFTzyQ6C2V .mbr-section-subtitle,
.cid-tFTzyQ6C2V .caption-text {
  color: #8d97ad;
}
.cid-tFTzyQ6C2V .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTzyQ6C2V .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTzyQ6C2V .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTzyQ6C2V .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTzyQ6C2V .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTAuJGCYl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTAuJGCYl .mbr-section-subtitle,
.cid-tFTAuJGCYl .caption-text {
  color: #8d97ad;
}
.cid-tFTAuJGCYl .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTAuJGCYl .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTAuJGCYl .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTAuJGCYl .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTAuJGCYl .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTBB5ucvR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFTBB5ucvR .p {
  color: #333333;
  padding-top: 30px;
}
.cid-tFTBB5ucvR .row {
  justify-content: center;
}
.cid-tFTBB5ucvR a {
  font-weight: 400 !important;
}
.cid-tFTEEcEnuE {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTEEcEnuE .mbr-section-subtitle,
.cid-tFTEEcEnuE .caption-text {
  color: #8d97ad;
}
.cid-tFTEEcEnuE .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTEEcEnuE .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTEEcEnuE .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTEEcEnuE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTEEcEnuE .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTFPi3XD1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTGmPxkD5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTGmPxkD5 .mbr-section-subtitle,
.cid-tFTGmPxkD5 .caption-text {
  color: #8d97ad;
}
.cid-tFTGmPxkD5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTGmPxkD5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTGmPxkD5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTGmPxkD5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTGmPxkD5 .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTGPfBcya {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTHnCroaF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTHnCroaF .mbr-section-subtitle,
.cid-tFTHnCroaF .caption-text {
  color: #8d97ad;
}
.cid-tFTHnCroaF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTHnCroaF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTHnCroaF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTHnCroaF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTHnCroaF .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTHQOpOPw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTIlr9KW7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTIlr9KW7 .mbr-section-subtitle,
.cid-tFTIlr9KW7 .caption-text {
  color: #8d97ad;
}
.cid-tFTIlr9KW7 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTIlr9KW7 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTIlr9KW7 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTIlr9KW7 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTIlr9KW7 .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTID05ZzC {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTJ4qgPz4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tFTJ4qgPz4 .mbr-section-subtitle,
.cid-tFTJ4qgPz4 .caption-text {
  color: #8d97ad;
}
.cid-tFTJ4qgPz4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTJ4qgPz4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTJ4qgPz4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTJ4qgPz4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTJ4qgPz4 .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTJHZIE0u {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTJYYsEZH {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tFTJYYsEZH .mbr-section-subtitle,
.cid-tFTJYYsEZH .caption-text {
  color: #8d97ad;
}
.cid-tFTJYYsEZH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTJYYsEZH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTJYYsEZH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTJYYsEZH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTJYYsEZH .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTLdo9uDC {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFTLTGKp2y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFTLTGKp2y .p {
  color: #333333;
  padding-top: 30px;
}
.cid-tFTLTGKp2y .row {
  justify-content: center;
}
.cid-tFTLTGKp2y a {
  font-weight: 400 !important;
}
.cid-tFTMcxJkIv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFTMcxJkIv .p {
  color: #333333;
  padding-top: 30px;
}
.cid-tFTMcxJkIv .row {
  justify-content: center;
}
.cid-tFTMcxJkIv a {
  font-weight: 400 !important;
}
.cid-tFTMqCli3Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tFTMqCli3Z .mbr-section-subtitle,
.cid-tFTMqCli3Z .caption-text {
  color: #8d97ad;
}
.cid-tFTMqCli3Z .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tFTMqCli3Z .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tFTMqCli3Z .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tFTMqCli3Z .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tFTMqCli3Z .mbr-section-subtitle {
  color: #333333;
}
.cid-tFTN1wcVu1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEzGja14wQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2K5VLmRq {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2K5VLmRq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2K5VLmRq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2K5VLmRq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2K5VLmRq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2K5VLmRq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2K5VLmRq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2K5VLmRq .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-uI2K5VLmRq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2K5VLmRq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2K5VLmRq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2K5VLmRq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2K5VLmRq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2K5VLmRq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2K5VLmRq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFU12QWlYE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFU12QWlYE .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tFU12QWlYE .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tFU12QWlYE .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tFU12QWlYE .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tFU12QWlYE .mbr-section-title,
.cid-tFU12QWlYE .card_topic {
  margin-bottom: 12px;
}
.cid-tFU12QWlYE .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tFU12QWlYE .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tFU12QWlYE .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tFU12QWlYE .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tFU12QWlYE .category_content,
.cid-tFU12QWlYE .date,
.cid-tFU12QWlYE .name_author {
  opacity: .8;
}
.cid-tFU12QWlYE .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tFU12QWlYE .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tFU12QWlYE .item-img,
.cid-tFU12QWlYE img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tFU12QWlYE .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tFU12QWlYE .item-img {
    margin-bottom: 20px;
  }
}
.cid-tFU12QWlYE .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tFU12QWlYE .mbr-section-btn .btn-secondary-outline:hover,
.cid-tFU12QWlYE .mbr-section-btn .btn-secondary-outline .active,
.cid-tFU12QWlYE .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tFU2ghyUBs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tFU2ghyUBs .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tFU2ghyUBs .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tFU2ghyUBs img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tFU2ghyUBs .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tFU4GPAM25 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tFU5fDQOHv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tFU5fDQOHv .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tFU5fDQOHv .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tFU5fDQOHv img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tFU5fDQOHv .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tFU13v5QSd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tFU6p89hg0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tFU6p89hg0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tFU6p89hg0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tFU6p89hg0 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tFU6p89hg0 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tFU6HU3Kvo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KHVht3I {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KHVht3I .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KHVht3I .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KHVht3I .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KHVht3I .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KHVht3I .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KHVht3I .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KHVht3I .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-uI2KHVht3I .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KHVht3I .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KHVht3I .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KHVht3I .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KHVht3I .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KHVht3I .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KHVht3I .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGVLyU8Ffr {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGVLyU8Ffr .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tGVLyU8Ffr .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tGVLyU8Ffr .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tGVLyU8Ffr .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tGVLyU8Ffr .mbr-section-title,
.cid-tGVLyU8Ffr .card_topic {
  margin-bottom: 12px;
}
.cid-tGVLyU8Ffr .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tGVLyU8Ffr .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tGVLyU8Ffr .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tGVLyU8Ffr .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tGVLyU8Ffr .category_content,
.cid-tGVLyU8Ffr .date,
.cid-tGVLyU8Ffr .name_author {
  opacity: .8;
}
.cid-tGVLyU8Ffr .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tGVLyU8Ffr .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tGVLyU8Ffr .item-img,
.cid-tGVLyU8Ffr img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tGVLyU8Ffr .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tGVLyU8Ffr .item-img {
    margin-bottom: 20px;
  }
}
.cid-tGVLyU8Ffr .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tGVLyU8Ffr .mbr-section-btn .btn-secondary-outline:hover,
.cid-tGVLyU8Ffr .mbr-section-btn .btn-secondary-outline .active,
.cid-tGVLyU8Ffr .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tGVLyUCZxP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tGVLyUCZxP .mbr-section-subtitle,
.cid-tGVLyUCZxP .caption-text {
  color: #8d97ad;
}
.cid-tGVLyUCZxP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyUCZxP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyUCZxP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyUCZxP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyUCZxP .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyUXEY1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tGVLyUXEY1 .mbr-section-subtitle,
.cid-tGVLyUXEY1 .caption-text {
  color: #8d97ad;
}
.cid-tGVLyUXEY1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyUXEY1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyUXEY1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyUXEY1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyUXEY1 .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyVqDaB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyVqDaB .mbr-section-subtitle,
.cid-tGVLyVqDaB .caption-text {
  color: #8d97ad;
}
.cid-tGVLyVqDaB .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyVqDaB .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyVqDaB .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyVqDaB .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyVqDaB .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyVTKdb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGVLyVTKdb .p {
  color: #333333;
  padding-top: 30px;
}
.cid-tGVLyVTKdb .row {
  justify-content: center;
}
.cid-tGVLyVTKdb a {
  font-weight: 400 !important;
}
.cid-tGVLyWm00n {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyWm00n .mbr-section-subtitle,
.cid-tGVLyWm00n .caption-text {
  color: #8d97ad;
}
.cid-tGVLyWm00n .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyWm00n .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyWm00n .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyWm00n .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyWm00n .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyWKtw2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGVLyX5iRf {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyX5iRf .mbr-section-subtitle,
.cid-tGVLyX5iRf .caption-text {
  color: #8d97ad;
}
.cid-tGVLyX5iRf .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyX5iRf .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyX5iRf .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyX5iRf .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyX5iRf .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyXOZIy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyXOZIy .mbr-section-subtitle,
.cid-tGVLyXOZIy .caption-text {
  color: #8d97ad;
}
.cid-tGVLyXOZIy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyXOZIy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyXOZIy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyXOZIy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyXOZIy .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyYaMVw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGVLyYtV6i {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyYtV6i .mbr-section-subtitle,
.cid-tGVLyYtV6i .caption-text {
  color: #8d97ad;
}
.cid-tGVLyYtV6i .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyYtV6i .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyYtV6i .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyYtV6i .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyYtV6i .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyYS81R {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGVLyZf3bY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tGVLyZf3bY .mbr-section-subtitle,
.cid-tGVLyZf3bY .caption-text {
  color: #8d97ad;
}
.cid-tGVLyZf3bY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tGVLyZf3bY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tGVLyZf3bY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tGVLyZf3bY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tGVLyZf3bY .mbr-section-subtitle {
  color: #333333;
}
.cid-tGVLyZDNtM {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGVLz2oJRe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2K82WSs6 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2K82WSs6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2K82WSs6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2K82WSs6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2K82WSs6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2K82WSs6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2K82WSs6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2K82WSs6 .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-uI2K82WSs6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2K82WSs6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2K82WSs6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2K82WSs6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2K82WSs6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2K82WSs6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2K82WSs6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIr506a47J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIr506a47J .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tIr506a47J .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tIr506a47J .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tIr506a47J .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tIr506a47J .mbr-section-title,
.cid-tIr506a47J .card_topic {
  margin-bottom: 12px;
}
.cid-tIr506a47J .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tIr506a47J .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tIr506a47J .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tIr506a47J .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tIr506a47J .category_content,
.cid-tIr506a47J .date,
.cid-tIr506a47J .name_author {
  opacity: .8;
}
.cid-tIr506a47J .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tIr506a47J .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tIr506a47J .item-img,
.cid-tIr506a47J img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tIr506a47J .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tIr506a47J .item-img {
    margin-bottom: 20px;
  }
}
.cid-tIr506a47J .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tIr506a47J .mbr-section-btn .btn-secondary-outline:hover,
.cid-tIr506a47J .mbr-section-btn .btn-secondary-outline .active,
.cid-tIr506a47J .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tIr506IJOf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIr506IJOf .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tIr506IJOf .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tIr506IJOf img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tIr506IJOf .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tIr5074uFD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tIr507mQlT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIr507mQlT .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tIr507mQlT .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tIr507mQlT img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tIr507mQlT .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tIr507RSm0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tIr508cS41 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIr508cS41 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tIr508cS41 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tIr508cS41 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tIr508cS41 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tIr508AqGi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KJOYwLE {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KJOYwLE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KJOYwLE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KJOYwLE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KJOYwLE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KJOYwLE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KJOYwLE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KJOYwLE .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-uI2KJOYwLE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KJOYwLE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KJOYwLE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KJOYwLE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KJOYwLE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KJOYwLE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KJOYwLE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLaZBydlOg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLaZBydlOg .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tLaZBydlOg .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tLaZBydlOg .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tLaZBydlOg .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tLaZBydlOg .mbr-section-title,
.cid-tLaZBydlOg .card_topic {
  margin-bottom: 12px;
}
.cid-tLaZBydlOg .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tLaZBydlOg .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tLaZBydlOg .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tLaZBydlOg .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tLaZBydlOg .category_content,
.cid-tLaZBydlOg .date,
.cid-tLaZBydlOg .name_author {
  opacity: .8;
}
.cid-tLaZBydlOg .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tLaZBydlOg .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tLaZBydlOg .item-img,
.cid-tLaZBydlOg img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tLaZBydlOg .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tLaZBydlOg .item-img {
    margin-bottom: 20px;
  }
}
.cid-tLaZBydlOg .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLaZBydlOg .mbr-section-btn .btn-secondary-outline:hover,
.cid-tLaZBydlOg .mbr-section-btn .btn-secondary-outline .active,
.cid-tLaZBydlOg .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tLaZBzdK3W {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tLaZBzdK3W .mbr-section-subtitle,
.cid-tLaZBzdK3W .caption-text {
  color: #8d97ad;
}
.cid-tLaZBzdK3W .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBzdK3W .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBzdK3W .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBzdK3W .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBzdK3W .mbr-section-subtitle {
  color: #333333;
}
.cid-tLb5E4JUk9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tLb5E4JUk9 .mbr-section-subtitle,
.cid-tLb5E4JUk9 .caption-text {
  color: #8d97ad;
}
.cid-tLb5E4JUk9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLb5E4JUk9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLb5E4JUk9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLb5E4JUk9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLb5E4JUk9 .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBzFOZl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLaZBzFOZl .mbr-section-subtitle,
.cid-tLaZBzFOZl .caption-text {
  color: #8d97ad;
}
.cid-tLaZBzFOZl .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBzFOZl .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBzFOZl .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBzFOZl .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBzFOZl .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBACJ7q {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLaZBACJ7q .mbr-section-subtitle,
.cid-tLaZBACJ7q .caption-text {
  color: #8d97ad;
}
.cid-tLaZBACJ7q .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBACJ7q .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBACJ7q .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBACJ7q .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBACJ7q .mbr-section-subtitle {
  color: #333333;
}
.cid-tLbdPQXLxJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tLbdPQXLxJ .mbr-section-subtitle,
.cid-tLbdPQXLxJ .caption-text {
  color: #8d97ad;
}
.cid-tLbdPQXLxJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLbdPQXLxJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLbdPQXLxJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLbdPQXLxJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLbdPQXLxJ .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBBtoJG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLaZBBtoJG .mbr-section-subtitle,
.cid-tLaZBBtoJG .caption-text {
  color: #8d97ad;
}
.cid-tLaZBBtoJG .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBBtoJG .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBBtoJG .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBBtoJG .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBBtoJG .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBBYfUn {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tLaZBBYfUn .mbr-section-subtitle,
.cid-tLaZBBYfUn .caption-text {
  color: #8d97ad;
}
.cid-tLaZBBYfUn .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBBYfUn .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBBYfUn .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBBYfUn .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBBYfUn .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBCKZvu {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLaZBCKZvu .mbr-section-subtitle,
.cid-tLaZBCKZvu .caption-text {
  color: #8d97ad;
}
.cid-tLaZBCKZvu .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBCKZvu .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBCKZvu .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBCKZvu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBCKZvu .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBDAR5W {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLaZBDAR5W .mbr-section-subtitle,
.cid-tLaZBDAR5W .caption-text {
  color: #8d97ad;
}
.cid-tLaZBDAR5W .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLaZBDAR5W .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLaZBDAR5W .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLaZBDAR5W .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLaZBDAR5W .mbr-section-subtitle {
  color: #333333;
}
.cid-tLaZBEdV1p {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLaZBENPg2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2K9GmFOY {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2K9GmFOY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2K9GmFOY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2K9GmFOY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2K9GmFOY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2K9GmFOY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2K9GmFOY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2K9GmFOY .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-uI2K9GmFOY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2K9GmFOY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2K9GmFOY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2K9GmFOY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2K9GmFOY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2K9GmFOY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2K9GmFOY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLbNyAHFeS {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLbNyAHFeS .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tLbNyAHFeS .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tLbNyAHFeS .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tLbNyAHFeS .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tLbNyAHFeS .mbr-section-title,
.cid-tLbNyAHFeS .card_topic {
  margin-bottom: 12px;
}
.cid-tLbNyAHFeS .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tLbNyAHFeS .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tLbNyAHFeS .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tLbNyAHFeS .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tLbNyAHFeS .category_content,
.cid-tLbNyAHFeS .date,
.cid-tLbNyAHFeS .name_author {
  opacity: .8;
}
.cid-tLbNyAHFeS .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tLbNyAHFeS .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tLbNyAHFeS .item-img,
.cid-tLbNyAHFeS img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tLbNyAHFeS .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tLbNyAHFeS .item-img {
    margin-bottom: 20px;
  }
}
.cid-tLbNyAHFeS .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLbNyAHFeS .mbr-section-btn .btn-secondary-outline:hover,
.cid-tLbNyAHFeS .mbr-section-btn .btn-secondary-outline .active,
.cid-tLbNyAHFeS .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tLbNyBpySR {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tLbNyBpySR .mbr-section-subtitle,
.cid-tLbNyBpySR .caption-text {
  color: #8d97ad;
}
.cid-tLbNyBpySR .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLbNyBpySR .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLbNyBpySR .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLbNyBpySR .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLbNyBpySR .mbr-section-subtitle {
  color: #333333;
}
.cid-tLbNyBPYtt {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tLbNyBPYtt .mbr-section-subtitle,
.cid-tLbNyBPYtt .caption-text {
  color: #8d97ad;
}
.cid-tLbNyBPYtt .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLbNyBPYtt .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLbNyBPYtt .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLbNyBPYtt .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLbNyBPYtt .mbr-section-subtitle {
  color: #333333;
}
.cid-tLbNyChOy2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tLbNyChOy2 .mbr-section-subtitle,
.cid-tLbNyChOy2 .caption-text {
  color: #8d97ad;
}
.cid-tLbNyChOy2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLbNyChOy2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLbNyChOy2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLbNyChOy2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLbNyChOy2 .mbr-section-subtitle {
  color: #333333;
}
.cid-tLbNyCLMXJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tLbNyCLMXJ .mbr-section-subtitle,
.cid-tLbNyCLMXJ .caption-text {
  color: #8d97ad;
}
.cid-tLbNyCLMXJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tLbNyCLMXJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tLbNyCLMXJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tLbNyCLMXJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLbNyCLMXJ .mbr-section-subtitle {
  color: #333333;
}
.cid-tLbNyFtKgT {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLbNyGaTpD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KdVevvj {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KdVevvj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KdVevvj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KdVevvj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KdVevvj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KdVevvj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KdVevvj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KdVevvj .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-uI2KdVevvj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KdVevvj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KdVevvj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KdVevvj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KdVevvj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KdVevvj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KdVevvj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNxlHpFx5v {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNxlHpFx5v .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tNxlHpFx5v .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNxlHpFx5v .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tNxlHpFx5v .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tNxlHpFx5v .mbr-section-title,
.cid-tNxlHpFx5v .card_topic {
  margin-bottom: 12px;
}
.cid-tNxlHpFx5v .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tNxlHpFx5v .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tNxlHpFx5v .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tNxlHpFx5v .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tNxlHpFx5v .category_content,
.cid-tNxlHpFx5v .date,
.cid-tNxlHpFx5v .name_author {
  opacity: .8;
}
.cid-tNxlHpFx5v .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tNxlHpFx5v .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tNxlHpFx5v .item-img,
.cid-tNxlHpFx5v img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tNxlHpFx5v .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tNxlHpFx5v .item-img {
    margin-bottom: 20px;
  }
}
.cid-tNxlHpFx5v .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tNxlHpFx5v .mbr-section-btn .btn-secondary-outline:hover,
.cid-tNxlHpFx5v .mbr-section-btn .btn-secondary-outline .active,
.cid-tNxlHpFx5v .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tNxlHq9tnv {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tNxlHq9tnv .mbr-section-subtitle,
.cid-tNxlHq9tnv .caption-text {
  color: #8d97ad;
}
.cid-tNxlHq9tnv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxlHq9tnv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxlHq9tnv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxlHq9tnv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxlHq9tnv .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxlHquUsC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tNxlHquUsC .mbr-section-subtitle,
.cid-tNxlHquUsC .caption-text {
  color: #8d97ad;
}
.cid-tNxlHquUsC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxlHquUsC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxlHquUsC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxlHquUsC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxlHquUsC .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxlHqVUni {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tNxlHqVUni .mbr-section-subtitle,
.cid-tNxlHqVUni .caption-text {
  color: #8d97ad;
}
.cid-tNxlHqVUni .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxlHqVUni .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxlHqVUni .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxlHqVUni .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxlHqVUni .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxlHrkZCQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tNxlHrkZCQ .mbr-section-subtitle,
.cid-tNxlHrkZCQ .caption-text {
  color: #8d97ad;
}
.cid-tNxlHrkZCQ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxlHrkZCQ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxlHrkZCQ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxlHrkZCQ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxlHrkZCQ .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxTHH8xge {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tNxTHH8xge .mbr-section-subtitle,
.cid-tNxTHH8xge .caption-text {
  color: #8d97ad;
}
.cid-tNxTHH8xge .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxTHH8xge .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxTHH8xge .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxTHH8xge .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxTHH8xge .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxWRWO1xb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tNxWRWO1xb .mbr-section-subtitle,
.cid-tNxWRWO1xb .caption-text {
  color: #8d97ad;
}
.cid-tNxWRWO1xb .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNxWRWO1xb .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNxWRWO1xb .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNxWRWO1xb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNxWRWO1xb .mbr-section-subtitle {
  color: #333333;
}
.cid-tNy2ZUNydr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tNy2ZUNydr .mbr-section-subtitle,
.cid-tNy2ZUNydr .caption-text {
  color: #8d97ad;
}
.cid-tNy2ZUNydr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tNy2ZUNydr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tNy2ZUNydr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tNy2ZUNydr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tNy2ZUNydr .mbr-section-subtitle {
  color: #333333;
}
.cid-tNxlHrNIFZ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNxlHsaL17 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KGfVlTE {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KGfVlTE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KGfVlTE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KGfVlTE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KGfVlTE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KGfVlTE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KGfVlTE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KGfVlTE .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-uI2KGfVlTE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KGfVlTE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KGfVlTE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KGfVlTE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KGfVlTE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KGfVlTE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KGfVlTE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPHlPp7EE5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPHlPp7EE5 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tPHlPp7EE5 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tPHlPp7EE5 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tPHlPp7EE5 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tPHlPp7EE5 .mbr-section-title,
.cid-tPHlPp7EE5 .card_topic {
  margin-bottom: 12px;
}
.cid-tPHlPp7EE5 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tPHlPp7EE5 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tPHlPp7EE5 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tPHlPp7EE5 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tPHlPp7EE5 .category_content,
.cid-tPHlPp7EE5 .date,
.cid-tPHlPp7EE5 .name_author {
  opacity: .8;
}
.cid-tPHlPp7EE5 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tPHlPp7EE5 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tPHlPp7EE5 .item-img,
.cid-tPHlPp7EE5 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tPHlPp7EE5 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tPHlPp7EE5 .item-img {
    margin-bottom: 20px;
  }
}
.cid-tPHlPp7EE5 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tPHlPp7EE5 .mbr-section-btn .btn-secondary-outline:hover,
.cid-tPHlPp7EE5 .mbr-section-btn .btn-secondary-outline .active,
.cid-tPHlPp7EE5 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tPHlPpAsYm {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tPHlPpAsYm .mbr-section-subtitle,
.cid-tPHlPpAsYm .caption-text {
  color: #8d97ad;
}
.cid-tPHlPpAsYm .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHlPpAsYm .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHlPpAsYm .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHlPpAsYm .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHlPpAsYm .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHlPr08A4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tPHlPr08A4 .mbr-section-subtitle,
.cid-tPHlPr08A4 .caption-text {
  color: #8d97ad;
}
.cid-tPHlPr08A4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHlPr08A4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHlPr08A4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHlPr08A4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHlPr08A4 .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHlPsm8Ua {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tPHlPsm8Ua .mbr-section-subtitle,
.cid-tPHlPsm8Ua .caption-text {
  color: #8d97ad;
}
.cid-tPHlPsm8Ua .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHlPsm8Ua .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHlPsm8Ua .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHlPsm8Ua .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHlPsm8Ua .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHxVBH28d {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tPHxVBH28d .mbr-section-subtitle,
.cid-tPHxVBH28d .caption-text {
  color: #8d97ad;
}
.cid-tPHxVBH28d .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHxVBH28d .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHxVBH28d .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHxVBH28d .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHxVBH28d .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHyTMcc7C {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tPHyTMcc7C .mbr-section-subtitle,
.cid-tPHyTMcc7C .caption-text {
  color: #8d97ad;
}
.cid-tPHyTMcc7C .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHyTMcc7C .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHyTMcc7C .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHyTMcc7C .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHyTMcc7C .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHAZYO844 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tPHAZYO844 .mbr-section-subtitle,
.cid-tPHAZYO844 .caption-text {
  color: #8d97ad;
}
.cid-tPHAZYO844 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHAZYO844 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHAZYO844 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHAZYO844 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHAZYO844 .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHCeMDJfA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tPHCeMDJfA .mbr-section-subtitle,
.cid-tPHCeMDJfA .caption-text {
  color: #8d97ad;
}
.cid-tPHCeMDJfA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tPHCeMDJfA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tPHCeMDJfA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tPHCeMDJfA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tPHCeMDJfA .mbr-section-subtitle {
  color: #333333;
}
.cid-tPHEcmAzzT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPHEcmAzzT img {
  border-radius: 0px;
}
.cid-tPHEcmAzzT .row {
  justify-content: center;
}
.cid-tPHEcmAzzT .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tPHlPu3Kys {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tPHlPutYzh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KbYmQBq {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KbYmQBq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KbYmQBq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KbYmQBq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KbYmQBq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KbYmQBq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KbYmQBq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KbYmQBq .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-uI2KbYmQBq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KbYmQBq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KbYmQBq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KbYmQBq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KbYmQBq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KbYmQBq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KbYmQBq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQVsLWXNhp {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQVsLWXNhp .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tQVsLWXNhp .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tQVsLWXNhp .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tQVsLWXNhp .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tQVsLWXNhp .mbr-section-title,
.cid-tQVsLWXNhp .card_topic {
  margin-bottom: 12px;
}
.cid-tQVsLWXNhp .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tQVsLWXNhp .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tQVsLWXNhp .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tQVsLWXNhp .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tQVsLWXNhp .category_content,
.cid-tQVsLWXNhp .date,
.cid-tQVsLWXNhp .name_author {
  opacity: .8;
}
.cid-tQVsLWXNhp .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tQVsLWXNhp .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tQVsLWXNhp .item-img,
.cid-tQVsLWXNhp img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tQVsLWXNhp .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tQVsLWXNhp .item-img {
    margin-bottom: 20px;
  }
}
.cid-tQVsLWXNhp .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tQVsLWXNhp .mbr-section-btn .btn-secondary-outline:hover,
.cid-tQVsLWXNhp .mbr-section-btn .btn-secondary-outline .active,
.cid-tQVsLWXNhp .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tQVsLXR17S {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tQVsLXR17S .mbr-section-subtitle,
.cid-tQVsLXR17S .caption-text {
  color: #8d97ad;
}
.cid-tQVsLXR17S .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVsLXR17S .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVsLXR17S .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVsLXR17S .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVsLXR17S .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVsLYFR57 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tQVsLYFR57 .mbr-section-subtitle,
.cid-tQVsLYFR57 .caption-text {
  color: #8d97ad;
}
.cid-tQVsLYFR57 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVsLYFR57 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVsLYFR57 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVsLYFR57 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVsLYFR57 .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVsLZqqvA {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tQVsLZqqvA .mbr-section-subtitle,
.cid-tQVsLZqqvA .caption-text {
  color: #8d97ad;
}
.cid-tQVsLZqqvA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVsLZqqvA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVsLZqqvA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVsLZqqvA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVsLZqqvA .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVsM0bfTP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVsM0bfTP .mbr-section-subtitle,
.cid-tQVsM0bfTP .caption-text {
  color: #8d97ad;
}
.cid-tQVsM0bfTP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVsM0bfTP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVsM0bfTP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVsM0bfTP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVsM0bfTP .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVAsXCo6c {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVAsXCo6c .mbr-section-subtitle,
.cid-tQVAsXCo6c .caption-text {
  color: #8d97ad;
}
.cid-tQVAsXCo6c .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVAsXCo6c .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVAsXCo6c .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVAsXCo6c .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVAsXCo6c .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVBPLPXuR {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVBPLPXuR .mbr-section-subtitle,
.cid-tQVBPLPXuR .caption-text {
  color: #8d97ad;
}
.cid-tQVBPLPXuR .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVBPLPXuR .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVBPLPXuR .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVBPLPXuR .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVBPLPXuR .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVCtDoHvy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVCtDoHvy .mbr-section-subtitle,
.cid-tQVCtDoHvy .caption-text {
  color: #8d97ad;
}
.cid-tQVCtDoHvy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVCtDoHvy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVCtDoHvy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVCtDoHvy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVCtDoHvy .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVEeKNQN1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVEeKNQN1 .mbr-section-subtitle,
.cid-tQVEeKNQN1 .caption-text {
  color: #8d97ad;
}
.cid-tQVEeKNQN1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVEeKNQN1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVEeKNQN1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVEeKNQN1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVEeKNQN1 .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVELkFedl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVELkFedl .mbr-section-subtitle,
.cid-tQVELkFedl .caption-text {
  color: #8d97ad;
}
.cid-tQVELkFedl .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVELkFedl .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVELkFedl .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVELkFedl .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVELkFedl .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVFjy8TKP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tQVFjy8TKP .mbr-section-subtitle,
.cid-tQVFjy8TKP .caption-text {
  color: #8d97ad;
}
.cid-tQVFjy8TKP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tQVFjy8TKP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tQVFjy8TKP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tQVFjy8TKP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tQVFjy8TKP .mbr-section-subtitle {
  color: #333333;
}
.cid-tQVsM1BSqp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KfIrqg5 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KfIrqg5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KfIrqg5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KfIrqg5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KfIrqg5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KfIrqg5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KfIrqg5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KfIrqg5 .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-uI2KfIrqg5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KfIrqg5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KfIrqg5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KfIrqg5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KfIrqg5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KfIrqg5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KfIrqg5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSxT0ApDyL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSxT0ApDyL .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tSxT0ApDyL .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tSxT0ApDyL .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tSxT0ApDyL .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tSxT0ApDyL .mbr-section-title,
.cid-tSxT0ApDyL .card_topic {
  margin-bottom: 12px;
}
.cid-tSxT0ApDyL .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tSxT0ApDyL .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tSxT0ApDyL .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tSxT0ApDyL .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tSxT0ApDyL .category_content,
.cid-tSxT0ApDyL .date,
.cid-tSxT0ApDyL .name_author {
  opacity: .8;
}
.cid-tSxT0ApDyL .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tSxT0ApDyL .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tSxT0ApDyL .item-img,
.cid-tSxT0ApDyL img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tSxT0ApDyL .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tSxT0ApDyL .item-img {
    margin-bottom: 20px;
  }
}
.cid-tSxT0ApDyL .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tSxT0ApDyL .mbr-section-btn .btn-secondary-outline:hover,
.cid-tSxT0ApDyL .mbr-section-btn .btn-secondary-outline .active,
.cid-tSxT0ApDyL .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tSxT0AT8du {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tSxT0AT8du .mbr-section-subtitle,
.cid-tSxT0AT8du .caption-text {
  color: #8d97ad;
}
.cid-tSxT0AT8du .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0AT8du .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0AT8du .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0AT8du .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0AT8du .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0BegdA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tSxT0BegdA .mbr-section-subtitle,
.cid-tSxT0BegdA .caption-text {
  color: #8d97ad;
}
.cid-tSxT0BegdA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0BegdA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0BegdA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0BegdA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0BegdA .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0BFwNY {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tSxT0BFwNY .mbr-section-subtitle,
.cid-tSxT0BFwNY .caption-text {
  color: #8d97ad;
}
.cid-tSxT0BFwNY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0BFwNY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0BFwNY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0BFwNY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0BFwNY .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0C3mW5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tSxT0C3mW5 .mbr-section-subtitle,
.cid-tSxT0C3mW5 .caption-text {
  color: #8d97ad;
}
.cid-tSxT0C3mW5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0C3mW5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0C3mW5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0C3mW5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0C3mW5 .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0Cusvo {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tSxT0Cusvo .mbr-section-subtitle,
.cid-tSxT0Cusvo .caption-text {
  color: #8d97ad;
}
.cid-tSxT0Cusvo .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0Cusvo .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0Cusvo .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0Cusvo .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0Cusvo .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0CQXnK {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tSxT0CQXnK .mbr-section-subtitle,
.cid-tSxT0CQXnK .caption-text {
  color: #8d97ad;
}
.cid-tSxT0CQXnK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0CQXnK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0CQXnK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0CQXnK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0CQXnK .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0DiS5A {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tSxT0DiS5A .mbr-section-subtitle,
.cid-tSxT0DiS5A .caption-text {
  color: #8d97ad;
}
.cid-tSxT0DiS5A .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0DiS5A .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0DiS5A .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0DiS5A .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0DiS5A .mbr-section-subtitle {
  color: #333333;
}
.cid-tSxT0DKirD {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tSxT0DKirD .mbr-section-subtitle,
.cid-tSxT0DKirD .caption-text {
  color: #8d97ad;
}
.cid-tSxT0DKirD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tSxT0DKirD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tSxT0DKirD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tSxT0DKirD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tSxT0DKirD .mbr-section-subtitle {
  color: #333333;
}
.cid-tSy8AR3Oq2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tSxT0FfDiE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KhzI6i0 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KhzI6i0 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KhzI6i0 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KhzI6i0 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KhzI6i0 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KhzI6i0 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KhzI6i0 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KhzI6i0 .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-uI2KhzI6i0 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KhzI6i0 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KhzI6i0 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KhzI6i0 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KhzI6i0 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KhzI6i0 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KhzI6i0 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT6XStByNV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tT6XStByNV .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tT6XStByNV .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tT6XStByNV .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tT6XStByNV .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tT6XStByNV .mbr-section-title,
.cid-tT6XStByNV .card_topic {
  margin-bottom: 12px;
}
.cid-tT6XStByNV .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tT6XStByNV .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tT6XStByNV .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tT6XStByNV .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tT6XStByNV .category_content,
.cid-tT6XStByNV .date,
.cid-tT6XStByNV .name_author {
  opacity: .8;
}
.cid-tT6XStByNV .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tT6XStByNV .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tT6XStByNV .item-img,
.cid-tT6XStByNV img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tT6XStByNV .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tT6XStByNV .item-img {
    margin-bottom: 20px;
  }
}
.cid-tT6XStByNV .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tT6XStByNV .mbr-section-btn .btn-secondary-outline:hover,
.cid-tT6XStByNV .mbr-section-btn .btn-secondary-outline .active,
.cid-tT6XStByNV .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tT6XSueeI1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tT6XSueeI1 .mbr-section-subtitle,
.cid-tT6XSueeI1 .caption-text {
  color: #8d97ad;
}
.cid-tT6XSueeI1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSueeI1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSueeI1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSueeI1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSueeI1 .mbr-section-subtitle {
  color: #333333;
}
.cid-tT6XSuLdtr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tT6XSuLdtr .mbr-section-subtitle,
.cid-tT6XSuLdtr .caption-text {
  color: #8d97ad;
}
.cid-tT6XSuLdtr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSuLdtr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSuLdtr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSuLdtr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSuLdtr .mbr-section-subtitle {
  color: #333333;
}
.cid-tT71JGrWY1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f98c25;
}
.cid-tT71JGrWY1 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tT71JGrWY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT71JGrWY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT71JGrWY1 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tT6XSvlda9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tT6XSvlda9 .mbr-section-subtitle,
.cid-tT6XSvlda9 .caption-text {
  color: #8d97ad;
}
.cid-tT6XSvlda9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSvlda9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSvlda9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSvlda9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSvlda9 .mbr-section-subtitle {
  color: #333333;
}
.cid-tT6XSvRJp4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tT6XSvRJp4 .mbr-section-subtitle,
.cid-tT6XSvRJp4 .caption-text {
  color: #8d97ad;
}
.cid-tT6XSvRJp4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSvRJp4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSvRJp4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSvRJp4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSvRJp4 .mbr-section-subtitle {
  color: #333333;
}
.cid-tT6XSwrdzc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tT6XSwrdzc .mbr-section-subtitle,
.cid-tT6XSwrdzc .caption-text {
  color: #8d97ad;
}
.cid-tT6XSwrdzc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSwrdzc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSwrdzc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSwrdzc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSwrdzc .mbr-section-subtitle {
  color: #333333;
}
.cid-tT6XSx0wwS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tT6XSx0wwS .mbr-section-subtitle,
.cid-tT6XSx0wwS .caption-text {
  color: #8d97ad;
}
.cid-tT6XSx0wwS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tT6XSx0wwS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tT6XSx0wwS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tT6XSx0wwS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tT6XSx0wwS .mbr-section-subtitle {
  color: #333333;
}
.cid-tT6XSyskdJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tT6XSyPG9G {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KCjq05U {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KCjq05U .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KCjq05U .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KCjq05U .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KCjq05U .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KCjq05U .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KCjq05U .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KCjq05U .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-uI2KCjq05U .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KCjq05U .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KCjq05U .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KCjq05U .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KCjq05U .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KCjq05U .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KCjq05U .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWcXFpKLrL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWcXFpKLrL .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tWcXFpKLrL .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWcXFpKLrL .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tWcXFpKLrL .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tWcXFpKLrL .mbr-section-title,
.cid-tWcXFpKLrL .card_topic {
  margin-bottom: 12px;
}
.cid-tWcXFpKLrL .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tWcXFpKLrL .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tWcXFpKLrL .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tWcXFpKLrL .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tWcXFpKLrL .category_content,
.cid-tWcXFpKLrL .date,
.cid-tWcXFpKLrL .name_author {
  opacity: .8;
}
.cid-tWcXFpKLrL .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tWcXFpKLrL .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tWcXFpKLrL .item-img,
.cid-tWcXFpKLrL img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tWcXFpKLrL .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tWcXFpKLrL .item-img {
    margin-bottom: 20px;
  }
}
.cid-tWcXFpKLrL .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tWcXFpKLrL .mbr-section-btn .btn-secondary-outline:hover,
.cid-tWcXFpKLrL .mbr-section-btn .btn-secondary-outline .active,
.cid-tWcXFpKLrL .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tWe8elM5NQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWe8elM5NQ .mbr-section-title {
  color: #fa7a00;
}
.cid-tWe8elM5NQ .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tWe8elM5NQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWe8elM5NQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWcXFqkphs {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tWcXFqkphs .mbr-section-subtitle,
.cid-tWcXFqkphs .caption-text {
  color: #8d97ad;
}
.cid-tWcXFqkphs .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFqkphs .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFqkphs .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFqkphs .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFqkphs .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFqMjbb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tWcXFqMjbb .mbr-section-subtitle,
.cid-tWcXFqMjbb .caption-text {
  color: #8d97ad;
}
.cid-tWcXFqMjbb .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFqMjbb .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFqMjbb .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFqMjbb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFqMjbb .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFrbgjj {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tWcXFrbgjj .mbr-section-subtitle,
.cid-tWcXFrbgjj .caption-text {
  color: #8d97ad;
}
.cid-tWcXFrbgjj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFrbgjj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFrbgjj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFrbgjj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFrbgjj .mbr-section-subtitle {
  color: #333333;
}
.cid-tWecHBiLOR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWecHBiLOR .mbr-section-title {
  color: #fa7a00;
}
.cid-tWecHBiLOR .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tWecHBiLOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWecHBiLOR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWcXFrIglg {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tWcXFrIglg .mbr-section-subtitle,
.cid-tWcXFrIglg .caption-text {
  color: #8d97ad;
}
.cid-tWcXFrIglg .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFrIglg .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFrIglg .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFrIglg .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFrIglg .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFsdxvn {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tWcXFsdxvn .mbr-section-subtitle,
.cid-tWcXFsdxvn .caption-text {
  color: #8d97ad;
}
.cid-tWcXFsdxvn .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFsdxvn .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFsdxvn .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFsdxvn .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFsdxvn .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFsF5an {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tWcXFsF5an .mbr-section-subtitle,
.cid-tWcXFsF5an .caption-text {
  color: #8d97ad;
}
.cid-tWcXFsF5an .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFsF5an .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFsF5an .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFsF5an .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFsF5an .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFt6So4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tWcXFt6So4 .mbr-section-subtitle,
.cid-tWcXFt6So4 .caption-text {
  color: #8d97ad;
}
.cid-tWcXFt6So4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFt6So4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFt6So4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFt6So4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFt6So4 .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFtz8l4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tWcXFtz8l4 .mbr-section-subtitle,
.cid-tWcXFtz8l4 .caption-text {
  color: #8d97ad;
}
.cid-tWcXFtz8l4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tWcXFtz8l4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tWcXFtz8l4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tWcXFtz8l4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tWcXFtz8l4 .mbr-section-subtitle {
  color: #333333;
}
.cid-tWcXFu1utl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tWcXFuoPbg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Knq2EmB {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Knq2EmB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Knq2EmB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Knq2EmB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Knq2EmB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Knq2EmB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Knq2EmB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Knq2EmB .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-uI2Knq2EmB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Knq2EmB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Knq2EmB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Knq2EmB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Knq2EmB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Knq2EmB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Knq2EmB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX3IpGfy4A {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tX3IpGfy4A .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tX3IpGfy4A .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX3IpGfy4A .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tX3IpGfy4A .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tX3IpGfy4A .mbr-section-title,
.cid-tX3IpGfy4A .card_topic {
  margin-bottom: 12px;
}
.cid-tX3IpGfy4A .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tX3IpGfy4A .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tX3IpGfy4A .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tX3IpGfy4A .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tX3IpGfy4A .category_content,
.cid-tX3IpGfy4A .date,
.cid-tX3IpGfy4A .name_author {
  opacity: .8;
}
.cid-tX3IpGfy4A .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tX3IpGfy4A .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tX3IpGfy4A .item-img,
.cid-tX3IpGfy4A img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tX3IpGfy4A .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tX3IpGfy4A .item-img {
    margin-bottom: 20px;
  }
}
.cid-tX3IpGfy4A .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tX3IpGfy4A .mbr-section-btn .btn-secondary-outline:hover,
.cid-tX3IpGfy4A .mbr-section-btn .btn-secondary-outline .active,
.cid-tX3IpGfy4A .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tX3IpHVmf5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tX3IpHVmf5 .mbr-section-subtitle,
.cid-tX3IpHVmf5 .caption-text {
  color: #8d97ad;
}
.cid-tX3IpHVmf5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpHVmf5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpHVmf5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpHVmf5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpHVmf5 .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpIwPsy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tX3IpIwPsy .mbr-section-subtitle,
.cid-tX3IpIwPsy .caption-text {
  color: #8d97ad;
}
.cid-tX3IpIwPsy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpIwPsy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpIwPsy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpIwPsy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpIwPsy .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpJ8RER {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tX3IpJ8RER .mbr-section-subtitle,
.cid-tX3IpJ8RER .caption-text {
  color: #8d97ad;
}
.cid-tX3IpJ8RER .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpJ8RER .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpJ8RER .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpJ8RER .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpJ8RER .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpKv8Wv {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3IpKv8Wv .mbr-section-subtitle,
.cid-tX3IpKv8Wv .caption-text {
  color: #8d97ad;
}
.cid-tX3IpKv8Wv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpKv8Wv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpKv8Wv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpKv8Wv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpKv8Wv .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpL69mr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3IpL69mr .mbr-section-subtitle,
.cid-tX3IpL69mr .caption-text {
  color: #8d97ad;
}
.cid-tX3IpL69mr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpL69mr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpL69mr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpL69mr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpL69mr .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpLOmpC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3IpLOmpC .mbr-section-subtitle,
.cid-tX3IpLOmpC .caption-text {
  color: #8d97ad;
}
.cid-tX3IpLOmpC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpLOmpC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpLOmpC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpLOmpC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpLOmpC .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpMtx4J {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3IpMtx4J .mbr-section-subtitle,
.cid-tX3IpMtx4J .caption-text {
  color: #8d97ad;
}
.cid-tX3IpMtx4J .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpMtx4J .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpMtx4J .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpMtx4J .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpMtx4J .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpNjtZc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3IpNjtZc .mbr-section-subtitle,
.cid-tX3IpNjtZc .caption-text {
  color: #8d97ad;
}
.cid-tX3IpNjtZc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3IpNjtZc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3IpNjtZc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3IpNjtZc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3IpNjtZc .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3QHvcgHC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3QHvcgHC .mbr-section-subtitle,
.cid-tX3QHvcgHC .caption-text {
  color: #8d97ad;
}
.cid-tX3QHvcgHC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3QHvcgHC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3QHvcgHC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3QHvcgHC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3QHvcgHC .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3Rejsnj7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tX3Rejsnj7 .mbr-section-subtitle,
.cid-tX3Rejsnj7 .caption-text {
  color: #8d97ad;
}
.cid-tX3Rejsnj7 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tX3Rejsnj7 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tX3Rejsnj7 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tX3Rejsnj7 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tX3Rejsnj7 .mbr-section-subtitle {
  color: #333333;
}
.cid-tX3IpNXtx3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tX3IpOA18Z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Kp3F3nC {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Kp3F3nC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Kp3F3nC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Kp3F3nC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Kp3F3nC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Kp3F3nC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Kp3F3nC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Kp3F3nC .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-uI2Kp3F3nC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Kp3F3nC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Kp3F3nC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Kp3F3nC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Kp3F3nC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Kp3F3nC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Kp3F3nC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdppZHCLzl {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tdppZHCLzl h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-tdppZHCLzl h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tdppZHCLzl h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-tdppZHCLzl h3:before,
  .cid-tdppZHCLzl h3:after {
    display: none;
  }
}
.cid-tdpupa5T3s {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fef8f5;
}
.cid-tdpupa5T3s .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tdpupa5T3s .mbr-section-btn .btn-secondary-outline:hover,
.cid-tdpupa5T3s .mbr-section-btn .btn-secondary-outline .active,
.cid-tdpupa5T3s .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tdpupa5T3s img,
.cid-tdpupa5T3s .item-img {
  border-radius: 4px;
}
.cid-tdpupa5T3s .item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.cid-tdpupa5T3s .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}
.cid-tdpupa5T3s .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .45;
  background-color: #232323;
  z-index: 5;
  pointer-events: none;
  border-radius: 4px;
}
.cid-tdpupa5T3s .item:focus,
.cid-tdpupa5T3s span:focus {
  outline: none;
}
.cid-tdpupa5T3s .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-tdpupa5T3s .item:last-child {
    margin-bottom: 0;
  }
}
.cid-tdpupa5T3s .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-tdpupa5T3s .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-tdpupa5T3s .item-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-tdpupa5T3s .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tdpupa5T3s .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.cid-tdpupa5T3s .post_wrap {
  position: relative;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-tdpupa5T3s .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-tdpupa5T3s .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-tdpupa5T3s .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tdpupa5T3s .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-tdpupa5T3s .item-content {
  padding: 40px;
  height: 100%;
  min-height: 200px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-tdpupa5T3s .item-content > div {
  position: relative;
  z-index: 5;
}
.cid-tdpupa5T3s .category_content {
  opacity: .8;
}
.cid-tdpupa5T3s .mbr-section-subtitle,
.cid-tdpupa5T3s .card_topic {
  margin-bottom: 12px;
}
.cid-tdpupa5T3s .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tdpupa5T3s .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
@media (max-width: 767px) {
  .cid-tdpupa5T3s .item-content,
  .cid-tdpupa5T3s .card_post {
    padding: 20px;
  }
}
.cid-uI2INCNdNE {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2INCNdNE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2INCNdNE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2INCNdNE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2INCNdNE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2INCNdNE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2INCNdNE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2INCNdNE .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-uI2INCNdNE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2INCNdNE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2INCNdNE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2INCNdNE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2INCNdNE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2INCNdNE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2INCNdNE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXOfTaFzrm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXOfTaFzrm .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tXOfTaFzrm .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tXOfTaFzrm .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tXOfTaFzrm .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tXOfTaFzrm .mbr-section-title,
.cid-tXOfTaFzrm .card_topic {
  margin-bottom: 12px;
}
.cid-tXOfTaFzrm .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tXOfTaFzrm .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tXOfTaFzrm .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tXOfTaFzrm .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tXOfTaFzrm .category_content,
.cid-tXOfTaFzrm .date,
.cid-tXOfTaFzrm .name_author {
  opacity: .8;
}
.cid-tXOfTaFzrm .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tXOfTaFzrm .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tXOfTaFzrm .item-img,
.cid-tXOfTaFzrm img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tXOfTaFzrm .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tXOfTaFzrm .item-img {
    margin-bottom: 20px;
  }
}
.cid-tXOfTaFzrm .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tXOfTaFzrm .mbr-section-btn .btn-secondary-outline:hover,
.cid-tXOfTaFzrm .mbr-section-btn .btn-secondary-outline .active,
.cid-tXOfTaFzrm .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tXOfTbq2fk {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tXOfTbq2fk .mbr-section-subtitle,
.cid-tXOfTbq2fk .caption-text {
  color: #8d97ad;
}
.cid-tXOfTbq2fk .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTbq2fk .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTbq2fk .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTbq2fk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTbq2fk .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTc219t {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tXOfTc219t .mbr-section-subtitle,
.cid-tXOfTc219t .caption-text {
  color: #8d97ad;
}
.cid-tXOfTc219t .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTc219t .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTc219t .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTc219t .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTc219t .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTcAZwt {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tXOfTcAZwt .mbr-section-subtitle,
.cid-tXOfTcAZwt .caption-text {
  color: #8d97ad;
}
.cid-tXOfTcAZwt .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTcAZwt .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTcAZwt .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTcAZwt .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTcAZwt .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTdmXHb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOfTdmXHb .mbr-section-subtitle,
.cid-tXOfTdmXHb .caption-text {
  color: #8d97ad;
}
.cid-tXOfTdmXHb .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTdmXHb .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTdmXHb .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTdmXHb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTdmXHb .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTe0kho {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOfTe0kho .mbr-section-subtitle,
.cid-tXOfTe0kho .caption-text {
  color: #8d97ad;
}
.cid-tXOfTe0kho .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTe0kho .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTe0kho .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTe0kho .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTe0kho .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTeziun {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOfTeziun .mbr-section-subtitle,
.cid-tXOfTeziun .caption-text {
  color: #8d97ad;
}
.cid-tXOfTeziun .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTeziun .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTeziun .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTeziun .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTeziun .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTfB6VN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOfTfB6VN .mbr-section-subtitle,
.cid-tXOfTfB6VN .caption-text {
  color: #8d97ad;
}
.cid-tXOfTfB6VN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOfTfB6VN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOfTfB6VN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOfTfB6VN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOfTfB6VN .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOfTisGig {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXOfTjeNxi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KqR14D4 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KqR14D4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KqR14D4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KqR14D4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KqR14D4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KqR14D4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KqR14D4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KqR14D4 .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-uI2KqR14D4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KqR14D4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KqR14D4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KqR14D4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KqR14D4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KqR14D4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KqR14D4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXOvvGvTyI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXOvvGvTyI .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-tXOvvGvTyI .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tXOvvGvTyI .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-tXOvvGvTyI .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-tXOvvGvTyI .mbr-section-title,
.cid-tXOvvGvTyI .card_topic {
  margin-bottom: 12px;
}
.cid-tXOvvGvTyI .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-tXOvvGvTyI .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-tXOvvGvTyI .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tXOvvGvTyI .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-tXOvvGvTyI .category_content,
.cid-tXOvvGvTyI .date,
.cid-tXOvvGvTyI .name_author {
  opacity: .8;
}
.cid-tXOvvGvTyI .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tXOvvGvTyI .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-tXOvvGvTyI .item-img,
.cid-tXOvvGvTyI img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-tXOvvGvTyI .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tXOvvGvTyI .item-img {
    margin-bottom: 20px;
  }
}
.cid-tXOvvGvTyI .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tXOvvGvTyI .mbr-section-btn .btn-secondary-outline:hover,
.cid-tXOvvGvTyI .mbr-section-btn .btn-secondary-outline .active,
.cid-tXOvvGvTyI .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-tXOvvHt5Fz {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tXOvvHt5Fz .mbr-section-subtitle,
.cid-tXOvvHt5Fz .caption-text {
  color: #8d97ad;
}
.cid-tXOvvHt5Fz .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvHt5Fz .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvHt5Fz .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvHt5Fz .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvHt5Fz .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvI1gru {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tXOvvI1gru .mbr-section-subtitle,
.cid-tXOvvI1gru .caption-text {
  color: #8d97ad;
}
.cid-tXOvvI1gru .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvI1gru .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvI1gru .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvI1gru .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvI1gru .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvIzAuy {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-tXOvvIzAuy .mbr-section-subtitle,
.cid-tXOvvIzAuy .caption-text {
  color: #8d97ad;
}
.cid-tXOvvIzAuy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvIzAuy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvIzAuy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvIzAuy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvIzAuy .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvJ8MQF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOvvJ8MQF .mbr-section-subtitle,
.cid-tXOvvJ8MQF .caption-text {
  color: #8d97ad;
}
.cid-tXOvvJ8MQF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvJ8MQF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvJ8MQF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvJ8MQF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvJ8MQF .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvJJXvh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOvvJJXvh .mbr-section-subtitle,
.cid-tXOvvJJXvh .caption-text {
  color: #8d97ad;
}
.cid-tXOvvJJXvh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvJJXvh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvJJXvh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvJJXvh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvJJXvh .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvKiTAQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOvvKiTAQ .mbr-section-subtitle,
.cid-tXOvvKiTAQ .caption-text {
  color: #8d97ad;
}
.cid-tXOvvKiTAQ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvKiTAQ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvKiTAQ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvKiTAQ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvKiTAQ .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvKVrN6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOvvKVrN6 .mbr-section-subtitle,
.cid-tXOvvKVrN6 .caption-text {
  color: #8d97ad;
}
.cid-tXOvvKVrN6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOvvKVrN6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOvvKVrN6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOvvKVrN6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOvvKVrN6 .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOGmGIDIf {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-tXOGmGIDIf .mbr-section-subtitle,
.cid-tXOGmGIDIf .caption-text {
  color: #8d97ad;
}
.cid-tXOGmGIDIf .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tXOGmGIDIf .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tXOGmGIDIf .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tXOGmGIDIf .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tXOGmGIDIf .mbr-section-subtitle {
  color: #333333;
}
.cid-tXOvvLCbLJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXOvvMh8UE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KsZfmfP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KsZfmfP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KsZfmfP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KsZfmfP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KsZfmfP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KsZfmfP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KsZfmfP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KsZfmfP .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-uI2KsZfmfP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KsZfmfP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KsZfmfP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KsZfmfP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KsZfmfP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KsZfmfP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KsZfmfP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u11kwVpDmD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u11kwVpDmD .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u11kwVpDmD .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u11kwVpDmD .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u11kwVpDmD .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u11kwVpDmD .mbr-section-title,
.cid-u11kwVpDmD .card_topic {
  margin-bottom: 12px;
}
.cid-u11kwVpDmD .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u11kwVpDmD .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u11kwVpDmD .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u11kwVpDmD .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u11kwVpDmD .category_content,
.cid-u11kwVpDmD .date,
.cid-u11kwVpDmD .name_author {
  opacity: .8;
}
.cid-u11kwVpDmD .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u11kwVpDmD .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u11kwVpDmD .item-img,
.cid-u11kwVpDmD img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u11kwVpDmD .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u11kwVpDmD .item-img {
    margin-bottom: 20px;
  }
}
.cid-u11kwVpDmD .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u11kwVpDmD .mbr-section-btn .btn-secondary-outline:hover,
.cid-u11kwVpDmD .mbr-section-btn .btn-secondary-outline .active,
.cid-u11kwVpDmD .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u11kwWjfk0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u11kwWjfk0 .mbr-section-subtitle,
.cid-u11kwWjfk0 .caption-text {
  color: #8d97ad;
}
.cid-u11kwWjfk0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u11kwWjfk0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u11kwWjfk0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u11kwWjfk0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u11kwWjfk0 .mbr-section-subtitle {
  color: #333333;
}
.cid-u11kwWRD8O {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-u11kwWRD8O .mbr-section-subtitle,
.cid-u11kwWRD8O .caption-text {
  color: #8d97ad;
}
.cid-u11kwWRD8O .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u11kwWRD8O .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u11kwWRD8O .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u11kwWRD8O .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u11kwWRD8O .mbr-section-subtitle {
  color: #333333;
}
.cid-u11kwXyx1M {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-u11kwXyx1M .mbr-section-subtitle,
.cid-u11kwXyx1M .caption-text {
  color: #8d97ad;
}
.cid-u11kwXyx1M .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u11kwXyx1M .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u11kwXyx1M .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u11kwXyx1M .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u11kwXyx1M .mbr-section-subtitle {
  color: #333333;
}
.cid-u11kwYdWWl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u11kwYdWWl .mbr-section-subtitle,
.cid-u11kwYdWWl .caption-text {
  color: #8d97ad;
}
.cid-u11kwYdWWl .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u11kwYdWWl .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u11kwYdWWl .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u11kwYdWWl .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u11kwYdWWl .mbr-section-subtitle {
  color: #333333;
}
.cid-u11SeAzBRE {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u11SeAzBRE .mbr-section-subtitle,
.cid-u11SeAzBRE .caption-text {
  color: #8d97ad;
}
.cid-u11SeAzBRE .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u11SeAzBRE .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u11SeAzBRE .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u11SeAzBRE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u11SeAzBRE .mbr-section-subtitle {
  color: #333333;
}
.cid-u11kx1TPy0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u11kx2AOYe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KjoVeLI {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KjoVeLI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KjoVeLI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KjoVeLI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KjoVeLI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KjoVeLI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KjoVeLI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KjoVeLI .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-uI2KjoVeLI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KjoVeLI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KjoVeLI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KjoVeLI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KjoVeLI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KjoVeLI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KjoVeLI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u29jt4LlWY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u29jt4LlWY .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u29jt4LlWY .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u29jt4LlWY .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u29jt4LlWY .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u29jt4LlWY .mbr-section-title,
.cid-u29jt4LlWY .card_topic {
  margin-bottom: 12px;
}
.cid-u29jt4LlWY .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u29jt4LlWY .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u29jt4LlWY .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u29jt4LlWY .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u29jt4LlWY .category_content,
.cid-u29jt4LlWY .date,
.cid-u29jt4LlWY .name_author {
  opacity: .8;
}
.cid-u29jt4LlWY .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u29jt4LlWY .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u29jt4LlWY .item-img,
.cid-u29jt4LlWY img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u29jt4LlWY .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u29jt4LlWY .item-img {
    margin-bottom: 20px;
  }
}
.cid-u29jt4LlWY .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u29jt4LlWY .mbr-section-btn .btn-secondary-outline:hover,
.cid-u29jt4LlWY .mbr-section-btn .btn-secondary-outline .active,
.cid-u29jt4LlWY .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u29jt5ryJ0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u29jt5ryJ0 .mbr-section-subtitle,
.cid-u29jt5ryJ0 .caption-text {
  color: #8d97ad;
}
.cid-u29jt5ryJ0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29jt5ryJ0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29jt5ryJ0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29jt5ryJ0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29jt5ryJ0 .mbr-section-subtitle {
  color: #333333;
}
.cid-u29jt5Twry {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-u29jt5Twry .mbr-section-subtitle,
.cid-u29jt5Twry .caption-text {
  color: #8d97ad;
}
.cid-u29jt5Twry .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29jt5Twry .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29jt5Twry .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29jt5Twry .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29jt5Twry .mbr-section-subtitle {
  color: #333333;
}
.cid-u29jt6kKEI {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-u29jt6kKEI .mbr-section-subtitle,
.cid-u29jt6kKEI .caption-text {
  color: #8d97ad;
}
.cid-u29jt6kKEI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29jt6kKEI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29jt6kKEI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29jt6kKEI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29jt6kKEI .mbr-section-subtitle {
  color: #333333;
}
.cid-u29jt6NLQA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u29jt6NLQA .mbr-section-subtitle,
.cid-u29jt6NLQA .caption-text {
  color: #8d97ad;
}
.cid-u29jt6NLQA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29jt6NLQA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29jt6NLQA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29jt6NLQA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29jt6NLQA .mbr-section-subtitle {
  color: #333333;
}
.cid-u29H6S89Xo {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u29H6S89Xo .mbr-section-subtitle,
.cid-u29H6S89Xo .caption-text {
  color: #8d97ad;
}
.cid-u29H6S89Xo .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29H6S89Xo .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29H6S89Xo .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29H6S89Xo .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29H6S89Xo .mbr-section-subtitle {
  color: #333333;
}
.cid-u29Iw8TZBE {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u29Iw8TZBE .mbr-section-subtitle,
.cid-u29Iw8TZBE .caption-text {
  color: #8d97ad;
}
.cid-u29Iw8TZBE .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u29Iw8TZBE .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u29Iw8TZBE .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u29Iw8TZBE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u29Iw8TZBE .mbr-section-subtitle {
  color: #333333;
}
.cid-u29jt7Abcj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u29jt7Wttq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KluBiNR {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KluBiNR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KluBiNR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KluBiNR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KluBiNR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KluBiNR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KluBiNR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KluBiNR .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-uI2KluBiNR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KluBiNR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KluBiNR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KluBiNR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KluBiNR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KluBiNR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KluBiNR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4eSgpS6uz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4eSgpS6uz .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u4eSgpS6uz .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u4eSgpS6uz .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u4eSgpS6uz .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u4eSgpS6uz .mbr-section-title,
.cid-u4eSgpS6uz .card_topic {
  margin-bottom: 12px;
}
.cid-u4eSgpS6uz .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u4eSgpS6uz .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u4eSgpS6uz .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u4eSgpS6uz .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u4eSgpS6uz .category_content,
.cid-u4eSgpS6uz .date,
.cid-u4eSgpS6uz .name_author {
  opacity: .8;
}
.cid-u4eSgpS6uz .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u4eSgpS6uz .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u4eSgpS6uz .item-img,
.cid-u4eSgpS6uz img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u4eSgpS6uz .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u4eSgpS6uz .item-img {
    margin-bottom: 20px;
  }
}
.cid-u4eSgpS6uz .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u4eSgpS6uz .mbr-section-btn .btn-secondary-outline:hover,
.cid-u4eSgpS6uz .mbr-section-btn .btn-secondary-outline .active,
.cid-u4eSgpS6uz .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u4eSgqhbZs {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u4eSgqhbZs .mbr-section-subtitle,
.cid-u4eSgqhbZs .caption-text {
  color: #8d97ad;
}
.cid-u4eSgqhbZs .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgqhbZs .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgqhbZs .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgqhbZs .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgqhbZs .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgqAumV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u4eSgqAumV .mbr-section-subtitle,
.cid-u4eSgqAumV .caption-text {
  color: #8d97ad;
}
.cid-u4eSgqAumV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgqAumV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgqAumV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgqAumV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgqAumV .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgr0z2h {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-u4eSgr0z2h .mbr-section-subtitle,
.cid-u4eSgr0z2h .caption-text {
  color: #8d97ad;
}
.cid-u4eSgr0z2h .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgr0z2h .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgr0z2h .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgr0z2h .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgr0z2h .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgrmLk8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4eSgrmLk8 .mbr-section-subtitle,
.cid-u4eSgrmLk8 .caption-text {
  color: #8d97ad;
}
.cid-u4eSgrmLk8 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgrmLk8 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgrmLk8 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgrmLk8 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgrmLk8 .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgrPa4w {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4eSgrPa4w .mbr-section-subtitle,
.cid-u4eSgrPa4w .caption-text {
  color: #8d97ad;
}
.cid-u4eSgrPa4w .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgrPa4w .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgrPa4w .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgrPa4w .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgrPa4w .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgscaGh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4eSgscaGh .mbr-section-subtitle,
.cid-u4eSgscaGh .caption-text {
  color: #8d97ad;
}
.cid-u4eSgscaGh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgscaGh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgscaGh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgscaGh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgscaGh .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgsB897 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4eSgsB897 .mbr-section-subtitle,
.cid-u4eSgsB897 .caption-text {
  color: #8d97ad;
}
.cid-u4eSgsB897 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgsB897 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgsB897 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgsB897 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgsB897 .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgsZ9Uh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4eSgsZ9Uh .mbr-section-subtitle,
.cid-u4eSgsZ9Uh .caption-text {
  color: #8d97ad;
}
.cid-u4eSgsZ9Uh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4eSgsZ9Uh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4eSgsZ9Uh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4eSgsZ9Uh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4eSgsZ9Uh .mbr-section-subtitle {
  color: #333333;
}
.cid-u4f0bBfm5y {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4f0bBfm5y .mbr-section-subtitle,
.cid-u4f0bBfm5y .caption-text {
  color: #8d97ad;
}
.cid-u4f0bBfm5y .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4f0bBfm5y .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4f0bBfm5y .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4f0bBfm5y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4f0bBfm5y .mbr-section-subtitle {
  color: #333333;
}
.cid-u4f0NnrLRp {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u4f0NnrLRp .mbr-section-subtitle,
.cid-u4f0NnrLRp .caption-text {
  color: #8d97ad;
}
.cid-u4f0NnrLRp .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u4f0NnrLRp .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u4f0NnrLRp .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u4f0NnrLRp .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u4f0NnrLRp .mbr-section-subtitle {
  color: #333333;
}
.cid-u4eSgtrS7K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u4eSgtNijp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KuNMlIn {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KuNMlIn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KuNMlIn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KuNMlIn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KuNMlIn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KuNMlIn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KuNMlIn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KuNMlIn .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-uI2KuNMlIn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KuNMlIn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KuNMlIn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KuNMlIn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KuNMlIn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KuNMlIn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KuNMlIn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5tmabyi16 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5tmabyi16 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u5tmabyi16 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u5tmabyi16 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u5tmabyi16 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u5tmabyi16 .mbr-section-title,
.cid-u5tmabyi16 .card_topic {
  margin-bottom: 12px;
}
.cid-u5tmabyi16 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u5tmabyi16 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u5tmabyi16 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u5tmabyi16 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u5tmabyi16 .category_content,
.cid-u5tmabyi16 .date,
.cid-u5tmabyi16 .name_author {
  opacity: .8;
}
.cid-u5tmabyi16 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u5tmabyi16 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u5tmabyi16 .item-img,
.cid-u5tmabyi16 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u5tmabyi16 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u5tmabyi16 .item-img {
    margin-bottom: 20px;
  }
}
.cid-u5tmabyi16 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u5tmabyi16 .mbr-section-btn .btn-secondary-outline:hover,
.cid-u5tmabyi16 .mbr-section-btn .btn-secondary-outline .active,
.cid-u5tmabyi16 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u5tmac5uRi {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u5tmac5uRi .mbr-section-subtitle,
.cid-u5tmac5uRi .caption-text {
  color: #8d97ad;
}
.cid-u5tmac5uRi .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmac5uRi .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmac5uRi .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmac5uRi .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmac5uRi .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmacxqyC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u5tmacxqyC .mbr-section-subtitle,
.cid-u5tmacxqyC .caption-text {
  color: #8d97ad;
}
.cid-u5tmacxqyC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmacxqyC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmacxqyC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmacxqyC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmacxqyC .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmad4gWA {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-u5tmad4gWA .mbr-section-subtitle,
.cid-u5tmad4gWA .caption-text {
  color: #8d97ad;
}
.cid-u5tmad4gWA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmad4gWA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmad4gWA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmad4gWA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmad4gWA .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmadCX8P {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u5tmadCX8P .mbr-section-subtitle,
.cid-u5tmadCX8P .caption-text {
  color: #8d97ad;
}
.cid-u5tmadCX8P .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmadCX8P .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmadCX8P .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmadCX8P .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmadCX8P .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmae8hMQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u5tmae8hMQ .mbr-section-subtitle,
.cid-u5tmae8hMQ .caption-text {
  color: #8d97ad;
}
.cid-u5tmae8hMQ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmae8hMQ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmae8hMQ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmae8hMQ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmae8hMQ .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmaeGMjW {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u5tmaeGMjW .mbr-section-subtitle,
.cid-u5tmaeGMjW .caption-text {
  color: #8d97ad;
}
.cid-u5tmaeGMjW .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u5tmaeGMjW .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u5tmaeGMjW .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u5tmaeGMjW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u5tmaeGMjW .mbr-section-subtitle {
  color: #333333;
}
.cid-u5tmai2jUW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u5tmaiFhOT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KwOeOLy {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KwOeOLy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KwOeOLy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KwOeOLy .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KwOeOLy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KwOeOLy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KwOeOLy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KwOeOLy .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-uI2KwOeOLy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KwOeOLy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KwOeOLy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KwOeOLy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KwOeOLy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KwOeOLy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KwOeOLy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7lTtg9FZP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7lTtg9FZP .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u7lTtg9FZP .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u7lTtg9FZP .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u7lTtg9FZP .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u7lTtg9FZP .mbr-section-title,
.cid-u7lTtg9FZP .card_topic {
  margin-bottom: 12px;
}
.cid-u7lTtg9FZP .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u7lTtg9FZP .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u7lTtg9FZP .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u7lTtg9FZP .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u7lTtg9FZP .category_content,
.cid-u7lTtg9FZP .date,
.cid-u7lTtg9FZP .name_author {
  opacity: .8;
}
.cid-u7lTtg9FZP .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u7lTtg9FZP .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u7lTtg9FZP .item-img,
.cid-u7lTtg9FZP img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u7lTtg9FZP .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u7lTtg9FZP .item-img {
    margin-bottom: 20px;
  }
}
.cid-u7lTtg9FZP .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u7lTtg9FZP .mbr-section-btn .btn-secondary-outline:hover,
.cid-u7lTtg9FZP .mbr-section-btn .btn-secondary-outline .active,
.cid-u7lTtg9FZP .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u7qqfUmTUk {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u7qqfUmTUk .mbr-section-subtitle,
.cid-u7qqfUmTUk .caption-text {
  color: #8d97ad;
}
.cid-u7qqfUmTUk .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qqfUmTUk .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qqfUmTUk .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qqfUmTUk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qqfUmTUk .mbr-section-subtitle {
  color: #333333;
}
.cid-u7qrn5TBVy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u7qrn5TBVy .mbr-section-subtitle,
.cid-u7qrn5TBVy .caption-text {
  color: #8d97ad;
}
.cid-u7qrn5TBVy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qrn5TBVy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qrn5TBVy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qrn5TBVy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qrn5TBVy .mbr-section-subtitle {
  color: #333333;
}
.cid-u7qs6uUCng {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u7qs6uUCng .mbr-section-subtitle,
.cid-u7qs6uUCng .caption-text {
  color: #8d97ad;
}
.cid-u7qs6uUCng .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qs6uUCng .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qs6uUCng .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qs6uUCng .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qs6uUCng .mbr-section-subtitle {
  color: #333333;
}
.cid-u7qsAmedPD {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u7qsAmedPD .mbr-section-subtitle,
.cid-u7qsAmedPD .caption-text {
  color: #8d97ad;
}
.cid-u7qsAmedPD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qsAmedPD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qsAmedPD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qsAmedPD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qsAmedPD .mbr-section-subtitle {
  color: #333333;
}
.cid-u7qthXL81f {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7qGWox9Fy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7qGWox9Fy .row {
  align-items: stretch;
  justify-content: center;
}
.cid-u7qGWox9Fy .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-u7qGWox9Fy .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-u7qGWox9Fy .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-u7qHzlFvat {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qIMjhOvi {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u7qIMjhOvi .mbr-section-subtitle,
.cid-u7qIMjhOvi .caption-text {
  color: #8d97ad;
}
.cid-u7qIMjhOvi .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qIMjhOvi .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qIMjhOvi .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qIMjhOvi .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qIMjhOvi .mbr-section-subtitle {
  color: #333333;
}
.cid-u7qK6mz7l0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qz3GJzeh {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u7qz3GJzeh .mbr-section-subtitle,
.cid-u7qz3GJzeh .caption-text {
  color: #8d97ad;
}
.cid-u7qz3GJzeh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u7qz3GJzeh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u7qz3GJzeh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u7qz3GJzeh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u7qLeLCeOJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7lTtiij8H {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JUkCUcw {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JUkCUcw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JUkCUcw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JUkCUcw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JUkCUcw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JUkCUcw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JUkCUcw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JUkCUcw .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-uI2JUkCUcw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JUkCUcw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JUkCUcw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JUkCUcw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JUkCUcw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JUkCUcw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JUkCUcw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cC8IXDmW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8cC8IXDmW .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u8cC8IXDmW .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u8cC8IXDmW .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u8cC8IXDmW .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u8cC8IXDmW .mbr-section-title,
.cid-u8cC8IXDmW .card_topic {
  margin-bottom: 12px;
}
.cid-u8cC8IXDmW .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u8cC8IXDmW .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u8cC8IXDmW .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u8cC8IXDmW .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u8cC8IXDmW .category_content,
.cid-u8cC8IXDmW .date,
.cid-u8cC8IXDmW .name_author {
  opacity: .8;
}
.cid-u8cC8IXDmW .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u8cC8IXDmW .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u8cC8IXDmW .item-img,
.cid-u8cC8IXDmW img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u8cC8IXDmW .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u8cC8IXDmW .item-img {
    margin-bottom: 20px;
  }
}
.cid-u8cC8IXDmW .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u8cC8IXDmW .mbr-section-btn .btn-secondary-outline:hover,
.cid-u8cC8IXDmW .mbr-section-btn .btn-secondary-outline .active,
.cid-u8cC8IXDmW .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u8cC8JnNA6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u8cC8JnNA6 .mbr-section-subtitle,
.cid-u8cC8JnNA6 .caption-text {
  color: #8d97ad;
}
.cid-u8cC8JnNA6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u8cC8JnNA6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u8cC8JnNA6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u8cC8JnNA6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u8cC8JnNA6 .mbr-section-subtitle {
  color: #333333;
}
.cid-u8cC8KE45U {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u8cC8KE45U .mbr-section-subtitle,
.cid-u8cC8KE45U .caption-text {
  color: #8d97ad;
}
.cid-u8cC8KE45U .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u8cC8KE45U .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u8cC8KE45U .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u8cC8KE45U .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u8cC8KE45U .mbr-section-subtitle {
  color: #333333;
}
.cid-u8cC8MlAlY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u8cC8MlAlY .mbr-section-subtitle,
.cid-u8cC8MlAlY .caption-text {
  color: #8d97ad;
}
.cid-u8cC8MlAlY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u8cC8MlAlY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u8cC8MlAlY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u8cC8MlAlY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u8cC8MlAlY .mbr-section-subtitle {
  color: #333333;
}
.cid-u8cKPN3nSV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u8cKPN3nSV .mbr-section-subtitle,
.cid-u8cKPN3nSV .caption-text {
  color: #8d97ad;
}
.cid-u8cKPN3nSV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u8cKPN3nSV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u8cKPN3nSV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u8cKPN3nSV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u8cKPN3nSV .mbr-section-subtitle {
  color: #333333;
}
.cid-u8cLULWOyl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u8cLULWOyl .mbr-section-subtitle,
.cid-u8cLULWOyl .caption-text {
  color: #8d97ad;
}
.cid-u8cLULWOyl .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u8cLULWOyl .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u8cLULWOyl .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u8cLULWOyl .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u8cLULWOyl .mbr-section-subtitle {
  color: #333333;
}
.cid-u8cC8NC4Z1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u8cC8NZBez {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JZX7aFF {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JZX7aFF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JZX7aFF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JZX7aFF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JZX7aFF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JZX7aFF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JZX7aFF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JZX7aFF .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-uI2JZX7aFF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JZX7aFF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JZX7aFF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JZX7aFF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JZX7aFF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JZX7aFF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JZX7aFF .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9Co3rfO0L {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9Co3rfO0L .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-u9Co3rfO0L .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u9Co3rfO0L .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-u9Co3rfO0L .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-u9Co3rfO0L .mbr-section-title,
.cid-u9Co3rfO0L .card_topic {
  margin-bottom: 12px;
}
.cid-u9Co3rfO0L .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-u9Co3rfO0L .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-u9Co3rfO0L .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-u9Co3rfO0L .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-u9Co3rfO0L .category_content,
.cid-u9Co3rfO0L .date,
.cid-u9Co3rfO0L .name_author {
  opacity: .8;
}
.cid-u9Co3rfO0L .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-u9Co3rfO0L .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-u9Co3rfO0L .item-img,
.cid-u9Co3rfO0L img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-u9Co3rfO0L .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u9Co3rfO0L .item-img {
    margin-bottom: 20px;
  }
}
.cid-u9Co3rfO0L .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-u9Co3rfO0L .mbr-section-btn .btn-secondary-outline:hover,
.cid-u9Co3rfO0L .mbr-section-btn .btn-secondary-outline .active,
.cid-u9Co3rfO0L .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-u9CrAsQtMc {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u9CrAsQtMc .mbr-section-subtitle,
.cid-u9CrAsQtMc .caption-text {
  color: #8d97ad;
}
.cid-u9CrAsQtMc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9CrAsQtMc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9CrAsQtMc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9CrAsQtMc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9CrTJ7Jxj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u9CscGrHTH {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u9CscGrHTH .mbr-section-subtitle,
.cid-u9CscGrHTH .caption-text {
  color: #8d97ad;
}
.cid-u9CscGrHTH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9CscGrHTH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9CscGrHTH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9CscGrHTH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9CsSWOM89 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9CsSWOM89 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-u9CsSWOM89 .row {
  justify-content: center;
}
.cid-u9CsSWOM89 a {
  font-weight: 400 !important;
}
.cid-u9CwHxzY5m {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u9CwHxzY5m .mbr-section-subtitle,
.cid-u9CwHxzY5m .caption-text {
  color: #8d97ad;
}
.cid-u9CwHxzY5m .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9CwHxzY5m .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9CwHxzY5m .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9CwHxzY5m .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9CwXCc5qv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u9CAldppR0 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u9CAldppR0 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-u9CAldppR0 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-u9CAldppR0 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-u9CAldppR0 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-u9CBQaCDBa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9CBQaCDBa .p {
  color: #333333;
  padding-top: 30px;
}
.cid-u9CBQaCDBa .row {
  justify-content: center;
}
.cid-u9CBQaCDBa a {
  font-weight: 400 !important;
}
.cid-u9CChjvmhv {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u9CChjvmhv .mbr-section-subtitle,
.cid-u9CChjvmhv .caption-text {
  color: #8d97ad;
}
.cid-u9CChjvmhv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9CChjvmhv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9CChjvmhv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9CChjvmhv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9CDgxBzg6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9CDgxBzg6 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-u9CDgxBzg6 .row {
  justify-content: center;
}
.cid-u9CDgxBzg6 a {
  font-weight: 400 !important;
}
.cid-u9CDLqKNpN {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-u9CDLqKNpN .mbr-section-subtitle,
.cid-u9CDLqKNpN .caption-text {
  color: #8d97ad;
}
.cid-u9CDLqKNpN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9CDLqKNpN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9CDLqKNpN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9CDLqKNpN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9CDVlMoGQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9CDVlMoGQ .p {
  color: #333333;
  padding-top: 30px;
}
.cid-u9CDVlMoGQ .row {
  justify-content: center;
}
.cid-u9CDVlMoGQ a {
  font-weight: 400 !important;
}
.cid-u9Co3u3D32 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-u9Co3u3D32 .mbr-section-subtitle,
.cid-u9Co3u3D32 .caption-text {
  color: #8d97ad;
}
.cid-u9Co3u3D32 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-u9Co3u3D32 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-u9Co3u3D32 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-u9Co3u3D32 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-u9Co3u3D32 .mbr-section-subtitle {
  color: #333333;
}
.cid-u9Co3uvQ5b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u9Co3uVsfZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KyGJMAn {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KyGJMAn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KyGJMAn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KyGJMAn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KyGJMAn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KyGJMAn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KyGJMAn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KyGJMAn .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-uI2KyGJMAn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KyGJMAn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KyGJMAn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KyGJMAn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KyGJMAn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KyGJMAn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KyGJMAn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaKhU16z3d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaKhU16z3d .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uaKhU16z3d .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uaKhU16z3d .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uaKhU16z3d .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uaKhU16z3d .mbr-section-title,
.cid-uaKhU16z3d .card_topic {
  margin-bottom: 12px;
}
.cid-uaKhU16z3d .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uaKhU16z3d .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uaKhU16z3d .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uaKhU16z3d .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uaKhU16z3d .category_content,
.cid-uaKhU16z3d .date,
.cid-uaKhU16z3d .name_author {
  opacity: .8;
}
.cid-uaKhU16z3d .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uaKhU16z3d .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uaKhU16z3d .item-img,
.cid-uaKhU16z3d img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uaKhU16z3d .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uaKhU16z3d .item-img {
    margin-bottom: 20px;
  }
}
.cid-uaKhU16z3d .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uaKhU16z3d .mbr-section-btn .btn-secondary-outline:hover,
.cid-uaKhU16z3d .mbr-section-btn .btn-secondary-outline .active,
.cid-uaKhU16z3d .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uaKneM0eOL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaKneM0eOL .mbr-section-title {
  color: #000000;
}
.cid-uaKneM0eOL .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uaKneM0eOL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaKneM0eOL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaKnL0P9BV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uaKnL0P9BV .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uaKnL0P9BV .row {
  justify-content: center;
}
.cid-uaKnL0P9BV a {
  font-weight: 400 !important;
}
.cid-uaKhU1AUsn {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKhU1AUsn .mbr-section-subtitle,
.cid-uaKhU1AUsn .caption-text {
  color: #8d97ad;
}
.cid-uaKhU1AUsn .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU1AUsn .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU1AUsn .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU1AUsn .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKhU2onSL {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKhU2onSL .mbr-section-subtitle,
.cid-uaKhU2onSL .caption-text {
  color: #8d97ad;
}
.cid-uaKhU2onSL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU2onSL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU2onSL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU2onSL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKhU2UTCr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uaKhU2UTCr .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uaKhU2UTCr .row {
  justify-content: center;
}
.cid-uaKhU2UTCr a {
  font-weight: 400 !important;
}
.cid-uaKhU3n4QG {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKhU3n4QG .mbr-section-subtitle,
.cid-uaKhU3n4QG .caption-text {
  color: #8d97ad;
}
.cid-uaKhU3n4QG .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU3n4QG .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU3n4QG .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU3n4QG .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKqKaiwTF {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKqKaiwTF .mbr-section-subtitle,
.cid-uaKqKaiwTF .caption-text {
  color: #8d97ad;
}
.cid-uaKqKaiwTF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKqKaiwTF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKqKaiwTF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKqKaiwTF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKsmJ47Df {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uaKsmJ47Df .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uaKsmJ47Df .row {
  justify-content: center;
}
.cid-uaKsmJ47Df a {
  font-weight: 400 !important;
}
.cid-uaKsKJqXHF {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKsKJqXHF .mbr-section-subtitle,
.cid-uaKsKJqXHF .caption-text {
  color: #8d97ad;
}
.cid-uaKsKJqXHF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKsKJqXHF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKsKJqXHF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKsKJqXHF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKtJ0ubvC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaKtJ0ubvC .mbr-section-title {
  color: #000000;
}
.cid-uaKtJ0ubvC .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uaKtJ0ubvC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaKtJ0ubvC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaKhU4O01O {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uaKhU4O01O .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uaKhU4O01O .row {
  justify-content: center;
}
.cid-uaKhU4O01O a {
  font-weight: 400 !important;
}
.cid-uaKhU5d8Tt {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKhU5d8Tt .mbr-section-subtitle,
.cid-uaKhU5d8Tt .caption-text {
  color: #8d97ad;
}
.cid-uaKhU5d8Tt .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU5d8Tt .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU5d8Tt .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU5d8Tt .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKhU5DTN1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uaKhU5DTN1 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uaKhU5DTN1 .row {
  justify-content: center;
}
.cid-uaKhU5DTN1 a {
  font-weight: 400 !important;
}
.cid-uaKhU64ShJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKhU64ShJ .mbr-section-subtitle,
.cid-uaKhU64ShJ .caption-text {
  color: #8d97ad;
}
.cid-uaKhU64ShJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU64ShJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU64ShJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU64ShJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKwufgn6m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaKwufgn6m .mbr-section-title {
  color: #000000;
}
.cid-uaKwufgn6m .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uaKwufgn6m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaKwufgn6m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaKhU71PC0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uaKhU71PC0 .mbr-section-subtitle,
.cid-uaKhU71PC0 .caption-text {
  color: #8d97ad;
}
.cid-uaKhU71PC0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKhU71PC0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKhU71PC0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKhU71PC0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKhU71PC0 .mbr-section-subtitle {
  color: #333333;
}
.cid-uaKzMgvKqz {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKzMgvKqz .mbr-section-subtitle,
.cid-uaKzMgvKqz .caption-text {
  color: #8d97ad;
}
.cid-uaKzMgvKqz .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKzMgvKqz .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKzMgvKqz .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKzMgvKqz .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKAHS81NW {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uaKAHS81NW .mbr-section-subtitle,
.cid-uaKAHS81NW .caption-text {
  color: #8d97ad;
}
.cid-uaKAHS81NW .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKAHS81NW .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKAHS81NW .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKAHS81NW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKAHS81NW .mbr-section-subtitle {
  color: #333333;
}
.cid-uaKEVvuHpy {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uaKEVvuHpy .mbr-section-subtitle,
.cid-uaKEVvuHpy .caption-text {
  color: #8d97ad;
}
.cid-uaKEVvuHpy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKEVvuHpy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKEVvuHpy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKEVvuHpy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKFlg6q86 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uaKFlg6q86 .mbr-section-subtitle,
.cid-uaKFlg6q86 .caption-text {
  color: #8d97ad;
}
.cid-uaKFlg6q86 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uaKFlg6q86 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uaKFlg6q86 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uaKFlg6q86 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uaKFlg6q86 .mbr-section-subtitle {
  color: #333333;
}
.cid-uaKhU7zAZ3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uaKhU7XQjp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KAEKo0a {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KAEKo0a .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KAEKo0a .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KAEKo0a .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KAEKo0a .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KAEKo0a .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KAEKo0a .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KAEKo0a .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-uI2KAEKo0a .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KAEKo0a .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KAEKo0a .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KAEKo0a .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KAEKo0a .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KAEKo0a .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KAEKo0a .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubGUAbV4Mu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubGUAbV4Mu .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-ubGUAbV4Mu .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ubGUAbV4Mu .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-ubGUAbV4Mu .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-ubGUAbV4Mu .mbr-section-title,
.cid-ubGUAbV4Mu .card_topic {
  margin-bottom: 12px;
}
.cid-ubGUAbV4Mu .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-ubGUAbV4Mu .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-ubGUAbV4Mu .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ubGUAbV4Mu .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-ubGUAbV4Mu .category_content,
.cid-ubGUAbV4Mu .date,
.cid-ubGUAbV4Mu .name_author {
  opacity: .8;
}
.cid-ubGUAbV4Mu .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ubGUAbV4Mu .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-ubGUAbV4Mu .item-img,
.cid-ubGUAbV4Mu img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-ubGUAbV4Mu .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ubGUAbV4Mu .item-img {
    margin-bottom: 20px;
  }
}
.cid-ubGUAbV4Mu .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ubGUAbV4Mu .mbr-section-btn .btn-secondary-outline:hover,
.cid-ubGUAbV4Mu .mbr-section-btn .btn-secondary-outline .active,
.cid-ubGUAbV4Mu .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-ubGUAcHaAb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ubGUAcHaAb .mbr-section-subtitle,
.cid-ubGUAcHaAb .caption-text {
  color: #8d97ad;
}
.cid-ubGUAcHaAb .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ubGUAcHaAb .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ubGUAcHaAb .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ubGUAcHaAb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ubGUAcHaAb .mbr-section-subtitle {
  color: #333333;
}
.cid-ubGUAeA2FY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ubGUAeA2FY .mbr-section-subtitle,
.cid-ubGUAeA2FY .caption-text {
  color: #8d97ad;
}
.cid-ubGUAeA2FY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ubGUAeA2FY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ubGUAeA2FY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ubGUAeA2FY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ubGUAeA2FY .mbr-section-subtitle {
  color: #333333;
}
.cid-ubGUAfeYPH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubGUAfKSMD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubGUAfKSMD .row {
  align-items: stretch;
  justify-content: center;
}
.cid-ubGUAfKSMD .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-ubGUAfKSMD .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-ubGUAfKSMD .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-ubGUAhLgQ9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ubGUAimdaO {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-ubGUAimdaO .mbr-section-subtitle,
.cid-ubGUAimdaO .caption-text {
  color: #8d97ad;
}
.cid-ubGUAimdaO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ubGUAimdaO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ubGUAimdaO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ubGUAimdaO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ubGUAj0kKG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ubGUAjFMvG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JW6YmOB {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JW6YmOB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JW6YmOB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JW6YmOB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JW6YmOB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JW6YmOB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JW6YmOB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JW6YmOB .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-uI2JW6YmOB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JW6YmOB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JW6YmOB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JW6YmOB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JW6YmOB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JW6YmOB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JW6YmOB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udAB8wUHBq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-udAB8wUHBq .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-udAB8wUHBq .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-udAB8wUHBq .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-udAB8wUHBq .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-udAB8wUHBq .mbr-section-title,
.cid-udAB8wUHBq .card_topic {
  margin-bottom: 12px;
}
.cid-udAB8wUHBq .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-udAB8wUHBq .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-udAB8wUHBq .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-udAB8wUHBq .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-udAB8wUHBq .category_content,
.cid-udAB8wUHBq .date,
.cid-udAB8wUHBq .name_author {
  opacity: .8;
}
.cid-udAB8wUHBq .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-udAB8wUHBq .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-udAB8wUHBq .item-img,
.cid-udAB8wUHBq img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-udAB8wUHBq .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-udAB8wUHBq .item-img {
    margin-bottom: 20px;
  }
}
.cid-udAB8wUHBq .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-udAB8wUHBq .mbr-section-btn .btn-secondary-outline:hover,
.cid-udAB8wUHBq .mbr-section-btn .btn-secondary-outline .active,
.cid-udAB8wUHBq .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-udAB8xoDv3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAB8xoDv3 .mbr-section-subtitle,
.cid-udAB8xoDv3 .caption-text {
  color: #8d97ad;
}
.cid-udAB8xoDv3 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAB8xoDv3 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAB8xoDv3 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAB8xoDv3 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAB8xoDv3 .mbr-section-subtitle {
  color: #333333;
  text-align: left;
}
.cid-udAB8xJdKz {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAB8xJdKz .mbr-section-subtitle,
.cid-udAB8xJdKz .caption-text {
  color: #8d97ad;
}
.cid-udAB8xJdKz .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAB8xJdKz .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAB8xJdKz .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAB8xJdKz .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAB8xJdKz .mbr-section-subtitle {
  color: #333333;
}
.cid-udADMuT1nL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udADMuT1nL .mbr-section-subtitle,
.cid-udADMuT1nL .caption-text {
  color: #8d97ad;
}
.cid-udADMuT1nL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udADMuT1nL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udADMuT1nL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udADMuT1nL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udADMuT1nL .mbr-section-subtitle {
  color: #333333;
}
.cid-udAElEL9O9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAElEL9O9 .mbr-section-subtitle,
.cid-udAElEL9O9 .caption-text {
  color: #8d97ad;
}
.cid-udAElEL9O9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAElEL9O9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAElEL9O9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAElEL9O9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAElEL9O9 .mbr-section-subtitle {
  color: #333333;
}
.cid-udAEY8qAu0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAEY8qAu0 .mbr-section-subtitle,
.cid-udAEY8qAu0 .caption-text {
  color: #8d97ad;
}
.cid-udAEY8qAu0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAEY8qAu0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAEY8qAu0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAEY8qAu0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAEY8qAu0 .mbr-section-subtitle {
  color: #333333;
}
.cid-udAFXvSHBO {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAFXvSHBO .mbr-section-subtitle,
.cid-udAFXvSHBO .caption-text {
  color: #8d97ad;
}
.cid-udAFXvSHBO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAFXvSHBO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAFXvSHBO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAFXvSHBO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAFXvSHBO .mbr-section-subtitle {
  color: #333333;
}
.cid-udAGqkK55L {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAGqkK55L .mbr-section-subtitle,
.cid-udAGqkK55L .caption-text {
  color: #8d97ad;
}
.cid-udAGqkK55L .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAGqkK55L .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAGqkK55L .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAGqkK55L .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAGqkK55L .mbr-section-subtitle {
  color: #333333;
}
.cid-udAHjbXWZh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-udAHjbXWZh .mbr-section-subtitle,
.cid-udAHjbXWZh .caption-text {
  color: #8d97ad;
}
.cid-udAHjbXWZh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-udAHjbXWZh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-udAHjbXWZh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-udAHjbXWZh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-udAHjbXWZh .mbr-section-subtitle {
  color: #333333;
}
.cid-udAB8zD5aF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-udAB8zXMuG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JY1V8e4 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JY1V8e4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JY1V8e4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JY1V8e4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JY1V8e4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JY1V8e4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JY1V8e4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JY1V8e4 .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-uI2JY1V8e4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JY1V8e4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JY1V8e4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JY1V8e4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JY1V8e4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JY1V8e4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JY1V8e4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufxP0K6bRx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufxP0K6bRx .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-ufxP0K6bRx .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufxP0K6bRx .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-ufxP0K6bRx .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-ufxP0K6bRx .mbr-section-title,
.cid-ufxP0K6bRx .card_topic {
  margin-bottom: 12px;
}
.cid-ufxP0K6bRx .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-ufxP0K6bRx .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-ufxP0K6bRx .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ufxP0K6bRx .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-ufxP0K6bRx .category_content,
.cid-ufxP0K6bRx .date,
.cid-ufxP0K6bRx .name_author {
  opacity: .8;
}
.cid-ufxP0K6bRx .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ufxP0K6bRx .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-ufxP0K6bRx .item-img,
.cid-ufxP0K6bRx img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-ufxP0K6bRx .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ufxP0K6bRx .item-img {
    margin-bottom: 20px;
  }
}
.cid-ufxP0K6bRx .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ufxP0K6bRx .mbr-section-btn .btn-secondary-outline:hover,
.cid-ufxP0K6bRx .mbr-section-btn .btn-secondary-outline .active,
.cid-ufxP0K6bRx .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-ufxQRFSvwz {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ufxQRFSvwz .mbr-section-subtitle,
.cid-ufxQRFSvwz .caption-text {
  color: #8d97ad;
}
.cid-ufxQRFSvwz .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ufxQRFSvwz .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ufxQRFSvwz .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ufxQRFSvwz .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ufxQRFSvwz .mbr-section-subtitle {
  color: #333333;
}
.cid-ufxUKbFtX4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ufxUKbFtX4 .mbr-section-subtitle,
.cid-ufxUKbFtX4 .caption-text {
  color: #8d97ad;
}
.cid-ufxUKbFtX4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ufxUKbFtX4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ufxUKbFtX4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ufxUKbFtX4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ufxUKbFtX4 .mbr-section-subtitle {
  color: #333333;
}
.cid-ufy21ztrW4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufy21ztrW4 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-ufy21ztrW4 .row {
  justify-content: center;
}
.cid-ufy21ztrW4 a {
  font-weight: 400 !important;
}
.cid-ufy1tNpFO9 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-ufy1tNpFO9 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ufy1tNpFO9 .image-block:hover img {
  transform: scale(1.1);
}
.cid-ufy1tNpFO9 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ufy1tNpFO9 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ufy1tNpFO9 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ufy1tNpFO9 .wrap {
    opacity: 1 !important;
  }
  .cid-ufy1tNpFO9 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ufy1tNpFO9 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ufy1tNpFO9 P {
  color: #bbbbbb;
}
.cid-ufy57QoWtJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ufy57QoWtJ .mbr-section-subtitle,
.cid-ufy57QoWtJ .caption-text {
  color: #8d97ad;
}
.cid-ufy57QoWtJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ufy57QoWtJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ufy57QoWtJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ufy57QoWtJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ufy57QoWtJ .mbr-section-subtitle {
  color: #333333;
}
.cid-ufynosMaES {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ufynosMaES .mbr-section-subtitle,
.cid-ufynosMaES .caption-text {
  color: #8d97ad;
}
.cid-ufynosMaES .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ufynosMaES .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ufynosMaES .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ufynosMaES .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ufynczkFFV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JspCV6H {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JspCV6H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JspCV6H .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JspCV6H .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JspCV6H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JspCV6H .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JspCV6H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JspCV6H .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-uI2JspCV6H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JspCV6H .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JspCV6H .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JspCV6H .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JspCV6H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JspCV6H .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JspCV6H .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugzTRaNthy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugzTRaNthy .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-ugzTRaNthy .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ugzTRaNthy .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-ugzTRaNthy .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-ugzTRaNthy .mbr-section-title,
.cid-ugzTRaNthy .card_topic {
  margin-bottom: 12px;
}
.cid-ugzTRaNthy .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-ugzTRaNthy .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-ugzTRaNthy .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ugzTRaNthy .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-ugzTRaNthy .category_content,
.cid-ugzTRaNthy .date,
.cid-ugzTRaNthy .name_author {
  opacity: .8;
}
.cid-ugzTRaNthy .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ugzTRaNthy .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-ugzTRaNthy .item-img,
.cid-ugzTRaNthy img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-ugzTRaNthy .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ugzTRaNthy .item-img {
    margin-bottom: 20px;
  }
}
.cid-ugzTRaNthy .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ugzTRaNthy .mbr-section-btn .btn-secondary-outline:hover,
.cid-ugzTRaNthy .mbr-section-btn .btn-secondary-outline .active,
.cid-ugzTRaNthy .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-ugzYqVlJi1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ugzYqVlJi1 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-ugzYqVlJi1 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ugzYqVlJi1 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-ugzYqVlJi1 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-ugA2dbsZqc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ugA2dbsZqc .mbr-text {
  color: #767676;
}
.cid-ugA2dbsZqc .card-subtitle {
  margin: 0;
}
.cid-ugA2dbsZqc .link {
  margin: 0;
}
.cid-ugA2dbsZqc .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-ugA2dbsZqc .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-ugA2dbsZqc .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}
.cid-ugA2dbsZqc .item {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-ugA2dbsZqc .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem !important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-ugA2dbsZqc .date {
  margin: 0;
}
.cid-ugA2dbsZqc img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-ugA2dbsZqc .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-ugA2dbsZqc .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-ugA2dbsZqc .card-img:hover:before {
  opacity: 0.4;
}
.cid-ugA2dbsZqc .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-ugA2dbsZqc .icon-box {
    flex-direction: column;
  }
  .cid-ugA2dbsZqc .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-ugA2dbsZqc .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugA2dbsZqc .card {
    margin-bottom: 3rem;
  }
}
.cid-ugA2dbsZqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugA2dbsZqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugA2R9Alvt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugA2R9Alvt .mbr-text {
  color: #767676;
}
.cid-ugA2R9Alvt .card-subtitle {
  margin: 0;
}
.cid-ugA2R9Alvt .link {
  margin: 0;
}
.cid-ugA2R9Alvt .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-ugA2R9Alvt .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-ugA2R9Alvt .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}
.cid-ugA2R9Alvt .item {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-ugA2R9Alvt .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem !important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-ugA2R9Alvt .date {
  margin: 0;
}
.cid-ugA2R9Alvt img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-ugA2R9Alvt .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-ugA2R9Alvt .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-ugA2R9Alvt .card-img:hover:before {
  opacity: 0.4;
}
.cid-ugA2R9Alvt .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-ugA2R9Alvt .icon-box {
    flex-direction: column;
  }
  .cid-ugA2R9Alvt .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-ugA2R9Alvt .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugA2R9Alvt .card {
    margin-bottom: 3rem;
  }
}
.cid-ugA2R9Alvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugA2R9Alvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugzTRcDOdG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ugzTRcDOdG .mbr-section-subtitle,
.cid-ugzTRcDOdG .caption-text {
  color: #8d97ad;
}
.cid-ugzTRcDOdG .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ugzTRcDOdG .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ugzTRcDOdG .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ugzTRcDOdG .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ugzTRcDOdG .mbr-section-subtitle {
  color: #333333;
}
.cid-ugzTRgmKfv {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ugzTRgmKfv .mbr-section-subtitle,
.cid-ugzTRgmKfv .caption-text {
  color: #8d97ad;
}
.cid-ugzTRgmKfv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ugzTRgmKfv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ugzTRgmKfv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ugzTRgmKfv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ugzTRhhEzg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JDzWH8i {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JDzWH8i .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JDzWH8i .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JDzWH8i .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JDzWH8i .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JDzWH8i .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JDzWH8i .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JDzWH8i .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-uI2JDzWH8i .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JDzWH8i .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JDzWH8i .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JDzWH8i .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JDzWH8i .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JDzWH8i .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JDzWH8i .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhwNHEmzSg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhwNHEmzSg .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uhwNHEmzSg .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uhwNHEmzSg .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uhwNHEmzSg .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uhwNHEmzSg .mbr-section-title,
.cid-uhwNHEmzSg .card_topic {
  margin-bottom: 12px;
}
.cid-uhwNHEmzSg .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uhwNHEmzSg .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uhwNHEmzSg .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uhwNHEmzSg .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uhwNHEmzSg .category_content,
.cid-uhwNHEmzSg .date,
.cid-uhwNHEmzSg .name_author {
  opacity: .8;
}
.cid-uhwNHEmzSg .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uhwNHEmzSg .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uhwNHEmzSg .item-img,
.cid-uhwNHEmzSg img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uhwNHEmzSg .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uhwNHEmzSg .item-img {
    margin-bottom: 20px;
  }
}
.cid-uhwNHEmzSg .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uhwNHEmzSg .mbr-section-btn .btn-secondary-outline:hover,
.cid-uhwNHEmzSg .mbr-section-btn .btn-secondary-outline .active,
.cid-uhwNHEmzSg .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uhwNHF0Q6U {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhwNHF0Q6U .mbr-section-subtitle,
.cid-uhwNHF0Q6U .caption-text {
  color: #8d97ad;
}
.cid-uhwNHF0Q6U .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhwNHF0Q6U .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhwNHF0Q6U .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhwNHF0Q6U .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhwNHF0Q6U .mbr-section-subtitle {
  color: #333333;
}
.cid-uhwNHFsNcO {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhwNHFsNcO .mbr-section-subtitle,
.cid-uhwNHFsNcO .caption-text {
  color: #8d97ad;
}
.cid-uhwNHFsNcO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhwNHFsNcO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhwNHFsNcO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhwNHFsNcO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhwNHFsNcO .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxBNQAxUK {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxBNQAxUK .mbr-section-subtitle,
.cid-uhxBNQAxUK .caption-text {
  color: #8d97ad;
}
.cid-uhxBNQAxUK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxBNQAxUK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxBNQAxUK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxBNQAxUK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxBNQAxUK .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxCZXZbvD {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxCZXZbvD .mbr-section-subtitle,
.cid-uhxCZXZbvD .caption-text {
  color: #8d97ad;
}
.cid-uhxCZXZbvD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxCZXZbvD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxCZXZbvD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxCZXZbvD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxCZXZbvD .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxEkIHqGk {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxEkIHqGk .mbr-section-subtitle,
.cid-uhxEkIHqGk .caption-text {
  color: #8d97ad;
}
.cid-uhxEkIHqGk .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxEkIHqGk .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxEkIHqGk .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxEkIHqGk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxEkIHqGk .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxF3CMIfd {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxF3CMIfd .mbr-section-subtitle,
.cid-uhxF3CMIfd .caption-text {
  color: #8d97ad;
}
.cid-uhxF3CMIfd .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxF3CMIfd .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxF3CMIfd .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxF3CMIfd .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxF3CMIfd .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxFJdAc4v {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxFJdAc4v .mbr-section-subtitle,
.cid-uhxFJdAc4v .caption-text {
  color: #8d97ad;
}
.cid-uhxFJdAc4v .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxFJdAc4v .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxFJdAc4v .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxFJdAc4v .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxFJdAc4v .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxGCpbhwL {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxGCpbhwL .mbr-section-subtitle,
.cid-uhxGCpbhwL .caption-text {
  color: #8d97ad;
}
.cid-uhxGCpbhwL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxGCpbhwL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxGCpbhwL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxGCpbhwL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxGCpbhwL .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxHjTQZpJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxHjTQZpJ .mbr-section-subtitle,
.cid-uhxHjTQZpJ .caption-text {
  color: #8d97ad;
}
.cid-uhxHjTQZpJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxHjTQZpJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxHjTQZpJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxHjTQZpJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxHjTQZpJ .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxI7CZogN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxI7CZogN .mbr-section-subtitle,
.cid-uhxI7CZogN .caption-text {
  color: #8d97ad;
}
.cid-uhxI7CZogN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxI7CZogN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxI7CZogN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxI7CZogN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxI7CZogN .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxJcZHAcR {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxJcZHAcR .mbr-section-subtitle,
.cid-uhxJcZHAcR .caption-text {
  color: #8d97ad;
}
.cid-uhxJcZHAcR .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxJcZHAcR .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxJcZHAcR .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxJcZHAcR .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxJcZHAcR .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxJPYnN48 {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uhxJPYnN48 .mbr-section-subtitle,
.cid-uhxJPYnN48 .caption-text {
  color: #8d97ad;
}
.cid-uhxJPYnN48 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uhxJPYnN48 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uhxJPYnN48 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uhxJPYnN48 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uhxJPYnN48 .mbr-section-subtitle {
  color: #333333;
}
.cid-uhxKFx8rvf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhxKFx8rvf .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uhxKFx8rvf .row {
  justify-content: center;
}
.cid-uhxKFx8rvf a {
  font-weight: 400 !important;
}
.cid-uhwNHIdjC8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JBcIEUP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JBcIEUP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JBcIEUP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JBcIEUP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JBcIEUP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JBcIEUP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JBcIEUP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JBcIEUP .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-uI2JBcIEUP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JBcIEUP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JBcIEUP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JBcIEUP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JBcIEUP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JBcIEUP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JBcIEUP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujdIjwV2cu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujdIjwV2cu .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-ujdIjwV2cu .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ujdIjwV2cu .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-ujdIjwV2cu .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-ujdIjwV2cu .mbr-section-title,
.cid-ujdIjwV2cu .card_topic {
  margin-bottom: 12px;
}
.cid-ujdIjwV2cu .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-ujdIjwV2cu .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-ujdIjwV2cu .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ujdIjwV2cu .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-ujdIjwV2cu .category_content,
.cid-ujdIjwV2cu .date,
.cid-ujdIjwV2cu .name_author {
  opacity: .8;
}
.cid-ujdIjwV2cu .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ujdIjwV2cu .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-ujdIjwV2cu .item-img,
.cid-ujdIjwV2cu img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-ujdIjwV2cu .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ujdIjwV2cu .item-img {
    margin-bottom: 20px;
  }
}
.cid-ujdIjwV2cu .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ujdIjwV2cu .mbr-section-btn .btn-secondary-outline:hover,
.cid-ujdIjwV2cu .mbr-section-btn .btn-secondary-outline .active,
.cid-ujdIjwV2cu .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-ujdIjxpafr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ujdIjxpafr .mbr-section-subtitle,
.cid-ujdIjxpafr .caption-text {
  color: #8d97ad;
}
.cid-ujdIjxpafr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujdIjxpafr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujdIjxpafr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujdIjxpafr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujdIjxpafr .mbr-section-subtitle {
  color: #333333;
}
.cid-ujdIjxL4e7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ujdIjxL4e7 .mbr-section-subtitle,
.cid-ujdIjxL4e7 .caption-text {
  color: #8d97ad;
}
.cid-ujdIjxL4e7 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujdIjxL4e7 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujdIjxL4e7 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujdIjxL4e7 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujdIjxL4e7 .mbr-section-subtitle {
  color: #333333;
}
.cid-ujdIjz5FMO {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ujdIjz5FMO .mbr-section-subtitle,
.cid-ujdIjz5FMO .caption-text {
  color: #8d97ad;
}
.cid-ujdIjz5FMO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujdIjz5FMO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujdIjz5FMO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujdIjz5FMO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujdIjz5FMO .mbr-section-subtitle {
  color: #333333;
}
.cid-ujkEpvthRs {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ujdIjzRODj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JymQZsW {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JymQZsW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JymQZsW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JymQZsW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JymQZsW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JymQZsW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JymQZsW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JymQZsW .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-uI2JymQZsW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JymQZsW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JymQZsW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JymQZsW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JymQZsW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JymQZsW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JymQZsW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulp3X0UM3u {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulp3X0UM3u .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-ulp3X0UM3u .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ulp3X0UM3u .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-ulp3X0UM3u .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-ulp3X0UM3u .mbr-section-title,
.cid-ulp3X0UM3u .card_topic {
  margin-bottom: 12px;
}
.cid-ulp3X0UM3u .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-ulp3X0UM3u .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-ulp3X0UM3u .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ulp3X0UM3u .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-ulp3X0UM3u .category_content,
.cid-ulp3X0UM3u .date,
.cid-ulp3X0UM3u .name_author {
  opacity: .8;
}
.cid-ulp3X0UM3u .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ulp3X0UM3u .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-ulp3X0UM3u .item-img,
.cid-ulp3X0UM3u img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-ulp3X0UM3u .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ulp3X0UM3u .item-img {
    margin-bottom: 20px;
  }
}
.cid-ulp3X0UM3u .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ulp3X0UM3u .mbr-section-btn .btn-secondary-outline:hover,
.cid-ulp3X0UM3u .mbr-section-btn .btn-secondary-outline .active,
.cid-ulp3X0UM3u .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-ulp3X2dMs4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-ulp3X2dMs4 .mbr-section-subtitle,
.cid-ulp3X2dMs4 .caption-text {
  color: #8d97ad;
}
.cid-ulp3X2dMs4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X2dMs4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X2dMs4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X2dMs4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X2dMs4 .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X3ejn5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-ulp3X3ejn5 .mbr-section-subtitle,
.cid-ulp3X3ejn5 .caption-text {
  color: #8d97ad;
}
.cid-ulp3X3ejn5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X3ejn5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X3ejn5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X3ejn5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X3ejn5 .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X4MgAx {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-ulp3X4MgAx .mbr-section-subtitle,
.cid-ulp3X4MgAx .caption-text {
  color: #8d97ad;
}
.cid-ulp3X4MgAx .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X4MgAx .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X4MgAx .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X4MgAx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X4MgAx .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X5LzVZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp3X5LzVZ .mbr-section-subtitle,
.cid-ulp3X5LzVZ .caption-text {
  color: #8d97ad;
}
.cid-ulp3X5LzVZ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X5LzVZ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X5LzVZ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X5LzVZ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X5LzVZ .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X6wtE4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp3X6wtE4 .mbr-section-subtitle,
.cid-ulp3X6wtE4 .caption-text {
  color: #8d97ad;
}
.cid-ulp3X6wtE4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X6wtE4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X6wtE4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X6wtE4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X6wtE4 .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X7woas {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp3X7woas .mbr-section-subtitle,
.cid-ulp3X7woas .caption-text {
  color: #8d97ad;
}
.cid-ulp3X7woas .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp3X7woas .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp3X7woas .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp3X7woas .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp3X7woas .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp8zTv9C8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp8zTv9C8 .mbr-section-subtitle,
.cid-ulp8zTv9C8 .caption-text {
  color: #8d97ad;
}
.cid-ulp8zTv9C8 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp8zTv9C8 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp8zTv9C8 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp8zTv9C8 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp8zTv9C8 .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp9bvgDtP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp9bvgDtP .mbr-section-subtitle,
.cid-ulp9bvgDtP .caption-text {
  color: #8d97ad;
}
.cid-ulp9bvgDtP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp9bvgDtP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp9bvgDtP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp9bvgDtP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp9bvgDtP .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp9I5NfmY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulp9I5NfmY .mbr-section-subtitle,
.cid-ulp9I5NfmY .caption-text {
  color: #8d97ad;
}
.cid-ulp9I5NfmY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulp9I5NfmY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulp9I5NfmY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulp9I5NfmY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulp9I5NfmY .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpacwsp4U {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpacwsp4U .mbr-section-subtitle,
.cid-ulpacwsp4U .caption-text {
  color: #8d97ad;
}
.cid-ulpacwsp4U .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpacwsp4U .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpacwsp4U .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpacwsp4U .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpacwsp4U .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpbiztElm {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpbiztElm .mbr-section-subtitle,
.cid-ulpbiztElm .caption-text {
  color: #8d97ad;
}
.cid-ulpbiztElm .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpbiztElm .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpbiztElm .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpbiztElm .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpbiztElm .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpbYragqi {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpbYragqi .mbr-section-subtitle,
.cid-ulpbYragqi .caption-text {
  color: #8d97ad;
}
.cid-ulpbYragqi .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpbYragqi .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpbYragqi .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpbYragqi .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpbYragqi .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpcxcc66K {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpcxcc66K .mbr-section-subtitle,
.cid-ulpcxcc66K .caption-text {
  color: #8d97ad;
}
.cid-ulpcxcc66K .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpcxcc66K .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpcxcc66K .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpcxcc66K .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpcxcc66K .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpda60V07 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpda60V07 .mbr-section-subtitle,
.cid-ulpda60V07 .caption-text {
  color: #8d97ad;
}
.cid-ulpda60V07 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpda60V07 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpda60V07 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpda60V07 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpda60V07 .mbr-section-subtitle {
  color: #333333;
}
.cid-ulpe8seAip {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-ulpe8seAip .mbr-section-subtitle,
.cid-ulpe8seAip .caption-text {
  color: #8d97ad;
}
.cid-ulpe8seAip .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ulpe8seAip .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ulpe8seAip .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ulpe8seAip .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ulpe8seAip .mbr-section-subtitle {
  color: #333333;
}
.cid-ulp3X8BlDf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ulp3X9sV8a {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2KErQNlR {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2KErQNlR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2KErQNlR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2KErQNlR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2KErQNlR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2KErQNlR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2KErQNlR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2KErQNlR .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-uI2KErQNlR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2KErQNlR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2KErQNlR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2KErQNlR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2KErQNlR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2KErQNlR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2KErQNlR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um931845Gp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-um931845Gp .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-um931845Gp .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-um931845Gp .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-um931845Gp .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-um931845Gp .mbr-section-title,
.cid-um931845Gp .card_topic {
  margin-bottom: 12px;
}
.cid-um931845Gp .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-um931845Gp .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-um931845Gp .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-um931845Gp .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-um931845Gp .category_content,
.cid-um931845Gp .date,
.cid-um931845Gp .name_author {
  opacity: .8;
}
.cid-um931845Gp .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-um931845Gp .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-um931845Gp .item-img,
.cid-um931845Gp img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-um931845Gp .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-um931845Gp .item-img {
    margin-bottom: 20px;
  }
}
.cid-um931845Gp .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-um931845Gp .mbr-section-btn .btn-secondary-outline:hover,
.cid-um931845Gp .mbr-section-btn .btn-secondary-outline .active,
.cid-um931845Gp .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-um9318yvVr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um9318yvVr .mbr-section-subtitle,
.cid-um9318yvVr .caption-text {
  color: #8d97ad;
}
.cid-um9318yvVr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um9318yvVr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um9318yvVr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um9318yvVr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um9318yvVr .mbr-section-subtitle {
  color: #333333;
}
.cid-um9318Y2da {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um9318Y2da .mbr-section-subtitle,
.cid-um9318Y2da .caption-text {
  color: #8d97ad;
}
.cid-um9318Y2da .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um9318Y2da .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um9318Y2da .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um9318Y2da .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um9318Y2da .mbr-section-subtitle {
  color: #333333;
}
.cid-um931aryZJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um931aryZJ .mbr-section-subtitle,
.cid-um931aryZJ .caption-text {
  color: #8d97ad;
}
.cid-um931aryZJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um931aryZJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um931aryZJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um931aryZJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um931aryZJ .mbr-section-subtitle {
  color: #333333;
}
.cid-um95X2FvxZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um95X2FvxZ .mbr-section-subtitle,
.cid-um95X2FvxZ .caption-text {
  color: #8d97ad;
}
.cid-um95X2FvxZ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um95X2FvxZ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um95X2FvxZ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um95X2FvxZ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um95X2FvxZ .mbr-section-subtitle {
  color: #333333;
}
.cid-um96oHTXiZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um96oHTXiZ .mbr-section-subtitle,
.cid-um96oHTXiZ .caption-text {
  color: #8d97ad;
}
.cid-um96oHTXiZ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um96oHTXiZ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um96oHTXiZ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um96oHTXiZ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um96oHTXiZ .mbr-section-subtitle {
  color: #333333;
}
.cid-um96OjjJzB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um96OjjJzB .mbr-section-subtitle,
.cid-um96OjjJzB .caption-text {
  color: #8d97ad;
}
.cid-um96OjjJzB .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um96OjjJzB .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um96OjjJzB .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um96OjjJzB .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um96OjjJzB .mbr-section-subtitle {
  color: #333333;
}
.cid-um97lOlvpX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um97lOlvpX .mbr-section-subtitle,
.cid-um97lOlvpX .caption-text {
  color: #8d97ad;
}
.cid-um97lOlvpX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um97lOlvpX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um97lOlvpX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um97lOlvpX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um97lOlvpX .mbr-section-subtitle {
  color: #333333;
}
.cid-um984esAgc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um984esAgc .mbr-section-subtitle,
.cid-um984esAgc .caption-text {
  color: #8d97ad;
}
.cid-um984esAgc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um984esAgc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um984esAgc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um984esAgc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um984esAgc .mbr-section-subtitle {
  color: #333333;
}
.cid-um98Q658CG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um98Q658CG .mbr-section-subtitle,
.cid-um98Q658CG .caption-text {
  color: #8d97ad;
}
.cid-um98Q658CG .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um98Q658CG .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um98Q658CG .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um98Q658CG .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um98Q658CG .mbr-section-subtitle {
  color: #333333;
}
.cid-um99rWpzC1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um99rWpzC1 .mbr-section-subtitle,
.cid-um99rWpzC1 .caption-text {
  color: #8d97ad;
}
.cid-um99rWpzC1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um99rWpzC1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um99rWpzC1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um99rWpzC1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um99rWpzC1 .mbr-section-subtitle {
  color: #333333;
}
.cid-um99RV70kS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um99RV70kS .mbr-section-subtitle,
.cid-um99RV70kS .caption-text {
  color: #8d97ad;
}
.cid-um99RV70kS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um99RV70kS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um99RV70kS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um99RV70kS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um99RV70kS .mbr-section-subtitle {
  color: #333333;
}
.cid-um9aop0TAy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-um9aop0TAy .mbr-section-subtitle,
.cid-um9aop0TAy .caption-text {
  color: #8d97ad;
}
.cid-um9aop0TAy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-um9aop0TAy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-um9aop0TAy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-um9aop0TAy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-um9aop0TAy .mbr-section-subtitle {
  color: #333333;
}
.cid-um9bnAei1O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-um931bh5AA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JwmqKJQ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JwmqKJQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JwmqKJQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JwmqKJQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JwmqKJQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JwmqKJQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JwmqKJQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JwmqKJQ .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-uI2JwmqKJQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JwmqKJQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JwmqKJQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JwmqKJQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JwmqKJQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JwmqKJQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JwmqKJQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo2HIRnOwY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo2HIRnOwY .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uo2HIRnOwY .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uo2HIRnOwY .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uo2HIRnOwY .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uo2HIRnOwY .mbr-section-title,
.cid-uo2HIRnOwY .card_topic {
  margin-bottom: 12px;
}
.cid-uo2HIRnOwY .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uo2HIRnOwY .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uo2HIRnOwY .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uo2HIRnOwY .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uo2HIRnOwY .category_content,
.cid-uo2HIRnOwY .date,
.cid-uo2HIRnOwY .name_author {
  opacity: .8;
}
.cid-uo2HIRnOwY .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uo2HIRnOwY .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uo2HIRnOwY .item-img,
.cid-uo2HIRnOwY img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uo2HIRnOwY .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uo2HIRnOwY .item-img {
    margin-bottom: 20px;
  }
}
.cid-uo2HIRnOwY .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uo2HIRnOwY .mbr-section-btn .btn-secondary-outline:hover,
.cid-uo2HIRnOwY .mbr-section-btn .btn-secondary-outline .active,
.cid-uo2HIRnOwY .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uo2MCAe7kt {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo2MCAe7kt .mbr-section-subtitle,
.cid-uo2MCAe7kt .caption-text {
  color: #8d97ad;
}
.cid-uo2MCAe7kt .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo2MCAe7kt .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo2MCAe7kt .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo2MCAe7kt .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo2MCAe7kt .mbr-section-subtitle {
  color: #333333;
}
.cid-uo2OvTQJYY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo2OvTQJYY .mbr-section-subtitle,
.cid-uo2OvTQJYY .caption-text {
  color: #8d97ad;
}
.cid-uo2OvTQJYY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo2OvTQJYY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo2OvTQJYY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo2OvTQJYY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo2OvTQJYY .mbr-section-subtitle {
  color: #333333;
}
.cid-uo2PGk803Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo2PGk803Z .mbr-section-subtitle,
.cid-uo2PGk803Z .caption-text {
  color: #8d97ad;
}
.cid-uo2PGk803Z .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo2PGk803Z .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo2PGk803Z .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo2PGk803Z .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo2PGk803Z .mbr-section-subtitle {
  color: #333333;
}
.cid-uo2ZpgoYy7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo2ZpgoYy7 .mbr-section-subtitle,
.cid-uo2ZpgoYy7 .caption-text {
  color: #8d97ad;
}
.cid-uo2ZpgoYy7 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo2ZpgoYy7 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo2ZpgoYy7 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo2ZpgoYy7 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo2ZpgoYy7 .mbr-section-subtitle {
  color: #333333;
}
.cid-uo30qtPOh3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo30qtPOh3 .mbr-section-subtitle,
.cid-uo30qtPOh3 .caption-text {
  color: #8d97ad;
}
.cid-uo30qtPOh3 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo30qtPOh3 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo30qtPOh3 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo30qtPOh3 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo30qtPOh3 .mbr-section-subtitle {
  color: #333333;
}
.cid-uo31bJeta5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uo31bJeta5 .mbr-section-subtitle,
.cid-uo31bJeta5 .caption-text {
  color: #8d97ad;
}
.cid-uo31bJeta5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uo31bJeta5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uo31bJeta5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uo31bJeta5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uo31bJeta5 .mbr-section-subtitle {
  color: #333333;
}
.cid-uo2HIZ6qOn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo2HIZ6qOn h2,
.cid-uo2HIZ6qOn h3,
.cid-uo2HIZ6qOn h4,
.cid-uo2HIZ6qOn p {
  margin: 0;
}
.cid-uo2HIZ6qOn .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uo2HIZ6qOn .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uo2HIZ6qOn .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uo31PVL7rm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Jqmz6MY {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Jqmz6MY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jqmz6MY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jqmz6MY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Jqmz6MY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Jqmz6MY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Jqmz6MY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Jqmz6MY .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-uI2Jqmz6MY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Jqmz6MY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Jqmz6MY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Jqmz6MY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Jqmz6MY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Jqmz6MY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Jqmz6MY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upmjHapc7u {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upmjHapc7u .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-upmjHapc7u .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-upmjHapc7u .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-upmjHapc7u .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-upmjHapc7u .mbr-section-title,
.cid-upmjHapc7u .card_topic {
  margin-bottom: 12px;
}
.cid-upmjHapc7u .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-upmjHapc7u .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-upmjHapc7u .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-upmjHapc7u .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-upmjHapc7u .category_content,
.cid-upmjHapc7u .date,
.cid-upmjHapc7u .name_author {
  opacity: .8;
}
.cid-upmjHapc7u .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-upmjHapc7u .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-upmjHapc7u .item-img,
.cid-upmjHapc7u img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-upmjHapc7u .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-upmjHapc7u .item-img {
    margin-bottom: 20px;
  }
}
.cid-upmjHapc7u .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-upmjHapc7u .mbr-section-btn .btn-secondary-outline:hover,
.cid-upmjHapc7u .mbr-section-btn .btn-secondary-outline .active,
.cid-upmjHapc7u .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-upmjHb4Bn4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmjHb4Bn4 .mbr-section-subtitle,
.cid-upmjHb4Bn4 .caption-text {
  color: #8d97ad;
}
.cid-upmjHb4Bn4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmjHb4Bn4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmjHb4Bn4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmjHb4Bn4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmjHb4Bn4 .mbr-section-subtitle {
  color: #333333;
}
.cid-upmjHbw0oc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmjHbw0oc .mbr-section-subtitle,
.cid-upmjHbw0oc .caption-text {
  color: #8d97ad;
}
.cid-upmjHbw0oc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmjHbw0oc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmjHbw0oc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmjHbw0oc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmjHbw0oc .mbr-section-subtitle {
  color: #333333;
}
.cid-upmjHdcI6y {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmjHdcI6y .mbr-section-subtitle,
.cid-upmjHdcI6y .caption-text {
  color: #8d97ad;
}
.cid-upmjHdcI6y .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmjHdcI6y .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmjHdcI6y .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmjHdcI6y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmjHdcI6y .mbr-section-subtitle {
  color: #333333;
}
.cid-upmv9ZZUmx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmv9ZZUmx .mbr-section-subtitle,
.cid-upmv9ZZUmx .caption-text {
  color: #8d97ad;
}
.cid-upmv9ZZUmx .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmv9ZZUmx .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmv9ZZUmx .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmv9ZZUmx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmv9ZZUmx .mbr-section-subtitle {
  color: #333333;
}
.cid-upmw5uEwJj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmw5uEwJj .mbr-section-subtitle,
.cid-upmw5uEwJj .caption-text {
  color: #8d97ad;
}
.cid-upmw5uEwJj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmw5uEwJj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmw5uEwJj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmw5uEwJj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmw5uEwJj .mbr-section-subtitle {
  color: #333333;
}
.cid-upmwObkkdp {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmwObkkdp .mbr-section-subtitle,
.cid-upmwObkkdp .caption-text {
  color: #8d97ad;
}
.cid-upmwObkkdp .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmwObkkdp .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmwObkkdp .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmwObkkdp .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmwObkkdp .mbr-section-subtitle {
  color: #333333;
}
.cid-upmyHUDH1Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmyHUDH1Y .mbr-section-subtitle,
.cid-upmyHUDH1Y .caption-text {
  color: #8d97ad;
}
.cid-upmyHUDH1Y .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmyHUDH1Y .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmyHUDH1Y .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmyHUDH1Y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmyHUDH1Y .mbr-section-subtitle {
  color: #333333;
}
.cid-upmzjKMAbV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmzjKMAbV .mbr-section-subtitle,
.cid-upmzjKMAbV .caption-text {
  color: #8d97ad;
}
.cid-upmzjKMAbV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmzjKMAbV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmzjKMAbV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmzjKMAbV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmzjKMAbV .mbr-section-subtitle {
  color: #333333;
}
.cid-upmzROHWBN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmzROHWBN .mbr-section-subtitle,
.cid-upmzROHWBN .caption-text {
  color: #8d97ad;
}
.cid-upmzROHWBN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmzROHWBN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmzROHWBN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmzROHWBN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmzROHWBN .mbr-section-subtitle {
  color: #333333;
}
.cid-upmAwn7YrX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-upmAwn7YrX .mbr-section-subtitle,
.cid-upmAwn7YrX .caption-text {
  color: #8d97ad;
}
.cid-upmAwn7YrX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-upmAwn7YrX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-upmAwn7YrX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-upmAwn7YrX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-upmAwn7YrX .mbr-section-subtitle {
  color: #333333;
}
.cid-upmB5Add3L {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-upmjHe7nao {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Juw5ABh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Juw5ABh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Juw5ABh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Juw5ABh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Juw5ABh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Juw5ABh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Juw5ABh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Juw5ABh .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-uI2Juw5ABh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Juw5ABh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Juw5ABh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Juw5ABh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Juw5ABh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Juw5ABh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Juw5ABh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAEpqzW84 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAEpqzW84 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uqAEpqzW84 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqAEpqzW84 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uqAEpqzW84 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uqAEpqzW84 .mbr-section-title,
.cid-uqAEpqzW84 .card_topic {
  margin-bottom: 12px;
}
.cid-uqAEpqzW84 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uqAEpqzW84 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uqAEpqzW84 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uqAEpqzW84 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uqAEpqzW84 .category_content,
.cid-uqAEpqzW84 .date,
.cid-uqAEpqzW84 .name_author {
  opacity: .8;
}
.cid-uqAEpqzW84 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uqAEpqzW84 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uqAEpqzW84 .item-img,
.cid-uqAEpqzW84 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uqAEpqzW84 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uqAEpqzW84 .item-img {
    margin-bottom: 20px;
  }
}
.cid-uqAEpqzW84 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uqAEpqzW84 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uqAEpqzW84 .mbr-section-btn .btn-secondary-outline .active,
.cid-uqAEpqzW84 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uqAFLIkkUH {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAFLIkkUH .mbr-section-subtitle,
.cid-uqAFLIkkUH .caption-text {
  color: #8d97ad;
}
.cid-uqAFLIkkUH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAFLIkkUH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAFLIkkUH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAFLIkkUH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAFLIkkUH .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAGx6hJc9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAGx6hJc9 .mbr-section-subtitle,
.cid-uqAGx6hJc9 .caption-text {
  color: #8d97ad;
}
.cid-uqAGx6hJc9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAGx6hJc9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAGx6hJc9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAGx6hJc9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAGx6hJc9 .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAH922OQB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAH922OQB .mbr-section-subtitle,
.cid-uqAH922OQB .caption-text {
  color: #8d97ad;
}
.cid-uqAH922OQB .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAH922OQB .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAH922OQB .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAH922OQB .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAH922OQB .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAHLCs9GC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAHLCs9GC .mbr-section-subtitle,
.cid-uqAHLCs9GC .caption-text {
  color: #8d97ad;
}
.cid-uqAHLCs9GC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAHLCs9GC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAHLCs9GC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAHLCs9GC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAHLCs9GC .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAIrz3zmI {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAIrz3zmI .mbr-section-subtitle,
.cid-uqAIrz3zmI .caption-text {
  color: #8d97ad;
}
.cid-uqAIrz3zmI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAIrz3zmI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAIrz3zmI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAIrz3zmI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAIrz3zmI .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAJ9dDRsx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uqAJ9dDRsx .mbr-section-subtitle,
.cid-uqAJ9dDRsx .caption-text {
  color: #8d97ad;
}
.cid-uqAJ9dDRsx .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uqAJ9dDRsx .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uqAJ9dDRsx .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uqAJ9dDRsx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uqAJ9dDRsx .mbr-section-subtitle {
  color: #333333;
}
.cid-uqAEpyYwIU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAEpyYwIU h2,
.cid-uqAEpyYwIU h3,
.cid-uqAEpyYwIU h4,
.cid-uqAEpyYwIU p {
  margin: 0;
}
.cid-uqAEpyYwIU .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uqAEpyYwIU .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uqAEpyYwIU .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uqAKPrt1Qt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JlKrNHN {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JlKrNHN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JlKrNHN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JlKrNHN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JlKrNHN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JlKrNHN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JlKrNHN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JlKrNHN .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-uI2JlKrNHN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JlKrNHN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JlKrNHN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JlKrNHN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JlKrNHN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JlKrNHN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JlKrNHN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urOYyRgC1X {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urOYyRgC1X .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-urOYyRgC1X .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-urOYyRgC1X .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-urOYyRgC1X .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-urOYyRgC1X .mbr-section-title,
.cid-urOYyRgC1X .card_topic {
  margin-bottom: 12px;
}
.cid-urOYyRgC1X .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-urOYyRgC1X .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-urOYyRgC1X .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-urOYyRgC1X .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-urOYyRgC1X .category_content,
.cid-urOYyRgC1X .date,
.cid-urOYyRgC1X .name_author {
  opacity: .8;
}
.cid-urOYyRgC1X .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-urOYyRgC1X .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-urOYyRgC1X .item-img,
.cid-urOYyRgC1X img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-urOYyRgC1X .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-urOYyRgC1X .item-img {
    margin-bottom: 20px;
  }
}
.cid-urOYyRgC1X .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-urOYyRgC1X .mbr-section-btn .btn-secondary-outline:hover,
.cid-urOYyRgC1X .mbr-section-btn .btn-secondary-outline .active,
.cid-urOYyRgC1X .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-urOYyRJ75R {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-urOYyRJ75R .mbr-section-subtitle,
.cid-urOYyRJ75R .caption-text {
  color: #8d97ad;
}
.cid-urOYyRJ75R .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-urOYyRJ75R .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-urOYyRJ75R .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-urOYyRJ75R .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-urOYyRJ75R .mbr-section-subtitle {
  color: #333333;
}
.cid-urP0bwsNbF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-urP0bwsNbF .mbr-section-subtitle,
.cid-urP0bwsNbF .caption-text {
  color: #8d97ad;
}
.cid-urP0bwsNbF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-urP0bwsNbF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-urP0bwsNbF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-urP0bwsNbF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-urP0bwsNbF .mbr-section-subtitle {
  color: #333333;
}
.cid-urOYyS6k94 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-urOYyS6k94 .mbr-section-subtitle,
.cid-urOYyS6k94 .caption-text {
  color: #8d97ad;
}
.cid-urOYyS6k94 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-urOYyS6k94 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-urOYyS6k94 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-urOYyS6k94 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-urOYyS6k94 .mbr-section-subtitle {
  color: #333333;
}
.cid-urOYySvQzr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-urOYySvQzr .mbr-section-subtitle,
.cid-urOYySvQzr .caption-text {
  color: #8d97ad;
}
.cid-urOYySvQzr .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-urOYySvQzr .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-urOYySvQzr .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-urOYySvQzr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-urOYySvQzr .mbr-section-subtitle {
  color: #333333;
}
.cid-urOYyUlpp4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urOYyUlpp4 h2,
.cid-urOYyUlpp4 h3,
.cid-urOYyUlpp4 h4,
.cid-urOYyUlpp4 p {
  margin: 0;
}
.cid-urOYyUlpp4 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-urOYyUlpp4 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-urOYyUlpp4 .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-urOYyUOozK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Jo4vVBY {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Jo4vVBY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jo4vVBY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jo4vVBY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Jo4vVBY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Jo4vVBY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Jo4vVBY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Jo4vVBY .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-uI2Jo4vVBY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Jo4vVBY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Jo4vVBY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Jo4vVBY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Jo4vVBY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Jo4vVBY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Jo4vVBY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utTeR5hOzy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utTeR5hOzy .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-utTeR5hOzy .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-utTeR5hOzy .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-utTeR5hOzy .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-utTeR5hOzy .mbr-section-title,
.cid-utTeR5hOzy .card_topic {
  margin-bottom: 12px;
}
.cid-utTeR5hOzy .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-utTeR5hOzy .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-utTeR5hOzy .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-utTeR5hOzy .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-utTeR5hOzy .category_content,
.cid-utTeR5hOzy .date,
.cid-utTeR5hOzy .name_author {
  opacity: .8;
}
.cid-utTeR5hOzy .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-utTeR5hOzy .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-utTeR5hOzy .item-img,
.cid-utTeR5hOzy img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-utTeR5hOzy .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-utTeR5hOzy .item-img {
    margin-bottom: 20px;
  }
}
.cid-utTeR5hOzy .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-utTeR5hOzy .mbr-section-btn .btn-secondary-outline:hover,
.cid-utTeR5hOzy .mbr-section-btn .btn-secondary-outline .active,
.cid-utTeR5hOzy .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-utTgMmJd7N {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-utTgMmJd7N .mbr-section-subtitle,
.cid-utTgMmJd7N .caption-text {
  color: #8d97ad;
}
.cid-utTgMmJd7N .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-utTgMmJd7N .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-utTgMmJd7N .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-utTgMmJd7N .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utTgMmJd7N .mbr-section-subtitle {
  color: #333333;
}
.cid-utTh0kRFTw {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-utTh0kRFTw .mbr-section-subtitle,
.cid-utTh0kRFTw .caption-text {
  color: #8d97ad;
}
.cid-utTh0kRFTw .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-utTh0kRFTw .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-utTh0kRFTw .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-utTh0kRFTw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utTh0kRFTw .mbr-section-subtitle {
  color: #333333;
}
.cid-utYmw13M5w {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-utYmw13M5w .mbr-section-subtitle,
.cid-utYmw13M5w .caption-text {
  color: #8d97ad;
}
.cid-utYmw13M5w .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-utYmw13M5w .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-utYmw13M5w .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-utYmw13M5w .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utYmw13M5w .mbr-section-subtitle {
  color: #333333;
}
.cid-utZimlb5Sb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-utZimlb5Sb .row {
  align-items: stretch;
  justify-content: center;
}
.cid-utZimlb5Sb .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-utZimlb5Sb .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-utZimlb5Sb .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-utYwjk79of {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-utYwjk79of .mbr-section-subtitle,
.cid-utYwjk79of .caption-text {
  color: #8d97ad;
}
.cid-utYwjk79of .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-utYwjk79of .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-utYwjk79of .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-utYwjk79of .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utYwjk79of .mbr-section-subtitle {
  color: #333333;
}
.cid-utYxF1SizP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-utYxF1SizP .mbr-section-subtitle,
.cid-utYxF1SizP .caption-text {
  color: #8d97ad;
}
.cid-utYxF1SizP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-utYxF1SizP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-utYxF1SizP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-utYxF1SizP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-utYxF1SizP .mbr-section-subtitle {
  color: #333333;
}
.cid-utTeRiqIDl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utTeRiqIDl h2,
.cid-utTeRiqIDl h3,
.cid-utTeRiqIDl h4,
.cid-utTeRiqIDl p {
  margin: 0;
}
.cid-utTeRiqIDl .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-utTeRiqIDl .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-utTeRiqIDl .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-utZvSQIoZN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2IWauyBd {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2IWauyBd .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2IWauyBd .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2IWauyBd .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2IWauyBd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2IWauyBd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2IWauyBd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2IWauyBd .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-uI2IWauyBd .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2IWauyBd .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2IWauyBd .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2IWauyBd .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2IWauyBd .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2IWauyBd .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2IWauyBd .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv6nGFRVQd {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uv6nGFRVQd .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uv6nGFRVQd .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uv6nGFRVQd .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uv6nGFRVQd .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uv6nGFRVQd .mbr-section-title,
.cid-uv6nGFRVQd .card_topic {
  margin-bottom: 12px;
}
.cid-uv6nGFRVQd .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uv6nGFRVQd .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uv6nGFRVQd .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uv6nGFRVQd .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uv6nGFRVQd .category_content,
.cid-uv6nGFRVQd .date,
.cid-uv6nGFRVQd .name_author {
  opacity: .8;
}
.cid-uv6nGFRVQd .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uv6nGFRVQd .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uv6nGFRVQd .item-img,
.cid-uv6nGFRVQd img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uv6nGFRVQd .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uv6nGFRVQd .item-img {
    margin-bottom: 20px;
  }
}
.cid-uv6nGFRVQd .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uv6nGFRVQd .mbr-section-btn .btn-secondary-outline:hover,
.cid-uv6nGFRVQd .mbr-section-btn .btn-secondary-outline .active,
.cid-uv6nGFRVQd .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uv6nGH67dW {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6nGH67dW .mbr-section-subtitle,
.cid-uv6nGH67dW .caption-text {
  color: #8d97ad;
}
.cid-uv6nGH67dW .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6nGH67dW .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6nGH67dW .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6nGH67dW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6nGH67dW .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6nGHZJOb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6nGHZJOb .mbr-section-subtitle,
.cid-uv6nGHZJOb .caption-text {
  color: #8d97ad;
}
.cid-uv6nGHZJOb .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6nGHZJOb .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6nGHZJOb .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6nGHZJOb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6nGHZJOb .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6nGIURv0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6nGIURv0 .mbr-section-subtitle,
.cid-uv6nGIURv0 .caption-text {
  color: #8d97ad;
}
.cid-uv6nGIURv0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6nGIURv0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6nGIURv0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6nGIURv0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6nGIURv0 .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6nGLcwgI {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6nGLcwgI .mbr-section-subtitle,
.cid-uv6nGLcwgI .caption-text {
  color: #8d97ad;
}
.cid-uv6nGLcwgI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6nGLcwgI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6nGLcwgI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6nGLcwgI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6nGLcwgI .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6nGMiAYa {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6nGMiAYa .mbr-section-subtitle,
.cid-uv6nGMiAYa .caption-text {
  color: #8d97ad;
}
.cid-uv6nGMiAYa .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6nGMiAYa .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6nGMiAYa .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6nGMiAYa .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6nGMiAYa .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6Hl9mjJV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uv6Hl9mjJV .mbr-text {
  color: #767676;
}
.cid-uv6Hl9mjJV .card-subtitle {
  margin: 0;
}
.cid-uv6Hl9mjJV .link {
  margin: 0;
}
.cid-uv6Hl9mjJV .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uv6Hl9mjJV .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-uv6Hl9mjJV .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}
.cid-uv6Hl9mjJV .item {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-uv6Hl9mjJV .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem !important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-uv6Hl9mjJV .date {
  margin: 0;
}
.cid-uv6Hl9mjJV img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-uv6Hl9mjJV .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-uv6Hl9mjJV .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-uv6Hl9mjJV .card-img:hover:before {
  opacity: 0.4;
}
.cid-uv6Hl9mjJV .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uv6Hl9mjJV .icon-box {
    flex-direction: column;
  }
  .cid-uv6Hl9mjJV .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-uv6Hl9mjJV .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv6Hl9mjJV .card {
    margin-bottom: 3rem;
  }
}
.cid-uv6Hl9mjJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv6Hl9mjJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv6Hl9mjJV .card-title,
.cid-uv6Hl9mjJV .card-img {
  color: #c1c1c1;
}
.cid-uv6LaV7MkE {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uv6LaV7MkE .mbr-section-subtitle,
.cid-uv6LaV7MkE .caption-text {
  color: #8d97ad;
}
.cid-uv6LaV7MkE .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uv6LaV7MkE .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uv6LaV7MkE .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uv6LaV7MkE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uv6LaV7MkE .mbr-section-subtitle {
  color: #333333;
}
.cid-uv6nGNokDb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uv6nGNokDb h2,
.cid-uv6nGNokDb h3,
.cid-uv6nGNokDb h4,
.cid-uv6nGNokDb p {
  margin: 0;
}
.cid-uv6nGNokDb .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uv6nGNokDb .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uv6nGNokDb .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uv6nGOvKJb {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JjRdyqQ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JjRdyqQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JjRdyqQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JjRdyqQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JjRdyqQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JjRdyqQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JjRdyqQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JjRdyqQ .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-uI2JjRdyqQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JjRdyqQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JjRdyqQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JjRdyqQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JjRdyqQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JjRdyqQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JjRdyqQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvY8ngMACS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvY8ngMACS .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uvY8ngMACS .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uvY8ngMACS .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uvY8ngMACS .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uvY8ngMACS .mbr-section-title,
.cid-uvY8ngMACS .card_topic {
  margin-bottom: 12px;
}
.cid-uvY8ngMACS .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uvY8ngMACS .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uvY8ngMACS .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uvY8ngMACS .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uvY8ngMACS .category_content,
.cid-uvY8ngMACS .date,
.cid-uvY8ngMACS .name_author {
  opacity: .8;
}
.cid-uvY8ngMACS .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uvY8ngMACS .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uvY8ngMACS .item-img,
.cid-uvY8ngMACS img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uvY8ngMACS .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uvY8ngMACS .item-img {
    margin-bottom: 20px;
  }
}
.cid-uvY8ngMACS .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uvY8ngMACS .mbr-section-btn .btn-secondary-outline:hover,
.cid-uvY8ngMACS .mbr-section-btn .btn-secondary-outline .active,
.cid-uvY8ngMACS .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uvY8nhNQXL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uvY8nhNQXL .mbr-section-subtitle,
.cid-uvY8nhNQXL .caption-text {
  color: #8d97ad;
}
.cid-uvY8nhNQXL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uvY8nhNQXL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uvY8nhNQXL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uvY8nhNQXL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uvY8nhNQXL .mbr-section-subtitle {
  color: #333333;
}
.cid-uvY8niAGSz {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uvY8niAGSz .mbr-section-subtitle,
.cid-uvY8niAGSz .caption-text {
  color: #8d97ad;
}
.cid-uvY8niAGSz .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uvY8niAGSz .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uvY8niAGSz .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uvY8niAGSz .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uvY8niAGSz .mbr-section-subtitle {
  color: #333333;
}
.cid-uvY8njo9D6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uvY8njo9D6 .mbr-section-subtitle,
.cid-uvY8njo9D6 .caption-text {
  color: #8d97ad;
}
.cid-uvY8njo9D6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uvY8njo9D6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uvY8njo9D6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uvY8njo9D6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uvY8njo9D6 .mbr-section-subtitle {
  color: #333333;
}
.cid-uvY8nkdZcC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvY8nkdZcC .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uvY8nkdZcC .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-uvY8nkdZcC .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-uvY8nkdZcC .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-uvYoxk2Ivw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvYoxk2Ivw .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uvYoxk2Ivw .row {
  justify-content: center;
}
.cid-uvYoxk2Ivw a {
  font-weight: 400 !important;
}
.cid-uvYom7J854 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvYom7J854 .mbr-text {
  color: #767676;
}
.cid-uvYom7J854 .card-subtitle {
  margin: 0;
}
.cid-uvYom7J854 .link {
  margin: 0;
}
.cid-uvYom7J854 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uvYom7J854 .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-uvYom7J854 .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}
.cid-uvYom7J854 .item {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-uvYom7J854 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem !important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-uvYom7J854 .date {
  margin: 0;
}
.cid-uvYom7J854 img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-uvYom7J854 .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-uvYom7J854 .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-uvYom7J854 .card-img:hover:before {
  opacity: 0.4;
}
.cid-uvYom7J854 .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uvYom7J854 .icon-box {
    flex-direction: column;
  }
  .cid-uvYom7J854 .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-uvYom7J854 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uvYom7J854 .card {
    margin-bottom: 3rem;
  }
}
.cid-uvYom7J854 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvYom7J854 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvY8nmXkAf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvY8nmXkAf h2,
.cid-uvY8nmXkAf h3,
.cid-uvY8nmXkAf h4,
.cid-uvY8nmXkAf p {
  margin: 0;
}
.cid-uvY8nmXkAf .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uvY8nmXkAf .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uvY8nmXkAf .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uvY8nnN9Zw {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JfHykr1 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JfHykr1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JfHykr1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JfHykr1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JfHykr1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JfHykr1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JfHykr1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JfHykr1 .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-uI2JfHykr1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JfHykr1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JfHykr1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JfHykr1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JfHykr1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JfHykr1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JfHykr1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw3GCxRh3a {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uw3GCxRh3a .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uw3GCxRh3a .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uw3GCxRh3a .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uw3GCxRh3a .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uw3GCxRh3a .mbr-section-title,
.cid-uw3GCxRh3a .card_topic {
  margin-bottom: 12px;
}
.cid-uw3GCxRh3a .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uw3GCxRh3a .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uw3GCxRh3a .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uw3GCxRh3a .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uw3GCxRh3a .category_content,
.cid-uw3GCxRh3a .date,
.cid-uw3GCxRh3a .name_author {
  opacity: .8;
}
.cid-uw3GCxRh3a .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uw3GCxRh3a .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uw3GCxRh3a .item-img,
.cid-uw3GCxRh3a img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uw3GCxRh3a .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uw3GCxRh3a .item-img {
    margin-bottom: 20px;
  }
}
.cid-uw3GCxRh3a .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uw3GCxRh3a .mbr-section-btn .btn-secondary-outline:hover,
.cid-uw3GCxRh3a .mbr-section-btn .btn-secondary-outline .active,
.cid-uw3GCxRh3a .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uw3GCzh0Sh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uw3GCzh0Sh .mbr-section-subtitle,
.cid-uw3GCzh0Sh .caption-text {
  color: #8d97ad;
}
.cid-uw3GCzh0Sh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uw3GCzh0Sh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uw3GCzh0Sh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uw3GCzh0Sh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uw3GCzh0Sh .mbr-section-subtitle {
  color: #333333;
}
.cid-uw3GCAZ6Uf {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uw3GCAZ6Uf .mbr-section-subtitle,
.cid-uw3GCAZ6Uf .caption-text {
  color: #8d97ad;
}
.cid-uw3GCAZ6Uf .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uw3GCAZ6Uf .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uw3GCAZ6Uf .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uw3GCAZ6Uf .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uw3GCAZ6Uf .mbr-section-subtitle {
  color: #333333;
}
.cid-uw3GCCcxW1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uw3GCCcxW1 .mbr-section-subtitle,
.cid-uw3GCCcxW1 .caption-text {
  color: #8d97ad;
}
.cid-uw3GCCcxW1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uw3GCCcxW1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uw3GCCcxW1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uw3GCCcxW1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uw3GCCcxW1 .mbr-section-subtitle {
  color: #333333;
}
.cid-uw437G9J6J {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uw437G9J6J .mbr-section-subtitle,
.cid-uw437G9J6J .caption-text {
  color: #8d97ad;
}
.cid-uw437G9J6J .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uw437G9J6J .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uw437G9J6J .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uw437G9J6J .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uw437G9J6J .mbr-section-subtitle {
  color: #333333;
}
.cid-uw44pbR8by {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uw44pbR8by .mbr-section-subtitle,
.cid-uw44pbR8by .caption-text {
  color: #8d97ad;
}
.cid-uw44pbR8by .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uw44pbR8by .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uw44pbR8by .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uw44pbR8by .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uw44pbR8by .mbr-section-subtitle {
  color: #333333;
}
.cid-uw3GCHeMyG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uw3GCHeMyG h2,
.cid-uw3GCHeMyG h3,
.cid-uw3GCHeMyG h4,
.cid-uw3GCHeMyG p {
  margin: 0;
}
.cid-uw3GCHeMyG .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uw3GCHeMyG .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uw3GCHeMyG .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uw3GCIefzL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2Jhufh0e {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2Jhufh0e .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jhufh0e .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2Jhufh0e .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2Jhufh0e .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2Jhufh0e .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2Jhufh0e .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2Jhufh0e .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-uI2Jhufh0e .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2Jhufh0e .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2Jhufh0e .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2Jhufh0e .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2Jhufh0e .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2Jhufh0e .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2Jhufh0e .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzlOeuqNET {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzlOeuqNET .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uzlOeuqNET .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uzlOeuqNET .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uzlOeuqNET .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uzlOeuqNET .mbr-section-title,
.cid-uzlOeuqNET .card_topic {
  margin-bottom: 12px;
}
.cid-uzlOeuqNET .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uzlOeuqNET .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uzlOeuqNET .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uzlOeuqNET .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uzlOeuqNET .category_content,
.cid-uzlOeuqNET .date,
.cid-uzlOeuqNET .name_author {
  opacity: .8;
}
.cid-uzlOeuqNET .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uzlOeuqNET .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uzlOeuqNET .item-img,
.cid-uzlOeuqNET img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uzlOeuqNET .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uzlOeuqNET .item-img {
    margin-bottom: 20px;
  }
}
.cid-uzlOeuqNET .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uzlOeuqNET .mbr-section-btn .btn-secondary-outline:hover,
.cid-uzlOeuqNET .mbr-section-btn .btn-secondary-outline .active,
.cid-uzlOeuqNET .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uzlOew7JhY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzlOew7JhY .mbr-section-subtitle,
.cid-uzlOew7JhY .caption-text {
  color: #8d97ad;
}
.cid-uzlOew7JhY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzlOew7JhY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzlOew7JhY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzlOew7JhY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzlOew7JhY .mbr-section-subtitle {
  color: #333333;
}
.cid-uzlOevpCbv {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzlOevpCbv .mbr-section-subtitle,
.cid-uzlOevpCbv .caption-text {
  color: #8d97ad;
}
.cid-uzlOevpCbv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzlOevpCbv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzlOevpCbv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzlOevpCbv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzlOevpCbv .mbr-section-subtitle {
  color: #333333;
}
.cid-uzlOewWoz0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzlOewWoz0 .mbr-section-subtitle,
.cid-uzlOewWoz0 .caption-text {
  color: #8d97ad;
}
.cid-uzlOewWoz0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzlOewWoz0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzlOewWoz0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzlOewWoz0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzlOewWoz0 .mbr-section-subtitle {
  color: #333333;
}
.cid-uzlOeyGrGw {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzlOeyGrGw .mbr-section-subtitle,
.cid-uzlOeyGrGw .caption-text {
  color: #8d97ad;
}
.cid-uzlOeyGrGw .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzlOeyGrGw .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzlOeyGrGw .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzlOeyGrGw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzlOeyGrGw .mbr-section-subtitle {
  color: #333333;
}
.cid-uzlOezFclD {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzlOezFclD .mbr-section-subtitle,
.cid-uzlOezFclD .caption-text {
  color: #8d97ad;
}
.cid-uzlOezFclD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzlOezFclD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzlOezFclD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzlOezFclD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzlOezFclD .mbr-section-subtitle {
  color: #333333;
}
.cid-uzmz1ZWM4Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzmz1ZWM4Y .mbr-section-subtitle,
.cid-uzmz1ZWM4Y .caption-text {
  color: #8d97ad;
}
.cid-uzmz1ZWM4Y .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzmz1ZWM4Y .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzmz1ZWM4Y .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzmz1ZWM4Y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzmz1ZWM4Y .mbr-section-subtitle {
  color: #333333;
}
.cid-uzmzojxwIR {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzmzojxwIR .mbr-section-subtitle,
.cid-uzmzojxwIR .caption-text {
  color: #8d97ad;
}
.cid-uzmzojxwIR .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzmzojxwIR .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzmzojxwIR .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzmzojxwIR .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzmzojxwIR .mbr-section-subtitle {
  color: #333333;
}
.cid-uzmzPwaiZg {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzmzPwaiZg .mbr-section-subtitle,
.cid-uzmzPwaiZg .caption-text {
  color: #8d97ad;
}
.cid-uzmzPwaiZg .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzmzPwaiZg .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzmzPwaiZg .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzmzPwaiZg .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzmzPwaiZg .mbr-section-subtitle {
  color: #333333;
}
.cid-uzmA6qsuhJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uzmA6qsuhJ .mbr-section-subtitle,
.cid-uzmA6qsuhJ .caption-text {
  color: #8d97ad;
}
.cid-uzmA6qsuhJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uzmA6qsuhJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uzmA6qsuhJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uzmA6qsuhJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uzmA6qsuhJ .mbr-section-subtitle {
  color: #333333;
}
.cid-uzlOeAr8jp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzlOeAr8jp h2,
.cid-uzlOeAr8jp h3,
.cid-uzlOeAr8jp h4,
.cid-uzlOeAr8jp p {
  margin: 0;
}
.cid-uzlOeAr8jp .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uzlOeAr8jp .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uzlOeAr8jp .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uzlOeBeCVT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2IZZoD8V {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2IZZoD8V .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2IZZoD8V .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2IZZoD8V .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2IZZoD8V .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2IZZoD8V .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2IZZoD8V .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2IZZoD8V .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-uI2IZZoD8V .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2IZZoD8V .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2IZZoD8V .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2IZZoD8V .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2IZZoD8V .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2IZZoD8V .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2IZZoD8V .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAoom72duF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAoom72duF .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uAoom72duF .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uAoom72duF .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uAoom72duF .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uAoom72duF .mbr-section-title,
.cid-uAoom72duF .card_topic {
  margin-bottom: 12px;
}
.cid-uAoom72duF .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uAoom72duF .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uAoom72duF .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uAoom72duF .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uAoom72duF .category_content,
.cid-uAoom72duF .date,
.cid-uAoom72duF .name_author {
  opacity: .8;
}
.cid-uAoom72duF .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uAoom72duF .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uAoom72duF .item-img,
.cid-uAoom72duF img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uAoom72duF .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uAoom72duF .item-img {
    margin-bottom: 20px;
  }
}
.cid-uAoom72duF .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uAoom72duF .mbr-section-btn .btn-secondary-outline:hover,
.cid-uAoom72duF .mbr-section-btn .btn-secondary-outline .active,
.cid-uAoom72duF .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uAoom7GYoh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uAoom7GYoh .mbr-section-subtitle,
.cid-uAoom7GYoh .caption-text {
  color: #8d97ad;
}
.cid-uAoom7GYoh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uAoom7GYoh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uAoom7GYoh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uAoom7GYoh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoom7GYoh .mbr-section-subtitle {
  color: #333333;
}
.cid-uAoom88Ibd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uAoom88Ibd .mbr-section-subtitle,
.cid-uAoom88Ibd .caption-text {
  color: #8d97ad;
}
.cid-uAoom88Ibd .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uAoom88Ibd .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uAoom88Ibd .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uAoom88Ibd .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoom88Ibd .mbr-section-subtitle {
  color: #333333;
}
.cid-uAoom8FyGj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uAoom8FyGj .mbr-section-subtitle,
.cid-uAoom8FyGj .caption-text {
  color: #8d97ad;
}
.cid-uAoom8FyGj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uAoom8FyGj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uAoom8FyGj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uAoom8FyGj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoom8FyGj .mbr-section-subtitle {
  color: #333333;
}
.cid-uAoom9rLgA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uAoom9rLgA .mbr-section-subtitle,
.cid-uAoom9rLgA .caption-text {
  color: #8d97ad;
}
.cid-uAoom9rLgA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uAoom9rLgA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uAoom9rLgA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uAoom9rLgA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoom9rLgA .mbr-section-subtitle {
  color: #333333;
}
.cid-uAooma0xwA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uAooma0xwA .mbr-section-subtitle,
.cid-uAooma0xwA .caption-text {
  color: #8d97ad;
}
.cid-uAooma0xwA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uAooma0xwA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uAooma0xwA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uAooma0xwA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAooma0xwA .mbr-section-subtitle {
  color: #333333;
}
.cid-uAoomcMa9q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAoomcMa9q h2,
.cid-uAoomcMa9q h3,
.cid-uAoomcMa9q h4,
.cid-uAoomcMa9q p {
  margin: 0;
}
.cid-uAoomcMa9q .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uAoomcMa9q .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uAoomcMa9q .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uAoomdlbqY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2JdBiDva {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2JdBiDva .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2JdBiDva .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2JdBiDva .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2JdBiDva .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2JdBiDva .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2JdBiDva .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2JdBiDva .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-uI2JdBiDva .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2JdBiDva .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2JdBiDva .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2JdBiDva .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2JdBiDva .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2JdBiDva .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2JdBiDva .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCsh6MBv9V {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCsh6MBv9V .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uCsh6MBv9V .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uCsh6MBv9V .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uCsh6MBv9V .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uCsh6MBv9V .mbr-section-title,
.cid-uCsh6MBv9V .card_topic {
  margin-bottom: 12px;
}
.cid-uCsh6MBv9V .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uCsh6MBv9V .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uCsh6MBv9V .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uCsh6MBv9V .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uCsh6MBv9V .category_content,
.cid-uCsh6MBv9V .date,
.cid-uCsh6MBv9V .name_author {
  opacity: .8;
}
.cid-uCsh6MBv9V .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uCsh6MBv9V .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uCsh6MBv9V .item-img,
.cid-uCsh6MBv9V img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uCsh6MBv9V .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uCsh6MBv9V .item-img {
    margin-bottom: 20px;
  }
}
.cid-uCsh6MBv9V .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uCsh6MBv9V .mbr-section-btn .btn-secondary-outline:hover,
.cid-uCsh6MBv9V .mbr-section-btn .btn-secondary-outline .active,
.cid-uCsh6MBv9V .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uCsh6N9CQc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uCsh6N9CQc .mbr-section-subtitle,
.cid-uCsh6N9CQc .caption-text {
  color: #8d97ad;
}
.cid-uCsh6N9CQc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uCsh6N9CQc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uCsh6N9CQc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uCsh6N9CQc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uCsh6N9CQc .mbr-section-subtitle {
  color: #333333;
}
.cid-uCsh6NCkEZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uCsh6NCkEZ .mbr-section-subtitle,
.cid-uCsh6NCkEZ .caption-text {
  color: #8d97ad;
}
.cid-uCsh6NCkEZ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uCsh6NCkEZ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uCsh6NCkEZ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uCsh6NCkEZ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uCsh6NCkEZ .mbr-section-subtitle {
  color: #333333;
}
.cid-uCsh6O3cos {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uCsh6O3cos .mbr-section-subtitle,
.cid-uCsh6O3cos .caption-text {
  color: #8d97ad;
}
.cid-uCsh6O3cos .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uCsh6O3cos .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uCsh6O3cos .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uCsh6O3cos .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uCsh6O3cos .mbr-section-subtitle {
  color: #333333;
}
.cid-uCsh6OwScO {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uCsh6OwScO .mbr-section-subtitle,
.cid-uCsh6OwScO .caption-text {
  color: #8d97ad;
}
.cid-uCsh6OwScO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uCsh6OwScO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uCsh6OwScO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uCsh6OwScO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uCsh6OwScO .mbr-section-subtitle {
  color: #333333;
}
.cid-uCsh6QYhw4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCsh6QYhw4 h2,
.cid-uCsh6QYhw4 h3,
.cid-uCsh6QYhw4 h4,
.cid-uCsh6QYhw4 p {
  margin: 0;
}
.cid-uCsh6QYhw4 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uCsh6QYhw4 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uCsh6QYhw4 .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uCsh6RrTb9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2J9Dhons {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2J9Dhons .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2J9Dhons .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2J9Dhons .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2J9Dhons .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2J9Dhons .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2J9Dhons .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2J9Dhons .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-uI2J9Dhons .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2J9Dhons .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2J9Dhons .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2J9Dhons .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2J9Dhons .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2J9Dhons .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2J9Dhons .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDoJKRAhoT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDoJKRAhoT .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uDoJKRAhoT .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uDoJKRAhoT .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uDoJKRAhoT .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uDoJKRAhoT .mbr-section-title,
.cid-uDoJKRAhoT .card_topic {
  margin-bottom: 12px;
}
.cid-uDoJKRAhoT .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uDoJKRAhoT .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uDoJKRAhoT .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uDoJKRAhoT .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uDoJKRAhoT .category_content,
.cid-uDoJKRAhoT .date,
.cid-uDoJKRAhoT .name_author {
  opacity: .8;
}
.cid-uDoJKRAhoT .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uDoJKRAhoT .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uDoJKRAhoT .item-img,
.cid-uDoJKRAhoT img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uDoJKRAhoT .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uDoJKRAhoT .item-img {
    margin-bottom: 20px;
  }
}
.cid-uDoJKRAhoT .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uDoJKRAhoT .mbr-section-btn .btn-secondary-outline:hover,
.cid-uDoJKRAhoT .mbr-section-btn .btn-secondary-outline .active,
.cid-uDoJKRAhoT .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uDoLHPqWXm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4f8fa;
}
.cid-uDoLHPqWXm .mbr-section-title {
  color: #000000;
}
.cid-uDoLHPqWXm .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uDoLHPqWXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDoLHPqWXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDoJKSAnlH {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKSAnlH .mbr-section-subtitle,
.cid-uDoJKSAnlH .caption-text {
  color: #8d97ad;
}
.cid-uDoJKSAnlH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKSAnlH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKSAnlH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKSAnlH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKSAnlH .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKTb8rI {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKTb8rI .mbr-section-subtitle,
.cid-uDoJKTb8rI .caption-text {
  color: #8d97ad;
}
.cid-uDoJKTb8rI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKTb8rI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKTb8rI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKTb8rI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKTb8rI .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKTYdAu {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKTYdAu .mbr-section-subtitle,
.cid-uDoJKTYdAu .caption-text {
  color: #8d97ad;
}
.cid-uDoJKTYdAu .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKTYdAu .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKTYdAu .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKTYdAu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKTYdAu .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKUOpwA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKUOpwA .mbr-section-subtitle,
.cid-uDoJKUOpwA .caption-text {
  color: #8d97ad;
}
.cid-uDoJKUOpwA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKUOpwA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKUOpwA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKUOpwA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKUOpwA .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKVA7j3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKVA7j3 .mbr-section-subtitle,
.cid-uDoJKVA7j3 .caption-text {
  color: #8d97ad;
}
.cid-uDoJKVA7j3 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKVA7j3 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKVA7j3 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKVA7j3 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKVA7j3 .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoQw5tAuf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4f8fa;
}
.cid-uDoQw5tAuf .mbr-section-title {
  color: #000000;
}
.cid-uDoQw5tAuf .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uDoQw5tAuf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDoQw5tAuf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDoJKWsCUY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKWsCUY .mbr-section-subtitle,
.cid-uDoJKWsCUY .caption-text {
  color: #8d97ad;
}
.cid-uDoJKWsCUY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKWsCUY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKWsCUY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKWsCUY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKWsCUY .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKXmw1k {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKXmw1k .mbr-section-subtitle,
.cid-uDoJKXmw1k .caption-text {
  color: #8d97ad;
}
.cid-uDoJKXmw1k .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKXmw1k .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKXmw1k .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKXmw1k .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKXmw1k .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoSDhQKek {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f4f8fa;
}
.cid-uDoSDhQKek .p {
  color: #000000;
  padding-top: 30px;
}
.cid-uDoSDhQKek .row {
  justify-content: center;
}
.cid-uDoSDhQKek a {
  font-weight: 400 !important;
}
.cid-uDoSDhQKek .card-heading {
  color: #000000;
}
.cid-uDoJKYc9Px {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKYc9Px .mbr-section-subtitle,
.cid-uDoJKYc9Px .caption-text {
  color: #8d97ad;
}
.cid-uDoJKYc9Px .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKYc9Px .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKYc9Px .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKYc9Px .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKYc9Px .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoJKZ3Zdn {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoJKZ3Zdn .mbr-section-subtitle,
.cid-uDoJKZ3Zdn .caption-text {
  color: #8d97ad;
}
.cid-uDoJKZ3Zdn .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoJKZ3Zdn .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoJKZ3Zdn .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoJKZ3Zdn .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoJKZ3Zdn .mbr-section-subtitle {
  color: #333333;
}
.cid-uDoUXsSOlG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uDoUXsSOlG .mbr-section-subtitle,
.cid-uDoUXsSOlG .caption-text {
  color: #8d97ad;
}
.cid-uDoUXsSOlG .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uDoUXsSOlG .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uDoUXsSOlG .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uDoUXsSOlG .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uDoUXsSOlG .mbr-section-subtitle {
  color: #333333;
}
.cid-uDp0A7c4Nm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDp0A7c4Nm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDp0A7c4Nm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDp0A7c4Nm a {
  font-weight: bold;
}
.cid-uDp0A7c4Nm .row {
  flex-direction: row-reverse;
}
.cid-uDp0A7c4Nm .container-fluid {
  padding: 0;
}
.cid-uDp0A7c4Nm img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uDp0A7c4Nm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDp0A7c4Nm .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uDp0A7c4Nm .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uDp0A7c4Nm .text-wrapper {
    padding: 1rem;
  }
}
.cid-uDp0A7c4Nm .mbr-text,
.cid-uDp0A7c4Nm .mbr-section-btn {
  color: #000000;
}
.cid-uDoJKZUQsD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDoJKZUQsD h2,
.cid-uDoJKZUQsD h3,
.cid-uDoJKZUQsD h4,
.cid-uDoJKZUQsD p {
  margin: 0;
}
.cid-uDoJKZUQsD .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uDoJKZUQsD .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uDoJKZUQsD .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uDoJL0L2sK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2J5U6dIn {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2J5U6dIn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2J5U6dIn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2J5U6dIn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2J5U6dIn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2J5U6dIn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2J5U6dIn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2J5U6dIn .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-uI2J5U6dIn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2J5U6dIn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2J5U6dIn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2J5U6dIn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2J5U6dIn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2J5U6dIn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2J5U6dIn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFhTtsEBbW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFhTtsEBbW .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uFhTtsEBbW .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uFhTtsEBbW .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uFhTtsEBbW .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uFhTtsEBbW .mbr-section-title,
.cid-uFhTtsEBbW .card_topic {
  margin-bottom: 12px;
}
.cid-uFhTtsEBbW .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uFhTtsEBbW .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uFhTtsEBbW .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uFhTtsEBbW .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uFhTtsEBbW .category_content,
.cid-uFhTtsEBbW .date,
.cid-uFhTtsEBbW .name_author {
  opacity: .8;
}
.cid-uFhTtsEBbW .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uFhTtsEBbW .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uFhTtsEBbW .item-img,
.cid-uFhTtsEBbW img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uFhTtsEBbW .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uFhTtsEBbW .item-img {
    margin-bottom: 20px;
  }
}
.cid-uFhTtsEBbW .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uFhTtsEBbW .mbr-section-btn .btn-secondary-outline:hover,
.cid-uFhTtsEBbW .mbr-section-btn .btn-secondary-outline .active,
.cid-uFhTtsEBbW .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uFhTtuhuS0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFhTtuhuS0 .mbr-section-subtitle,
.cid-uFhTtuhuS0 .caption-text {
  color: #8d97ad;
}
.cid-uFhTtuhuS0 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFhTtuhuS0 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFhTtuhuS0 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFhTtuhuS0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFhTtuhuS0 .mbr-section-subtitle {
  color: #333333;
}
.cid-uFhTtuWqTL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFhTtuWqTL .mbr-section-subtitle,
.cid-uFhTtuWqTL .caption-text {
  color: #8d97ad;
}
.cid-uFhTtuWqTL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFhTtuWqTL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFhTtuWqTL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFhTtuWqTL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFhTtuWqTL .mbr-section-subtitle {
  color: #333333;
}
.cid-uFhTtvyLUd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFhTtvyLUd .mbr-section-subtitle,
.cid-uFhTtvyLUd .caption-text {
  color: #8d97ad;
}
.cid-uFhTtvyLUd .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFhTtvyLUd .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFhTtvyLUd .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFhTtvyLUd .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFhTtvyLUd .mbr-section-subtitle {
  color: #333333;
}
.cid-uFhTtwhIyk {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFhTtwhIyk .mbr-section-subtitle,
.cid-uFhTtwhIyk .caption-text {
  color: #8d97ad;
}
.cid-uFhTtwhIyk .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFhTtwhIyk .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFhTtwhIyk .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFhTtwhIyk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFhTtwhIyk .mbr-section-subtitle {
  color: #333333;
}
.cid-uFhTtx30e4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFhTtx30e4 .mbr-section-subtitle,
.cid-uFhTtx30e4 .caption-text {
  color: #8d97ad;
}
.cid-uFhTtx30e4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFhTtx30e4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFhTtx30e4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFhTtx30e4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFhTtx30e4 .mbr-section-subtitle {
  color: #333333;
}
.cid-uFhTtD3JQS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFhTtD3JQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFhTtD3JQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFhTtD3JQS a {
  font-weight: bold;
}
.cid-uFhTtD3JQS .row {
  flex-direction: row-reverse;
}
.cid-uFhTtD3JQS .container-fluid {
  padding: 0;
}
.cid-uFhTtD3JQS img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uFhTtD3JQS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFhTtD3JQS .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uFhTtD3JQS .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uFhTtD3JQS .text-wrapper {
    padding: 1rem;
  }
}
.cid-uFhTtD3JQS .mbr-text,
.cid-uFhTtD3JQS .mbr-section-btn {
  color: #000000;
}
.cid-uFhTtDT1Dl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFhTtDT1Dl h2,
.cid-uFhTtDT1Dl h3,
.cid-uFhTtDT1Dl h4,
.cid-uFhTtDT1Dl p {
  margin: 0;
}
.cid-uFhTtDT1Dl .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uFhTtDT1Dl .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uFhTtDT1Dl .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uFhTtEGzrY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2J7T2s4d {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2J7T2s4d .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2J7T2s4d .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2J7T2s4d .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2J7T2s4d .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2J7T2s4d .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2J7T2s4d .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2J7T2s4d .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-uI2J7T2s4d .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2J7T2s4d .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2J7T2s4d .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2J7T2s4d .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2J7T2s4d .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2J7T2s4d .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2J7T2s4d .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFLTEi7KT7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFLTEi7KT7 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uFLTEi7KT7 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uFLTEi7KT7 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uFLTEi7KT7 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uFLTEi7KT7 .mbr-section-title,
.cid-uFLTEi7KT7 .card_topic {
  margin-bottom: 12px;
}
.cid-uFLTEi7KT7 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uFLTEi7KT7 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uFLTEi7KT7 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uFLTEi7KT7 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uFLTEi7KT7 .category_content,
.cid-uFLTEi7KT7 .date,
.cid-uFLTEi7KT7 .name_author {
  opacity: .8;
}
.cid-uFLTEi7KT7 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uFLTEi7KT7 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uFLTEi7KT7 .item-img,
.cid-uFLTEi7KT7 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uFLTEi7KT7 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uFLTEi7KT7 .item-img {
    margin-bottom: 20px;
  }
}
.cid-uFLTEi7KT7 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uFLTEi7KT7 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uFLTEi7KT7 .mbr-section-btn .btn-secondary-outline .active,
.cid-uFLTEi7KT7 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uFLTEiMymV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFLTEiMymV .mbr-section-subtitle,
.cid-uFLTEiMymV .caption-text {
  color: #8d97ad;
}
.cid-uFLTEiMymV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFLTEiMymV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFLTEiMymV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFLTEiMymV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFLTEiMymV .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMqXIfBe2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFMqXIfBe2 .mbr-section-subtitle,
.cid-uFMqXIfBe2 .caption-text {
  color: #8d97ad;
}
.cid-uFMqXIfBe2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFMqXIfBe2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFMqXIfBe2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFMqXIfBe2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFMqXIfBe2 .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMrQx92Ct {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFMrQx92Ct .mbr-section-subtitle,
.cid-uFMrQx92Ct .caption-text {
  color: #8d97ad;
}
.cid-uFMrQx92Ct .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFMrQx92Ct .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFMrQx92Ct .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFMrQx92Ct .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFMrQx92Ct .mbr-section-subtitle {
  color: #333333;
}
.cid-uFLTEjdxMY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFLTEjdxMY .mbr-section-subtitle,
.cid-uFLTEjdxMY .caption-text {
  color: #8d97ad;
}
.cid-uFLTEjdxMY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFLTEjdxMY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFLTEjdxMY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFLTEjdxMY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFLTEjdxMY .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMw5tBKDI {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uFMw5tBKDI .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFMw5tBKDI .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-uFMw5tBKDI .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-uFMw5tBKDI .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-uFLTEjKZHi {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFLTEjKZHi .mbr-section-subtitle,
.cid-uFLTEjKZHi .caption-text {
  color: #8d97ad;
}
.cid-uFLTEjKZHi .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFLTEjKZHi .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFLTEjKZHi .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFLTEjKZHi .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFLTEjKZHi .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMyBwUNm8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFMyBwUNm8 .mbr-section-subtitle,
.cid-uFMyBwUNm8 .caption-text {
  color: #8d97ad;
}
.cid-uFMyBwUNm8 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFMyBwUNm8 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFMyBwUNm8 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFMyBwUNm8 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFMyBwUNm8 .mbr-section-subtitle {
  color: #333333;
}
.cid-uFLTEki90n {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFLTEki90n .mbr-section-subtitle,
.cid-uFLTEki90n .caption-text {
  color: #8d97ad;
}
.cid-uFLTEki90n .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFLTEki90n .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFLTEki90n .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFLTEki90n .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFLTEki90n .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMA7pbpUq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFMA7pbpUq .mbr-section-subtitle,
.cid-uFMA7pbpUq .caption-text {
  color: #8d97ad;
}
.cid-uFMA7pbpUq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFMA7pbpUq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFMA7pbpUq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFMA7pbpUq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFMA7pbpUq .mbr-section-subtitle {
  color: #333333;
}
.cid-uFM73oboPS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFM73oboPS .mbr-section-subtitle,
.cid-uFM73oboPS .caption-text {
  color: #8d97ad;
}
.cid-uFM73oboPS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFM73oboPS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFM73oboPS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFM73oboPS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFM73oboPS .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMBabJpi8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uFMBabJpi8 .mbr-section-subtitle,
.cid-uFMBabJpi8 .caption-text {
  color: #8d97ad;
}
.cid-uFMBabJpi8 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFMBabJpi8 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFMBabJpi8 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFMBabJpi8 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFMBabJpi8 .mbr-section-subtitle {
  color: #333333;
}
.cid-uFMkRsS2pV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uFMkRsS2pV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFMkRsS2pV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFMkRsS2pV .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uFMkRsS2pV .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uFMkRsS2pV .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uFMkRsS2pV .item-img {
    width: 100%;
  }
}
.cid-uFMkRsS2pV .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uFMkRsS2pV .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uFMkRsS2pV .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uFMkRsS2pV .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uFMkRsS2pV .card-title {
  color: #131313;
}
.cid-uFMkRsS2pV .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uFMkRsS2pV .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uFMkRsS2pV .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uFMkRsS2pV .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uFMkRsS2pV .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uFMkRsS2pV .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uFMkRsS2pV .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uFMkRsS2pV .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uFMEEIRQM2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFLTElN2hm {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uFLTElN2hm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uFLTElN2hm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uFLTElN2hm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uFLTElN2hm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uFLTElN2hm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uFLTElN2hm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uFLTElN2hm .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-uFLTElN2hm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uFLTElN2hm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFLTElN2hm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uFLTElN2hm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFLTElN2hm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFLTElN2hm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uFLTElN2hm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2r6zkDnf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI2r6zkDnf .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uI2r6zkDnf .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uI2r6zkDnf .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uI2r6zkDnf .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uI2r6zkDnf .mbr-section-title,
.cid-uI2r6zkDnf .card_topic {
  margin-bottom: 12px;
}
.cid-uI2r6zkDnf .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uI2r6zkDnf .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uI2r6zkDnf .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uI2r6zkDnf .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uI2r6zkDnf .category_content,
.cid-uI2r6zkDnf .date,
.cid-uI2r6zkDnf .name_author {
  opacity: .8;
}
.cid-uI2r6zkDnf .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uI2r6zkDnf .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uI2r6zkDnf .item-img,
.cid-uI2r6zkDnf img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uI2r6zkDnf .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uI2r6zkDnf .item-img {
    margin-bottom: 20px;
  }
}
.cid-uI2r6zkDnf .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uI2r6zkDnf .mbr-section-btn .btn-secondary-outline:hover,
.cid-uI2r6zkDnf .mbr-section-btn .btn-secondary-outline .active,
.cid-uI2r6zkDnf .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uI2r6zOaGJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6zOaGJ .mbr-section-subtitle,
.cid-uI2r6zOaGJ .caption-text {
  color: #8d97ad;
}
.cid-uI2r6zOaGJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6zOaGJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6zOaGJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6zOaGJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6zOaGJ .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6A5sNc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6A5sNc .mbr-section-subtitle,
.cid-uI2r6A5sNc .caption-text {
  color: #8d97ad;
}
.cid-uI2r6A5sNc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6A5sNc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6A5sNc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6A5sNc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6A5sNc .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6AsK6D {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6AsK6D .mbr-section-subtitle,
.cid-uI2r6AsK6D .caption-text {
  color: #8d97ad;
}
.cid-uI2r6AsK6D .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6AsK6D .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6AsK6D .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6AsK6D .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6AsK6D .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6ARXHj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6ARXHj .mbr-section-subtitle,
.cid-uI2r6ARXHj .caption-text {
  color: #8d97ad;
}
.cid-uI2r6ARXHj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6ARXHj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6ARXHj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6ARXHj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6ARXHj .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6Bes5J {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6Bes5J .mbr-section-subtitle,
.cid-uI2r6Bes5J .caption-text {
  color: #8d97ad;
}
.cid-uI2r6Bes5J .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6Bes5J .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6Bes5J .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6Bes5J .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6Bes5J .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6BBxGN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6BBxGN .mbr-section-subtitle,
.cid-uI2r6BBxGN .caption-text {
  color: #8d97ad;
}
.cid-uI2r6BBxGN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6BBxGN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6BBxGN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6BBxGN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6BBxGN .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6C3XVm {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6C3XVm .mbr-section-subtitle,
.cid-uI2r6C3XVm .caption-text {
  color: #8d97ad;
}
.cid-uI2r6C3XVm .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6C3XVm .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6C3XVm .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6C3XVm .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6C3XVm .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6Cs2b1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6Cs2b1 .mbr-section-subtitle,
.cid-uI2r6Cs2b1 .caption-text {
  color: #8d97ad;
}
.cid-uI2r6Cs2b1 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6Cs2b1 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6Cs2b1 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6Cs2b1 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6Cs2b1 .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2r6COjBU {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2r6COjBU .mbr-section-subtitle,
.cid-uI2r6COjBU .caption-text {
  color: #8d97ad;
}
.cid-uI2r6COjBU .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2r6COjBU .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2r6COjBU .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2r6COjBU .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2r6COjBU .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2E5aP0um {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uI2E5aP0um .mbr-section-subtitle,
.cid-uI2E5aP0um .caption-text {
  color: #8d97ad;
}
.cid-uI2E5aP0um .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uI2E5aP0um .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uI2E5aP0um .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uI2E5aP0um .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uI2E5aP0um .mbr-section-subtitle {
  color: #333333;
}
.cid-uI2FbIMZCG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI2FbIMZCG h2,
.cid-uI2FbIMZCG h3,
.cid-uI2FbIMZCG h4,
.cid-uI2FbIMZCG p {
  margin: 0;
}
.cid-uI2FbIMZCG .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uI2FbIMZCG .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uI2FbIMZCG .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uI2r6DbXBN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI2r6DbXBN h2,
.cid-uI2r6DbXBN h3,
.cid-uI2r6DbXBN h4,
.cid-uI2r6DbXBN p {
  margin: 0;
}
.cid-uI2r6DbXBN .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uI2r6DbXBN .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uI2r6DbXBN .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uI2LytFYfz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI2LytFYfz h2,
.cid-uI2LytFYfz h3,
.cid-uI2LytFYfz h4,
.cid-uI2LytFYfz p {
  margin: 0;
}
.cid-uI2LytFYfz .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uI2LytFYfz .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uI2LytFYfz .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uI2r6DzymB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uI2J3evK4U {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uI2J3evK4U .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uI2J3evK4U .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uI2J3evK4U .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uI2J3evK4U .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uI2J3evK4U .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uI2J3evK4U .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uI2J3evK4U .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-uI2J3evK4U .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uI2J3evK4U .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uI2J3evK4U .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uI2J3evK4U .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uI2J3evK4U .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI2J3evK4U .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uI2J3evK4U .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJfE1JHcAT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJfE1JHcAT .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uJfE1JHcAT .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uJfE1JHcAT .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uJfE1JHcAT .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uJfE1JHcAT .mbr-section-title,
.cid-uJfE1JHcAT .card_topic {
  margin-bottom: 12px;
}
.cid-uJfE1JHcAT .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uJfE1JHcAT .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uJfE1JHcAT .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uJfE1JHcAT .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uJfE1JHcAT .category_content,
.cid-uJfE1JHcAT .date,
.cid-uJfE1JHcAT .name_author {
  opacity: .8;
}
.cid-uJfE1JHcAT .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uJfE1JHcAT .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uJfE1JHcAT .item-img,
.cid-uJfE1JHcAT img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uJfE1JHcAT .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uJfE1JHcAT .item-img {
    margin-bottom: 20px;
  }
}
.cid-uJfE1JHcAT .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uJfE1JHcAT .mbr-section-btn .btn-secondary-outline:hover,
.cid-uJfE1JHcAT .mbr-section-btn .btn-secondary-outline .active,
.cid-uJfE1JHcAT .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uJfE1KKGRg {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1KKGRg .mbr-section-subtitle,
.cid-uJfE1KKGRg .caption-text {
  color: #8d97ad;
}
.cid-uJfE1KKGRg .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1KKGRg .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1KKGRg .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1KKGRg .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1KKGRg .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1Lhs82 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1Lhs82 .mbr-section-subtitle,
.cid-uJfE1Lhs82 .caption-text {
  color: #8d97ad;
}
.cid-uJfE1Lhs82 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1Lhs82 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1Lhs82 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1Lhs82 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1Lhs82 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1LO2dv {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1LO2dv .mbr-section-subtitle,
.cid-uJfE1LO2dv .caption-text {
  color: #8d97ad;
}
.cid-uJfE1LO2dv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1LO2dv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1LO2dv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1LO2dv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1LO2dv .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1Mg7l2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1Mg7l2 .mbr-section-subtitle,
.cid-uJfE1Mg7l2 .caption-text {
  color: #8d97ad;
}
.cid-uJfE1Mg7l2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1Mg7l2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1Mg7l2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1Mg7l2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1Mg7l2 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1MJtVW {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1MJtVW .mbr-section-subtitle,
.cid-uJfE1MJtVW .caption-text {
  color: #8d97ad;
}
.cid-uJfE1MJtVW .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1MJtVW .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1MJtVW .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1MJtVW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1MJtVW .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1NfXeC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1NfXeC .mbr-section-subtitle,
.cid-uJfE1NfXeC .caption-text {
  color: #8d97ad;
}
.cid-uJfE1NfXeC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1NfXeC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1NfXeC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1NfXeC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1NfXeC .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1NKSzO {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1NKSzO .mbr-section-subtitle,
.cid-uJfE1NKSzO .caption-text {
  color: #8d97ad;
}
.cid-uJfE1NKSzO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1NKSzO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1NKSzO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1NKSzO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1NKSzO .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1Ohbp9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1Ohbp9 .mbr-section-subtitle,
.cid-uJfE1Ohbp9 .caption-text {
  color: #8d97ad;
}
.cid-uJfE1Ohbp9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1Ohbp9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1Ohbp9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1Ohbp9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1Ohbp9 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1ONeua {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1ONeua .mbr-section-subtitle,
.cid-uJfE1ONeua .caption-text {
  color: #8d97ad;
}
.cid-uJfE1ONeua .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1ONeua .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1ONeua .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1ONeua .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1ONeua .mbr-section-subtitle {
  color: #333333;
}
.cid-uJfE1PpF9W {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJfE1PpF9W .mbr-section-subtitle,
.cid-uJfE1PpF9W .caption-text {
  color: #8d97ad;
}
.cid-uJfE1PpF9W .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJfE1PpF9W .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJfE1PpF9W .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJfE1PpF9W .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJfE1PpF9W .mbr-section-subtitle {
  color: #333333;
}
.cid-uJgvbJ9OJH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fff1e2;
}
.cid-uJgvbJ9OJH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJgvbJ9OJH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJgvbJ9OJH .content-wrap {
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uJgvbJ9OJH .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uJgvbJ9OJH .content-wrap .image-wrapper {
  width: 50%;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-uJgvbJ9OJH .content-wrap .image-wrapper {
    padding-right: 0;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-uJgvbJ9OJH .content-wrap .image-wrapper img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border: 3px solid #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uJgvbJ9OJH .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper {
  padding: 30px;
  width: 50%;
  background-color: #f8e7d2;
  height: fit-content;
  -webkit-flex: none;
}
@media (max-width: 992px) {
  .cid-uJgvbJ9OJH .content-wrap .card-wrapper {
    width: 100%;
    padding: 20px;
  }
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJgvbJ9OJH .content-wrap .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uJgvbJ9OJH .content-wrap .card-wrapper .mbr-section-btn .btn {
  justify-content: center;
  padding: 10px 15px;
  margin-bottom: 0;
  width: auto !important;
}
.cid-uJgvbJ9OJH .mbr-section-title {
  color: #404349;
}
.cid-uJgvbJ9OJH .list {
  color: #404349;
}
.cid-uJgvbJ9OJH .list,
.cid-uJgvbJ9OJH .item-wrap {
  color: #000000;
}
.cid-uJgvbJ9OJH .mbr-section-title,
.cid-uJgvbJ9OJH .mbr-section-btn {
  color: #000000;
}
.cid-uJfE1RaySK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJfE1RaySK h2,
.cid-uJfE1RaySK h3,
.cid-uJfE1RaySK h4,
.cid-uJfE1RaySK p {
  margin: 0;
}
.cid-uJfE1RaySK .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uJfE1RaySK .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uJfE1RaySK .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uJfE1RPtHQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJfE1SlpNL {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uJfE1SlpNL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uJfE1SlpNL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uJfE1SlpNL .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uJfE1SlpNL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJfE1SlpNL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJfE1SlpNL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJfE1SlpNL .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-uJfE1SlpNL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uJfE1SlpNL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uJfE1SlpNL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uJfE1SlpNL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uJfE1SlpNL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJfE1SlpNL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uJfE1SlpNL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJFeoNMPB6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJFeoNMPB6 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uJFeoNMPB6 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uJFeoNMPB6 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uJFeoNMPB6 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uJFeoNMPB6 .mbr-section-title,
.cid-uJFeoNMPB6 .card_topic {
  margin-bottom: 12px;
}
.cid-uJFeoNMPB6 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uJFeoNMPB6 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uJFeoNMPB6 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uJFeoNMPB6 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uJFeoNMPB6 .category_content,
.cid-uJFeoNMPB6 .date,
.cid-uJFeoNMPB6 .name_author {
  opacity: .8;
}
.cid-uJFeoNMPB6 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uJFeoNMPB6 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uJFeoNMPB6 .item-img,
.cid-uJFeoNMPB6 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uJFeoNMPB6 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uJFeoNMPB6 .item-img {
    margin-bottom: 20px;
  }
}
.cid-uJFeoNMPB6 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uJFeoNMPB6 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uJFeoNMPB6 .mbr-section-btn .btn-secondary-outline .active,
.cid-uJFeoNMPB6 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uJFeoOW7mU {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJFeoOW7mU .mbr-section-subtitle,
.cid-uJFeoOW7mU .caption-text {
  color: #8d97ad;
}
.cid-uJFeoOW7mU .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJFeoOW7mU .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJFeoOW7mU .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJFeoOW7mU .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJFeoOW7mU .mbr-section-subtitle {
  color: #333333;
}
.cid-uJFeoPO240 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJFeoPO240 .mbr-section-subtitle,
.cid-uJFeoPO240 .caption-text {
  color: #8d97ad;
}
.cid-uJFeoPO240 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJFeoPO240 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJFeoPO240 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJFeoPO240 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJFeoPO240 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJFeoQT5cX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJFeoQT5cX .mbr-section-subtitle,
.cid-uJFeoQT5cX .caption-text {
  color: #8d97ad;
}
.cid-uJFeoQT5cX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJFeoQT5cX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJFeoQT5cX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJFeoQT5cX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJFeoQT5cX .mbr-section-subtitle {
  color: #333333;
}
.cid-uJFeoRZYG6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJFeoRZYG6 .mbr-section-subtitle,
.cid-uJFeoRZYG6 .caption-text {
  color: #8d97ad;
}
.cid-uJFeoRZYG6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJFeoRZYG6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJFeoRZYG6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJFeoRZYG6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJFeoRZYG6 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJFeoT45zK {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJFeoT45zK .mbr-section-subtitle,
.cid-uJFeoT45zK .caption-text {
  color: #8d97ad;
}
.cid-uJFeoT45zK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJFeoT45zK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJFeoT45zK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJFeoT45zK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJFeoT45zK .mbr-section-subtitle {
  color: #333333;
}
.cid-uJFR7KQwOH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2edda;
}
.cid-uJFR7KQwOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJFR7KQwOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJFR7KQwOH .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJFR7KQwOH .container {
    padding: 0 15px;
  }
}
.cid-uJFR7KQwOH .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uJFR7KQwOH .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uJFR7KQwOH .content-wrapper {
  padding-right: 21px;
}
@media (max-width: 992px) {
  .cid-uJFR7KQwOH .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uJFR7KQwOH .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJFR7KQwOH .content-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uJFR7KQwOH .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJFR7KQwOH .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uJFR7KQwOH .image-wrapper {
  position: relative;
  margin-left: 21px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJFR7KQwOH .image-wrapper {
    margin: 0;
  }
}
.cid-uJFR7KQwOH .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #f98c25;
}
.cid-uJFR7KQwOH .image-wrapper::before {
  content: '';
  position: absolute;
  height: 110%;
  width: 125%;
  border-radius: 100%;
  background-color: #faffb0;
  filter: blur(80px);
  pointer-events: none;
}
.cid-uJFR7KQwOH .image-wrapper .mbr-image-text {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  margin-bottom: 30px;
  width: 100%;
}
.cid-uJFR7KQwOH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uJFR7KQwOH .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uJFR7KQwOH .mbr-text {
  color: #000000;
}
.cid-uJFR7KQwOH .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJFep483Xm {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uJFep483Xm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uJFep483Xm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uJFep483Xm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uJFep483Xm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJFep483Xm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJFep483Xm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJFep483Xm .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-uJFep483Xm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uJFep483Xm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uJFep483Xm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uJFep483Xm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uJFep483Xm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJFep483Xm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uJFep483Xm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJG07sj9Ht {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJG07sj9Ht .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uJG07sj9Ht .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uJG07sj9Ht .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uJG07sj9Ht .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uJG07sj9Ht .mbr-section-title,
.cid-uJG07sj9Ht .card_topic {
  margin-bottom: 12px;
}
.cid-uJG07sj9Ht .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uJG07sj9Ht .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uJG07sj9Ht .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uJG07sj9Ht .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uJG07sj9Ht .category_content,
.cid-uJG07sj9Ht .date,
.cid-uJG07sj9Ht .name_author {
  opacity: .8;
}
.cid-uJG07sj9Ht .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uJG07sj9Ht .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uJG07sj9Ht .item-img,
.cid-uJG07sj9Ht img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uJG07sj9Ht .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uJG07sj9Ht .item-img {
    margin-bottom: 20px;
  }
}
.cid-uJG07sj9Ht .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uJG07sj9Ht .mbr-section-btn .btn-secondary-outline:hover,
.cid-uJG07sj9Ht .mbr-section-btn .btn-secondary-outline .active,
.cid-uJG07sj9Ht .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uJG6sVeAQy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJG6sVeAQy .mbr-section-title {
  color: #000000;
}
.cid-uJG6sVeAQy .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uJG6sVeAQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJG6sVeAQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJG07tGbe4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJG07tGbe4 .mbr-section-subtitle,
.cid-uJG07tGbe4 .caption-text {
  color: #8d97ad;
}
.cid-uJG07tGbe4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJG07tGbe4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJG07tGbe4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJG07tGbe4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJG07tGbe4 .mbr-section-subtitle {
  color: #333333;
}
.cid-uJG07uLTeY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJG07uLTeY .mbr-section-subtitle,
.cid-uJG07uLTeY .caption-text {
  color: #8d97ad;
}
.cid-uJG07uLTeY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJG07uLTeY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJG07uLTeY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJG07uLTeY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJG07uLTeY .mbr-section-subtitle {
  color: #333333;
}
.cid-uJG07vX9sw {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJG07vX9sw .mbr-section-subtitle,
.cid-uJG07vX9sw .caption-text {
  color: #8d97ad;
}
.cid-uJG07vX9sw .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJG07vX9sw .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJG07vX9sw .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJG07vX9sw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJG07vX9sw .mbr-section-subtitle {
  color: #333333;
}
.cid-uJGavIyxyb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJGavIyxyb .mbr-section-title {
  color: #000000;
}
.cid-uJGavIyxyb .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uJGavIyxyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJGavIyxyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJG07x24xN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJG07x24xN .mbr-section-subtitle,
.cid-uJG07x24xN .caption-text {
  color: #8d97ad;
}
.cid-uJG07x24xN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJG07x24xN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJG07x24xN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJG07x24xN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJG07x24xN .mbr-section-subtitle {
  color: #333333;
}
.cid-uJG07ybQ4J {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJG07ybQ4J .mbr-section-subtitle,
.cid-uJG07ybQ4J .caption-text {
  color: #8d97ad;
}
.cid-uJG07ybQ4J .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJG07ybQ4J .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJG07ybQ4J .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJG07ybQ4J .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJG07ybQ4J .mbr-section-subtitle {
  color: #333333;
}
.cid-uJGcSS0g4V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJGcSS0g4V .mbr-section-title {
  color: #000000;
}
.cid-uJGcSS0g4V .mbr-section-subtitle {
  color: #6c7577;
}
.cid-uJGcSS0g4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJGcSS0g4V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJGcZzrrwh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJGcZzrrwh .mbr-section-subtitle,
.cid-uJGcZzrrwh .caption-text {
  color: #8d97ad;
}
.cid-uJGcZzrrwh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJGcZzrrwh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJGcZzrrwh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJGcZzrrwh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJGcZzrrwh .mbr-section-subtitle {
  color: #333333;
}
.cid-uJGgjx8ETe {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uJGgjx8ETe .mbr-section-subtitle,
.cid-uJGgjx8ETe .caption-text {
  color: #8d97ad;
}
.cid-uJGgjx8ETe .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uJGgjx8ETe .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uJGgjx8ETe .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uJGgjx8ETe .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uJGgjx8ETe .mbr-section-subtitle {
  color: #333333;
}
.cid-uJG07zmyex {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2edda;
}
.cid-uJG07zmyex .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJG07zmyex .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJG07zmyex .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJG07zmyex .container {
    padding: 0 15px;
  }
}
.cid-uJG07zmyex .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uJG07zmyex .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uJG07zmyex .content-wrapper {
  padding-right: 21px;
}
@media (max-width: 992px) {
  .cid-uJG07zmyex .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uJG07zmyex .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJG07zmyex .content-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uJG07zmyex .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJG07zmyex .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uJG07zmyex .image-wrapper {
  position: relative;
  margin-left: 21px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJG07zmyex .image-wrapper {
    margin: 0;
  }
}
.cid-uJG07zmyex .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #f98c25;
}
.cid-uJG07zmyex .image-wrapper::before {
  content: '';
  position: absolute;
  height: 110%;
  width: 125%;
  border-radius: 100%;
  background-color: #faffb0;
  filter: blur(80px);
  pointer-events: none;
}
.cid-uJG07zmyex .image-wrapper .mbr-image-text {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  margin-bottom: 30px;
  width: 100%;
}
.cid-uJG07zmyex .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uJG07zmyex .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uJG07zmyex .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uJG07zmyex .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJGj2Tju1B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uJGj2Tju1B .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uJGj2Tju1B .row {
  justify-content: center;
}
.cid-uJGj2Tju1B a {
  font-weight: 400 !important;
}
.cid-uJGj21GUwG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJG07AHzll {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uJG07AHzll .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uJG07AHzll .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uJG07AHzll .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uJG07AHzll .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJG07AHzll .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJG07AHzll .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJG07AHzll .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-uJG07AHzll .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uJG07AHzll .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uJG07AHzll .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uJG07AHzll .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uJG07AHzll .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJG07AHzll .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uJG07AHzll .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNNj0Yrr55 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNj0Yrr55 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uNNj0Yrr55 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uNNj0Yrr55 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uNNj0Yrr55 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uNNj0Yrr55 .mbr-section-title,
.cid-uNNj0Yrr55 .card_topic {
  margin-bottom: 12px;
}
.cid-uNNj0Yrr55 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uNNj0Yrr55 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uNNj0Yrr55 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uNNj0Yrr55 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uNNj0Yrr55 .category_content,
.cid-uNNj0Yrr55 .date,
.cid-uNNj0Yrr55 .name_author {
  opacity: .8;
}
.cid-uNNj0Yrr55 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uNNj0Yrr55 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uNNj0Yrr55 .item-img,
.cid-uNNj0Yrr55 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uNNj0Yrr55 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uNNj0Yrr55 .item-img {
    margin-bottom: 20px;
  }
}
.cid-uNNj0Yrr55 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uNNj0Yrr55 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uNNj0Yrr55 .mbr-section-btn .btn-secondary-outline .active,
.cid-uNNj0Yrr55 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uNNj0YT5la {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj0YT5la .mbr-section-subtitle,
.cid-uNNj0YT5la .caption-text {
  color: #8d97ad;
}
.cid-uNNj0YT5la .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj0YT5la .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj0YT5la .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj0YT5la .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj0YT5la .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj0ZbFyX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj0ZbFyX .mbr-section-subtitle,
.cid-uNNj0ZbFyX .caption-text {
  color: #8d97ad;
}
.cid-uNNj0ZbFyX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj0ZbFyX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj0ZbFyX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj0ZbFyX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj0ZbFyX .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj0ZAABB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj0ZAABB .mbr-section-subtitle,
.cid-uNNj0ZAABB .caption-text {
  color: #8d97ad;
}
.cid-uNNj0ZAABB .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj0ZAABB .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj0ZAABB .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj0ZAABB .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj0ZAABB .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj0ZYnuD {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj0ZYnuD .mbr-section-subtitle,
.cid-uNNj0ZYnuD .caption-text {
  color: #8d97ad;
}
.cid-uNNj0ZYnuD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj0ZYnuD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj0ZYnuD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj0ZYnuD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj0ZYnuD .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj10lhPN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj10lhPN .mbr-section-subtitle,
.cid-uNNj10lhPN .caption-text {
  color: #8d97ad;
}
.cid-uNNj10lhPN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj10lhPN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj10lhPN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj10lhPN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj10lhPN .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj10JnKS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj10JnKS .mbr-section-subtitle,
.cid-uNNj10JnKS .caption-text {
  color: #8d97ad;
}
.cid-uNNj10JnKS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj10JnKS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj10JnKS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj10JnKS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj10JnKS .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj117R6l {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj117R6l .mbr-section-subtitle,
.cid-uNNj117R6l .caption-text {
  color: #8d97ad;
}
.cid-uNNj117R6l .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj117R6l .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj117R6l .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj117R6l .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj117R6l .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj11vMYq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj11vMYq .mbr-section-subtitle,
.cid-uNNj11vMYq .caption-text {
  color: #8d97ad;
}
.cid-uNNj11vMYq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj11vMYq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj11vMYq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj11vMYq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj11vMYq .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNj11Vw7R {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNj11Vw7R .mbr-section-subtitle,
.cid-uNNj11Vw7R .caption-text {
  color: #8d97ad;
}
.cid-uNNj11Vw7R .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNj11Vw7R .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNj11Vw7R .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNj11Vw7R .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNj11Vw7R .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNvK2ZP1k {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uNNvK2ZP1k .mbr-section-subtitle,
.cid-uNNvK2ZP1k .caption-text {
  color: #8d97ad;
}
.cid-uNNvK2ZP1k .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uNNvK2ZP1k .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uNNvK2ZP1k .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uNNvK2ZP1k .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNNvK2ZP1k .mbr-section-subtitle {
  color: #333333;
}
.cid-uNNwUxcpRv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uNNwUxcpRv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNwUxcpRv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNwUxcpRv .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uNNwUxcpRv .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uNNwUxcpRv .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uNNwUxcpRv .item-img {
    width: 100%;
  }
}
.cid-uNNwUxcpRv .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uNNwUxcpRv .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uNNwUxcpRv .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uNNwUxcpRv .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uNNwUxcpRv .card-title {
  color: #131313;
}
.cid-uNNwUxcpRv .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uNNwUxcpRv .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uNNwUxcpRv .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uNNwUxcpRv .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uNNwUxcpRv .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uNNwUxcpRv .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uNNwUxcpRv .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uNNwUxcpRv .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uNNj12id57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNj12id57 h2,
.cid-uNNj12id57 h3,
.cid-uNNj12id57 h4,
.cid-uNNj12id57 p {
  margin: 0;
}
.cid-uNNj12id57 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uNNj12id57 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uNNj12id57 .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uNNj12Fmlv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uNNj12ZUXF {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uNNj12ZUXF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uNNj12ZUXF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uNNj12ZUXF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uNNj12ZUXF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNNj12ZUXF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNNj12ZUXF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uNNj12ZUXF .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-uNNj12ZUXF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uNNj12ZUXF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uNNj12ZUXF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uNNj12ZUXF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uNNj12ZUXF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uNNj12ZUXF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uNNj12ZUXF .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdlhY4joG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdlhY4joG .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uPdlhY4joG .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uPdlhY4joG .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uPdlhY4joG .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uPdlhY4joG .mbr-section-title,
.cid-uPdlhY4joG .card_topic {
  margin-bottom: 12px;
}
.cid-uPdlhY4joG .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uPdlhY4joG .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uPdlhY4joG .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uPdlhY4joG .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uPdlhY4joG .category_content,
.cid-uPdlhY4joG .date,
.cid-uPdlhY4joG .name_author {
  opacity: .8;
}
.cid-uPdlhY4joG .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uPdlhY4joG .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uPdlhY4joG .item-img,
.cid-uPdlhY4joG img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uPdlhY4joG .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPdlhY4joG .item-img {
    margin-bottom: 20px;
  }
}
.cid-uPdlhY4joG .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uPdlhY4joG .mbr-section-btn .btn-secondary-outline:hover,
.cid-uPdlhY4joG .mbr-section-btn .btn-secondary-outline .active,
.cid-uPdlhY4joG .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uPdlhZ4Ura {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdlhZ4Ura .mbr-section-subtitle,
.cid-uPdlhZ4Ura .caption-text {
  color: #8d97ad;
}
.cid-uPdlhZ4Ura .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdlhZ4Ura .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdlhZ4Ura .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdlhZ4Ura .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdlhZ4Ura .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdlhZNg2S {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdlhZNg2S .mbr-section-subtitle,
.cid-uPdlhZNg2S .caption-text {
  color: #8d97ad;
}
.cid-uPdlhZNg2S .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdlhZNg2S .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdlhZNg2S .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdlhZNg2S .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdlhZNg2S .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli0uz33 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdli0uz33 .mbr-section-subtitle,
.cid-uPdli0uz33 .caption-text {
  color: #8d97ad;
}
.cid-uPdli0uz33 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdli0uz33 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdli0uz33 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdli0uz33 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdli0uz33 .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli1cSay {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdli1cSay .mbr-section-subtitle,
.cid-uPdli1cSay .caption-text {
  color: #8d97ad;
}
.cid-uPdli1cSay .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdli1cSay .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdli1cSay .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdli1cSay .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdli1cSay .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli1XaYQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdli1XaYQ .mbr-section-subtitle,
.cid-uPdli1XaYQ .caption-text {
  color: #8d97ad;
}
.cid-uPdli1XaYQ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdli1XaYQ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdli1XaYQ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdli1XaYQ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdli1XaYQ .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli2Naan {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdli2Naan .mbr-section-subtitle,
.cid-uPdli2Naan .caption-text {
  color: #8d97ad;
}
.cid-uPdli2Naan .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdli2Naan .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdli2Naan .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdli2Naan .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdli2Naan .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli7kD7C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uPdli7kD7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdli7kD7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdli7kD7C .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uPdli7kD7C .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uPdli7kD7C .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uPdli7kD7C .item-img {
    width: 100%;
  }
}
.cid-uPdli7kD7C .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uPdli7kD7C .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uPdli7kD7C .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdli7kD7C .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uPdli7kD7C .card-title {
  color: #131313;
}
.cid-uPdli7kD7C .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uPdli7kD7C .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uPdli7kD7C .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uPdli7kD7C .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uPdli7kD7C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uPdli7kD7C .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uPdli7kD7C .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uPdli7kD7C .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uPdli3GiOJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uPdli3GiOJ .mbr-section-subtitle,
.cid-uPdli3GiOJ .caption-text {
  color: #8d97ad;
}
.cid-uPdli3GiOJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uPdli3GiOJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uPdli3GiOJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uPdli3GiOJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPdli3GiOJ .mbr-section-subtitle {
  color: #333333;
}
.cid-uPdli8VgbJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdli8VgbJ h2,
.cid-uPdli8VgbJ h3,
.cid-uPdli8VgbJ h4,
.cid-uPdli8VgbJ p {
  margin: 0;
}
.cid-uPdli8VgbJ .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uPdli8VgbJ .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uPdli8VgbJ .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uPdli9Umlk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uPdliaMKTo {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uPdliaMKTo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uPdliaMKTo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uPdliaMKTo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uPdliaMKTo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uPdliaMKTo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uPdliaMKTo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uPdliaMKTo .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-uPdliaMKTo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uPdliaMKTo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uPdliaMKTo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uPdliaMKTo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdliaMKTo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdliaMKTo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uPdliaMKTo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQk7OFd3vG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQk7OFd3vG .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uQk7OFd3vG .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uQk7OFd3vG .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uQk7OFd3vG .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uQk7OFd3vG .mbr-section-title,
.cid-uQk7OFd3vG .card_topic {
  margin-bottom: 12px;
}
.cid-uQk7OFd3vG .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uQk7OFd3vG .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uQk7OFd3vG .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uQk7OFd3vG .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uQk7OFd3vG .category_content,
.cid-uQk7OFd3vG .date,
.cid-uQk7OFd3vG .name_author {
  opacity: .8;
}
.cid-uQk7OFd3vG .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uQk7OFd3vG .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uQk7OFd3vG .item-img,
.cid-uQk7OFd3vG img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uQk7OFd3vG .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uQk7OFd3vG .item-img {
    margin-bottom: 20px;
  }
}
.cid-uQk7OFd3vG .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uQk7OFd3vG .mbr-section-btn .btn-secondary-outline:hover,
.cid-uQk7OFd3vG .mbr-section-btn .btn-secondary-outline .active,
.cid-uQk7OFd3vG .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uQk7OFLfwU {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uQk7OFLfwU .mbr-section-subtitle,
.cid-uQk7OFLfwU .caption-text {
  color: #8d97ad;
}
.cid-uQk7OFLfwU .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uQk7OFLfwU .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uQk7OFLfwU .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uQk7OFLfwU .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uQk7OFLfwU .mbr-section-subtitle {
  color: #333333;
}
.cid-uQk7OG8D72 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uQk7OG8D72 .mbr-section-subtitle,
.cid-uQk7OG8D72 .caption-text {
  color: #8d97ad;
}
.cid-uQk7OG8D72 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uQk7OG8D72 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uQk7OG8D72 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uQk7OG8D72 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uQk7OG8D72 .mbr-section-subtitle {
  color: #333333;
}
.cid-uQk7OGyM72 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uQk7OGyM72 .mbr-section-subtitle,
.cid-uQk7OGyM72 .caption-text {
  color: #8d97ad;
}
.cid-uQk7OGyM72 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uQk7OGyM72 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uQk7OGyM72 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uQk7OGyM72 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uQk7OGyM72 .mbr-section-subtitle {
  color: #333333;
}
.cid-uQksSwUNDx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQksSwUNDx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uQksSwUNDx .item {
    padding: 1.5rem;
  }
}
.cid-uQksSwUNDx img {
  border-radius: 2rem;
}
.cid-uQksSwUNDx .item-img {
  padding: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uQksSwUNDx .item-img {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-uQksSwUNDx img,
.cid-uQksSwUNDx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uQksSwUNDx .item:focus,
.cid-uQksSwUNDx span:focus {
  outline: none;
}
.cid-uQksSwUNDx .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #f2edda;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .cid-uQksSwUNDx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQksSwUNDx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQksSwUNDx .item-wrapper:hover {
  box-shadow: 0 0 40px 0 lightgray;
  transform: scale(1.02);
}
.cid-uQksSwUNDx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQksSwUNDx .mbr-section-title {
  color: #232323;
}
.cid-uQksSwUNDx .mbr-text,
.cid-uQksSwUNDx .mbr-section-btn {
  text-align: center;
}
.cid-uQksSwUNDx .item-title {
  text-align: center;
  color: #333333;
}
.cid-uQksSwUNDx .item-subtitle {
  text-align: left;
}
.cid-uQkwUoWT1X {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f2edda;
}
.cid-uQkwUoWT1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkwUoWT1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQkwUoWT1X .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQkwUoWT1X .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uQkwUoWT1X .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uQkwUoWT1X .card-wrapper {
    padding: 4rem;
  }
}
.cid-uQkwUoWT1X .mbr-text,
.cid-uQkwUoWT1X .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uQkwUoWT1X .card-title,
.cid-uQkwUoWT1X .card-box {
  text-align: left;
  color: #000000;
}
.cid-uQkwUoWT1X .mbr-section-subtitle {
  text-align: left;
}
.cid-uQkwUoWT1X .mbr-text {
  text-align: left;
}
.cid-uQkwUoWT1X .mbr-card-title {
  text-align: left;
}
.cid-uQkJJXIVxR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQkJJXIVxR .title_block {
  margin-bottom: 80px;
}
.cid-uQkJJXIVxR .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #f98c25;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uQkJJXIVxR .mbr-section-title {
  color: #000000;
}
.cid-uQkJJXIVxR .image img {
  width: 100%;
  object-fit: cover;
}
.cid-uQkJJXIVxR .mbr-text {
  margin-top: 30px;
}
.cid-uQkJJXIVxR .nav-tabs .nav-item.open .nav-link:focus,
.cid-uQkJJXIVxR .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uQkJJXIVxR .nav-tabs {
  border: none;
}
.cid-uQkJJXIVxR .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-uQkJJXIVxR .nav-tabs .nav-link {
  background-color: #f2edda !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #051441 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uQkJJXIVxR .nav-tabs .nav-link.active {
  background-color: #f98c25 !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-uQkJJXIVxR .nav-tabs .nav-link:hover {
  background-color: #f98c25 !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-uQkJJXIVxR .nav-tabs .nav-link strong,
.cid-uQkJJXIVxR .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-uQkJJXIVxR .title_block {
    margin-bottom: 40px;
  }
  .cid-uQkJJXIVxR .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uQkJJXIVxR .mbr-text {
    margin-top: 20px;
  }
}
.cid-uQkJJXIVxR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkJJXIVxR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQkNgUj2uS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQkNgUj2uS h2,
.cid-uQkNgUj2uS h3,
.cid-uQkNgUj2uS h4,
.cid-uQkNgUj2uS p {
  margin: 0;
}
.cid-uQkNgUj2uS .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uQkNgUj2uS .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uQkNgUj2uS .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uQk7OGXdES {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uQk7OGXdES .mbr-section-subtitle,
.cid-uQk7OGXdES .caption-text {
  color: #8d97ad;
}
.cid-uQk7OGXdES .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uQk7OGXdES .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uQk7OGXdES .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uQk7OGXdES .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uQk7OGXdES .mbr-section-subtitle {
  color: #333333;
}
.cid-uQk7OHlJHA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uQk7OHlJHA .mbr-section-subtitle,
.cid-uQk7OHlJHA .caption-text {
  color: #8d97ad;
}
.cid-uQk7OHlJHA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uQk7OHlJHA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uQk7OHlJHA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uQk7OHlJHA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uQk7OHlJHA .mbr-section-subtitle {
  color: #333333;
}
.cid-uQlQaaeitI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uQlQaaeitI .quote {
  left: 0%;
  bottom: 0;
}
.cid-uQlQaaeitI .colored-text {
  color: #000000 !important;
}
@media (min-width: 768px) {
  .cid-uQlQaaeitI .quote {
    left: -10%;
  }
}
.cid-uQlQaaeitI .img__container {
  height: min-content;
  width: 60vw;
}
@media (max-width: 767.98px) {
  .cid-uQlQaaeitI .img__container {
    width: 100vw;
  }
}
.cid-uQlQaaeitI .img__container img {
  max-height: 450px;
  object-fit: cover;
  object-position: center;
}
.cid-uQlQaaeitI .item-wrap {
  list-style-position: inside;
}
.cid-uQlQaaeitI .mbr-section-title {
  color: #000000;
}
.cid-uQlQaaeitI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQlQaaeitI .mbr-text {
  color: #000000;
}
.cid-uQlQaaeitI .mbr-text.quote {
  color: #f98c25;
}
.cid-uQk7OI9WH5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uQk7OI9WH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQk7OI9WH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQk7OI9WH5 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uQk7OI9WH5 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uQk7OI9WH5 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uQk7OI9WH5 .item-img {
    width: 100%;
  }
}
.cid-uQk7OI9WH5 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uQk7OI9WH5 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uQk7OI9WH5 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uQk7OI9WH5 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uQk7OI9WH5 .card-title {
  color: #131313;
}
.cid-uQk7OI9WH5 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uQk7OI9WH5 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uQk7OI9WH5 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uQk7OI9WH5 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uQk7OI9WH5 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uQk7OI9WH5 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uQk7OI9WH5 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uQk7OI9WH5 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uQlUFlA4QB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQlUFlA4QB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQlUFlA4QB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQlUFlA4QB .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uQlUFlA4QB .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-uQlUFlA4QB img,
.cid-uQlUFlA4QB .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uQlUFlA4QB .item:focus,
.cid-uQlUFlA4QB span:focus {
  outline: none;
}
.cid-uQlUFlA4QB .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uQlUFlA4QB .item {
    margin-bottom: 1rem;
  }
}
.cid-uQlUFlA4QB .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uQlUFlA4QB .mbr-section-title {
  color: #232323;
}
.cid-uQlUFlA4QB .mbr-text,
.cid-uQlUFlA4QB .mbr-section-btn {
  color: #232323;
}
.cid-uQlUFlA4QB .content-head {
  max-width: 800px;
}
.cid-uQk7OJSIr2 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uQk7OJSIr2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uQk7OJSIr2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uQk7OJSIr2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uQk7OJSIr2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uQk7OJSIr2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uQk7OJSIr2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uQk7OJSIr2 .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-uQk7OJSIr2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uQk7OJSIr2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uQk7OJSIr2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uQk7OJSIr2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uQk7OJSIr2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQk7OJSIr2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uQk7OJSIr2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRaHNZ5sEk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRaHNZ5sEk .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uRaHNZ5sEk .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uRaHNZ5sEk .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uRaHNZ5sEk .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uRaHNZ5sEk .mbr-section-title,
.cid-uRaHNZ5sEk .card_topic {
  margin-bottom: 12px;
}
.cid-uRaHNZ5sEk .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uRaHNZ5sEk .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uRaHNZ5sEk .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uRaHNZ5sEk .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uRaHNZ5sEk .category_content,
.cid-uRaHNZ5sEk .date,
.cid-uRaHNZ5sEk .name_author {
  opacity: .8;
}
.cid-uRaHNZ5sEk .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uRaHNZ5sEk .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uRaHNZ5sEk .item-img,
.cid-uRaHNZ5sEk img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uRaHNZ5sEk .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uRaHNZ5sEk .item-img {
    margin-bottom: 20px;
  }
}
.cid-uRaHNZ5sEk .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uRaHNZ5sEk .mbr-section-btn .btn-secondary-outline:hover,
.cid-uRaHNZ5sEk .mbr-section-btn .btn-secondary-outline .active,
.cid-uRaHNZ5sEk .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uRaHNZIMjh {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHNZIMjh .mbr-section-subtitle,
.cid-uRaHNZIMjh .caption-text {
  color: #8d97ad;
}
.cid-uRaHNZIMjh .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHNZIMjh .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHNZIMjh .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHNZIMjh .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHNZIMjh .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO05WWu {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO05WWu .mbr-section-subtitle,
.cid-uRaHO05WWu .caption-text {
  color: #8d97ad;
}
.cid-uRaHO05WWu .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO05WWu .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO05WWu .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO05WWu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO05WWu .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO0x3AI {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO0x3AI .mbr-section-subtitle,
.cid-uRaHO0x3AI .caption-text {
  color: #8d97ad;
}
.cid-uRaHO0x3AI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO0x3AI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO0x3AI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO0x3AI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO0x3AI .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO12sbJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO12sbJ .mbr-section-subtitle,
.cid-uRaHO12sbJ .caption-text {
  color: #8d97ad;
}
.cid-uRaHO12sbJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO12sbJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO12sbJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO12sbJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO12sbJ .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO1x2wA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO1x2wA .mbr-section-subtitle,
.cid-uRaHO1x2wA .caption-text {
  color: #8d97ad;
}
.cid-uRaHO1x2wA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO1x2wA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO1x2wA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO1x2wA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO1x2wA .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO1ZsQq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO1ZsQq .mbr-section-subtitle,
.cid-uRaHO1ZsQq .caption-text {
  color: #8d97ad;
}
.cid-uRaHO1ZsQq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO1ZsQq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO1ZsQq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO1ZsQq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO1ZsQq .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO2w8pI {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO2w8pI .mbr-section-subtitle,
.cid-uRaHO2w8pI .caption-text {
  color: #8d97ad;
}
.cid-uRaHO2w8pI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO2w8pI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO2w8pI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO2w8pI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO2w8pI .mbr-section-subtitle {
  color: #333333;
}
.cid-uRaHO33gXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uRaHO33gXw .mbr-section-subtitle,
.cid-uRaHO33gXw .caption-text {
  color: #8d97ad;
}
.cid-uRaHO33gXw .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uRaHO33gXw .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uRaHO33gXw .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uRaHO33gXw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uRaHO33gXw .mbr-section-subtitle {
  color: #333333;
}
.cid-uRbAiWDcdx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2edda;
}
.cid-uRbAiWDcdx .mbr-text {
  color: #000000;
}
.cid-uRbAiWDcdx .mbr-section-subtitle {
  color: #000000;
}
.cid-uRbAiWDcdx .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRbAiWDcdx .mbr-text,
.cid-uRbAiWDcdx .item .mbr-section-btn {
  text-align: left;
}
.cid-uRbAiWDcdx .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uRbAiWDcdx .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRbAiWDcdx .item-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uRbAiWDcdx .item-wrapper {
    padding: 4rem;
  }
}
.cid-uRbAiWDcdx .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uRbAiWDcdx .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 1rem;
}
.cid-uRbAiWDcdx .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fc7942;
  background-color: #fc7942;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uRbAiWDcdx .mbr-text UL {
  text-align: left;
}
.cid-uRbAiWDcdx .mbr-card-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uRaHO4FVqd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRaHO4FVqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRaHO4FVqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRaHO4FVqd .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uRaHO4FVqd .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uRaHO4FVqd .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uRaHO4FVqd .item-img {
    width: 100%;
  }
}
.cid-uRaHO4FVqd .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uRaHO4FVqd .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uRaHO4FVqd .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uRaHO4FVqd .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uRaHO4FVqd .card-title {
  color: #131313;
}
.cid-uRaHO4FVqd .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uRaHO4FVqd .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uRaHO4FVqd .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uRaHO4FVqd .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uRaHO4FVqd .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uRaHO4FVqd .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uRaHO4FVqd .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uRaHO4FVqd .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uRaHO6CQiT {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uRaHO6CQiT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uRaHO6CQiT .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uRaHO6CQiT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uRaHO6CQiT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uRaHO6CQiT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uRaHO6CQiT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uRaHO6CQiT .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-uRaHO6CQiT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uRaHO6CQiT .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uRaHO6CQiT .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uRaHO6CQiT .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRaHO6CQiT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uRaHO6CQiT .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uRaHO6CQiT .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSYskJekNi {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f98c25;
}
.cid-uSYskJekNi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYskJekNi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYskJekNi .content-wrapper .mbr-label {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uSYskJekNi .content-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-uSYskJekNi .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uSYskJekNi .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSYskJekNi .mbr-section-title {
  color: #f5f8ff;
}
.cid-uSYskJekNi .mbr-label {
  color: #f5f8ff;
  text-align: center;
}
.cid-uSYskJekNi .mbr-section-title,
.cid-uSYskJekNi .title-wrapper,
.cid-uSYskJekNi .mbr-section-btn {
  text-align: center;
}
.cid-uSYrhIm9xO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSYrhIm9xO h2,
.cid-uSYrhIm9xO h3,
.cid-uSYrhIm9xO h4,
.cid-uSYrhIm9xO p {
  margin: 0;
}
.cid-uSYrhIm9xO .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uSYrhIm9xO .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uSYrhIm9xO .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uSYtQTyP0F {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uSYtQTyP0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYtQTyP0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYtQTyP0F .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uSYtQTyP0F .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-uSYtQTyP0F .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-uSYtQTyP0F .lists-col {
  width: 100%;
}
.cid-uSYtQTyP0F .col-list {
  width: 100%;
}
.cid-uSYtQTyP0F .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSYtQTyP0F .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-uSYtQTyP0F li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-uSYtQTyP0F ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-uSYuXKx2M5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uSYuXKx2M5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYuXKx2M5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYuXKx2M5 .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uSYuXKx2M5 .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-uSYuXKx2M5 .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-uSYuXKx2M5 .lists-col {
  width: 100%;
}
.cid-uSYuXKx2M5 .col-list {
  width: 100%;
}
.cid-uSYuXKx2M5 .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSYuXKx2M5 .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-uSYuXKx2M5 li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-uSYuXKx2M5 ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-uSYvyPyIUF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uSYvyPyIUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYvyPyIUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYvyPyIUF .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uSYvyPyIUF .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-uSYvyPyIUF .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-uSYvyPyIUF .lists-col {
  width: 100%;
}
.cid-uSYvyPyIUF .col-list {
  width: 100%;
}
.cid-uSYvyPyIUF .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSYvyPyIUF .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-uSYvyPyIUF li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-uSYvyPyIUF ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-uSYvT7y4Ua {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uSYvT7y4Ua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYvT7y4Ua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYvT7y4Ua .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uSYvT7y4Ua .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-uSYvT7y4Ua .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-uSYvT7y4Ua .lists-col {
  width: 100%;
}
.cid-uSYvT7y4Ua .col-list {
  width: 100%;
}
.cid-uSYvT7y4Ua .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSYvT7y4Ua .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-uSYvT7y4Ua li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-uSYvT7y4Ua ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-uSYwu9TGoI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-uSYwu9TGoI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSYwu9TGoI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSYwu9TGoI .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uSYwu9TGoI .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-uSYwu9TGoI .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-uSYwu9TGoI .lists-col {
  width: 100%;
}
.cid-uSYwu9TGoI .col-list {
  width: 100%;
}
.cid-uSYwu9TGoI .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSYwu9TGoI .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-uSYwu9TGoI li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-uSYwu9TGoI ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-uSYybhNa9w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSYybhNa9w h2,
.cid-uSYybhNa9w h3,
.cid-uSYybhNa9w h4,
.cid-uSYybhNa9w p {
  margin: 0;
}
.cid-uSYybhNa9w .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uSYybhNa9w .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uSYybhNa9w .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-uSYrhIH9qH {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uSYrhIH9qH .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uSYrhIH9qH .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uSYrhIH9qH .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uSYrhIH9qH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uSYrhIH9qH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uSYrhIH9qH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uSYrhIH9qH .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-uSYrhIH9qH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uSYrhIH9qH .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uSYrhIH9qH .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uSYrhIH9qH .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uSYrhIH9qH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uSYrhIH9qH .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uSYrhIH9qH .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUQx4fcxoI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUQx4fcxoI .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uUQx4fcxoI .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uUQx4fcxoI .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uUQx4fcxoI .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uUQx4fcxoI .mbr-section-title,
.cid-uUQx4fcxoI .card_topic {
  margin-bottom: 12px;
}
.cid-uUQx4fcxoI .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uUQx4fcxoI .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uUQx4fcxoI .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uUQx4fcxoI .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uUQx4fcxoI .category_content,
.cid-uUQx4fcxoI .date,
.cid-uUQx4fcxoI .name_author {
  opacity: .8;
}
.cid-uUQx4fcxoI .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uUQx4fcxoI .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uUQx4fcxoI .item-img,
.cid-uUQx4fcxoI img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uUQx4fcxoI .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uUQx4fcxoI .item-img {
    margin-bottom: 20px;
  }
}
.cid-uUQx4fcxoI .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uUQx4fcxoI .mbr-section-btn .btn-secondary-outline:hover,
.cid-uUQx4fcxoI .mbr-section-btn .btn-secondary-outline .active,
.cid-uUQx4fcxoI .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uUQx4gafxS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQx4gafxS .mbr-section-subtitle,
.cid-uUQx4gafxS .caption-text {
  color: #8d97ad;
}
.cid-uUQx4gafxS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQx4gafxS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQx4gafxS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQx4gafxS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQx4gafxS .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQBS0x983 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUQBS0x983 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uUQBS0x983 .row {
  justify-content: center;
}
.cid-uUQBS0x983 a {
  font-weight: 400 !important;
}
.cid-uUQx4h4Do5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQx4h4Do5 .mbr-section-subtitle,
.cid-uUQx4h4Do5 .caption-text {
  color: #8d97ad;
}
.cid-uUQx4h4Do5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQx4h4Do5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQx4h4Do5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQx4h4Do5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQx4h4Do5 .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQx4i1Z2C {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQx4i1Z2C .mbr-section-subtitle,
.cid-uUQx4i1Z2C .caption-text {
  color: #8d97ad;
}
.cid-uUQx4i1Z2C .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQx4i1Z2C .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQx4i1Z2C .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQx4i1Z2C .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQx4i1Z2C .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQx4oQbus {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQx4oQbus .mbr-section-subtitle,
.cid-uUQx4oQbus .caption-text {
  color: #8d97ad;
}
.cid-uUQx4oQbus .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQx4oQbus .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQx4oQbus .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQx4oQbus .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQx4oQbus .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQx4pN2tx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQx4pN2tx .mbr-section-subtitle,
.cid-uUQx4pN2tx .caption-text {
  color: #8d97ad;
}
.cid-uUQx4pN2tx .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQx4pN2tx .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQx4pN2tx .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQx4pN2tx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQx4pN2tx .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQHdennUj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uUQHdennUj .mbr-section-subtitle,
.cid-uUQHdennUj .caption-text {
  color: #8d97ad;
}
.cid-uUQHdennUj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uUQHdennUj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uUQHdennUj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uUQHdennUj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uUQHdennUj .mbr-section-subtitle {
  color: #333333;
}
.cid-uUQHZSalaN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUQHZSalaN .p {
  color: #333333;
  padding-top: 30px;
}
.cid-uUQHZSalaN .row {
  justify-content: center;
}
.cid-uUQHZSalaN a {
  font-weight: 400 !important;
}
.cid-uUQLEV3c3F {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUQLEV3c3F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQLEV3c3F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUQLEV3c3F .row {
  justify-content: space-between;
}
.cid-uUQLEV3c3F .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #f2edda;
}
@media (max-width: 1440px) {
  .cid-uUQLEV3c3F .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uUQLEV3c3F .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uUQLEV3c3F .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uUQLEV3c3F .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uUQLEV3c3F .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uUQLEV3c3F .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uUQLEV3c3F .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uUQLEV3c3F .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uUQLEV3c3F .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uUQLEV3c3F .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uUQLEV3c3F .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUQLEV3c3F .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uUQLEV3c3F .mbr-section-title {
  color: #ffffff;
}
.cid-uUQLEV3c3F .mbr-text,
.cid-uUQLEV3c3F .text-wrapper {
  color: #000000;
}
.cid-uUQLEV3c3F .mbr-section-title,
.cid-uUQLEV3c3F .mbr-section-btn {
  color: #000000;
}
.cid-uUQMpvmzbr {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUQMpvmzbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQMpvmzbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUQMpvmzbr .row {
  justify-content: space-between;
}
.cid-uUQMpvmzbr .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #f2edda;
}
@media (max-width: 1440px) {
  .cid-uUQMpvmzbr .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uUQMpvmzbr .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uUQMpvmzbr .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uUQMpvmzbr .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uUQMpvmzbr .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uUQMpvmzbr .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uUQMpvmzbr .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uUQMpvmzbr .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uUQMpvmzbr .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uUQMpvmzbr .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uUQMpvmzbr .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUQMpvmzbr .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uUQMpvmzbr .mbr-section-title {
  color: #ffffff;
}
.cid-uUQMpvmzbr .mbr-text,
.cid-uUQMpvmzbr .text-wrapper {
  color: #000000;
}
.cid-uUQMpvmzbr .mbr-section-title,
.cid-uUQMpvmzbr .mbr-section-btn {
  color: #000000;
}
.cid-uUQNkZuIX0 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUQNkZuIX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQNkZuIX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUQNkZuIX0 .row {
  justify-content: space-between;
}
.cid-uUQNkZuIX0 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #f2edda;
}
@media (max-width: 1440px) {
  .cid-uUQNkZuIX0 .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uUQNkZuIX0 .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uUQNkZuIX0 .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uUQNkZuIX0 .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uUQNkZuIX0 .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uUQNkZuIX0 .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uUQNkZuIX0 .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uUQNkZuIX0 .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uUQNkZuIX0 .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uUQNkZuIX0 .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uUQNkZuIX0 .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUQNkZuIX0 .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uUQNkZuIX0 .mbr-section-title {
  color: #ffffff;
}
.cid-uUQNkZuIX0 .mbr-text,
.cid-uUQNkZuIX0 .text-wrapper {
  color: #000000;
}
.cid-uUQNkZuIX0 .mbr-section-title,
.cid-uUQNkZuIX0 .mbr-section-btn {
  color: #000000;
}
.cid-uUQOSpHwfJ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  box-shadow: inset 25rem 1rem 10rem #f2edda !important;
  background-image: url("../../../assets/images/mbr-1920x1239.jpg");
}
.cid-uUQOSpHwfJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQOSpHwfJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uUQOSpHwfJ .container {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uUQOSpHwfJ .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uUQOSpHwfJ .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uUQOSpHwfJ .title-wrapper .mbr-text {
  margin-bottom: 35px;
}
.cid-uUQOSpHwfJ .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 330px;
  margin-left: 80px;
}
@media (max-width: 992px) {
  .cid-uUQOSpHwfJ .image-wrapper {
    margin: 0;
  }
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_1 {
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 1;
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_1 img {
  width: 143px;
  height: 143px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 768px) {
  .cid-uUQOSpHwfJ .image-wrapper .image-wrap_1 img {
    width: 120px;
    height: 120px;
  }
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_1 .card-title {
  margin: 16px 0 0;
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_2 {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 1;
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_2 img {
  width: 143px;
  height: 143px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 768px) {
  .cid-uUQOSpHwfJ .image-wrapper .image-wrap_2 img {
    width: 120px;
    height: 120px;
  }
}
.cid-uUQOSpHwfJ .image-wrapper .image-wrap_2 .card-title {
  margin: 16px 0 0;
}
.cid-uUQOSpHwfJ .image-wrapper .decor-wrap {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 4px dashed #f98c25;
  border-right: 4px dashed #f98c25;
  border-radius: 3rem 3rem 15rem 3rem;
  width: 100%;
  height: 100%;
}
.cid-uUQOSpHwfJ .mbr-section-title {
  color: #000000;
}
.cid-uUQOSpHwfJ .mbr-text {
  color: #000000;
}
.cid-uUQOSpHwfJ .card-title {
  color: #000000;
  text-align: center;
}
.cid-uUQx4rYjFh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uUQx4rYjFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQx4rYjFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUQx4rYjFh .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uUQx4rYjFh .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uUQx4rYjFh .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uUQx4rYjFh .item-img {
    width: 100%;
  }
}
.cid-uUQx4rYjFh .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uUQx4rYjFh .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uUQx4rYjFh .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uUQx4rYjFh .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uUQx4rYjFh .card-title {
  color: #131313;
}
.cid-uUQx4rYjFh .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uUQx4rYjFh .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uUQx4rYjFh .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uUQx4rYjFh .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uUQx4rYjFh .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uUQx4rYjFh .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uUQx4rYjFh .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uUQx4rYjFh .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uUQx4tvUP8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUQx4tvUP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUQx4tvUP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUQx4tvUP8 .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uUQx4tvUP8 .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-uUQx4tvUP8 img,
.cid-uUQx4tvUP8 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uUQx4tvUP8 .item:focus,
.cid-uUQx4tvUP8 span:focus {
  outline: none;
}
.cid-uUQx4tvUP8 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUQx4tvUP8 .item {
    margin-bottom: 1rem;
  }
}
.cid-uUQx4tvUP8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uUQx4tvUP8 .mbr-section-title {
  color: #232323;
}
.cid-uUQx4tvUP8 .mbr-text,
.cid-uUQx4tvUP8 .mbr-section-btn {
  color: #232323;
}
.cid-uUQx4tvUP8 .content-head {
  max-width: 800px;
}
.cid-uUQx4uZH5C {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uUQx4uZH5C .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUQx4uZH5C .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUQx4uZH5C .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUQx4uZH5C .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUQx4uZH5C .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUQx4uZH5C .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUQx4uZH5C .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-uUQx4uZH5C .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUQx4uZH5C .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUQx4uZH5C .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUQx4uZH5C .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUQx4uZH5C .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUQx4uZH5C .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUQx4uZH5C .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVvLDHPi6L {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVvLDHPi6L .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uVvLDHPi6L .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uVvLDHPi6L .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uVvLDHPi6L .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uVvLDHPi6L .mbr-section-title,
.cid-uVvLDHPi6L .card_topic {
  margin-bottom: 12px;
}
.cid-uVvLDHPi6L .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uVvLDHPi6L .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uVvLDHPi6L .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uVvLDHPi6L .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uVvLDHPi6L .category_content,
.cid-uVvLDHPi6L .date,
.cid-uVvLDHPi6L .name_author {
  opacity: .8;
}
.cid-uVvLDHPi6L .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uVvLDHPi6L .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uVvLDHPi6L .item-img,
.cid-uVvLDHPi6L img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uVvLDHPi6L .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uVvLDHPi6L .item-img {
    margin-bottom: 20px;
  }
}
.cid-uVvLDHPi6L .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uVvLDHPi6L .mbr-section-btn .btn-secondary-outline:hover,
.cid-uVvLDHPi6L .mbr-section-btn .btn-secondary-outline .active,
.cid-uVvLDHPi6L .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uVvLDIoPgq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uVvLDIoPgq .mbr-section-subtitle,
.cid-uVvLDIoPgq .caption-text {
  color: #8d97ad;
}
.cid-uVvLDIoPgq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uVvLDIoPgq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uVvLDIoPgq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uVvLDIoPgq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uVvLDIoPgq .mbr-section-subtitle {
  color: #333333;
}
.cid-uVvLDJmlQB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uVvLDJmlQB .mbr-section-subtitle,
.cid-uVvLDJmlQB .caption-text {
  color: #8d97ad;
}
.cid-uVvLDJmlQB .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uVvLDJmlQB .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uVvLDJmlQB .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uVvLDJmlQB .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uVvLDJmlQB .mbr-section-subtitle {
  color: #333333;
}
.cid-uVvLDJQrah {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uVvLDJQrah .mbr-section-subtitle,
.cid-uVvLDJQrah .caption-text {
  color: #8d97ad;
}
.cid-uVvLDJQrah .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uVvLDJQrah .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uVvLDJQrah .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uVvLDJQrah .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uVvLDJQrah .mbr-section-subtitle {
  color: #333333;
}
.cid-uVvLDKnOH2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uVvLDKnOH2 .mbr-section-subtitle,
.cid-uVvLDKnOH2 .caption-text {
  color: #8d97ad;
}
.cid-uVvLDKnOH2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uVvLDKnOH2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uVvLDKnOH2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uVvLDKnOH2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uVvLDKnOH2 .mbr-section-subtitle {
  color: #333333;
}
.cid-uVvLDKW67U {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uVvLDKW67U .mbr-section-subtitle,
.cid-uVvLDKW67U .caption-text {
  color: #8d97ad;
}
.cid-uVvLDKW67U .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uVvLDKW67U .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uVvLDKW67U .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uVvLDKW67U .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uVvLDKW67U .mbr-section-subtitle {
  color: #333333;
}
.cid-uVwMAUqWMt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVwMAUqWMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVwMAUqWMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uVwMAUqWMt .container {
    padding: 0 25px;
  }
}
.cid-uVwMAUqWMt .row {
  justify-content: center;
  margin: 0;
}
.cid-uVwMAUqWMt .row .card {
  padding: 0;
}
.cid-uVwMAUqWMt .title-wrapper {
  margin-bottom: 50px;
}
.cid-uVwMAUqWMt .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uVwMAUqWMt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVwMAUqWMt .item {
  padding: 0;
}
.cid-uVwMAUqWMt .item:nth-child(3n) .item-wrapper {
  flex-direction: row-reverse;
}
.cid-uVwMAUqWMt .item:nth-child(4n) .item-wrapper {
  flex-direction: row-reverse;
}
.cid-uVwMAUqWMt .item .item-wrapper {
  display: flex;
  border-radius: 0 !important;
}
.cid-uVwMAUqWMt .item .item-wrapper:hover .item-img img,
.cid-uVwMAUqWMt .item .item-wrapper:focus .item-img img {
  transform: scale(1.05) translateX(2%);
}
@media (max-width: 992px) {
  .cid-uVwMAUqWMt .item .item-wrapper {
    display: block;
  }
}
.cid-uVwMAUqWMt .item .item-wrapper .item-img {
  position: relative;
  overflow: hidden;
  width: 50%;
  display: block;
}
@media (max-width: 992px) {
  .cid-uVwMAUqWMt .item .item-wrapper .item-img {
    width: 100%;
    height: 350px;
  }
}
.cid-uVwMAUqWMt .item .item-wrapper .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  transform: scale(1.05) translateX(0);
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content {
  width: 50%;
  padding: 30px;
  background-color: #f2edda;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uVwMAUqWMt .item .item-wrapper .item-content {
    min-height: auto;
    width: 100%;
  }
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .desc-wrap {
  display: block;
  margin-bottom: 50px;
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .desc-wrap:hover .item-desc,
.cid-uVwMAUqWMt .item .item-wrapper .item-content .desc-wrap:focus .item-desc {
  background-color: #000000;
  color: #ffffff;
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .desc-wrap .item-desc {
  margin-bottom: 10px;
  padding: 0 10px;
  background-color: #ffffff;
  display: inline-flex;
  letter-spacing: .05em;
  transition: all 0.3s ease-in-out;
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .title-wrap .item-subtitle {
  margin-bottom: 10px;
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 20px;
  cursor: pointer;
}
.cid-uVwMAUqWMt .item .item-wrapper .item-content .title-wrap .item-price {
  margin: 0;
}
.cid-uVwMAUqWMt .mbr-section-btn {
  margin-top: 60px;
}
.cid-uVwMAUqWMt .mbr-section-title {
  color: #000000;
}
.cid-uVwMAUqWMt .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uVwMAUqWMt .item-title {
  color: #000000;
}
.cid-uVwMAUqWMt .item-desc {
  color: #000000;
}
.cid-uVwMAUqWMt .item-subtitle {
  color: #000000;
}
.cid-uVwMAUqWMt .item-price {
  color: #000000;
}
.cid-uVwMAUqWMt .mbr-section-title,
.cid-uVwMAUqWMt .mbr-section-btn {
  text-align: center;
}
.cid-uVwOuilPsE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uVwOuilPsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVwOuilPsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVwOuilPsE .mbr-text,
.cid-uVwOuilPsE .mbr-section-btn {
  color: #232323;
}
.cid-uVwOuilPsE .card-title,
.cid-uVwOuilPsE .card-box {
  color: #ffffff;
}
.cid-uVwOuilPsE .mbr-text,
.cid-uVwOuilPsE .link-wrap {
  color: #ffffff;
}
.cid-uVwOuilPsE .card-box .mbr-text,
.cid-uVwOuilPsE .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uVvLDPaznL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uVvLDPaznL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVvLDPaznL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVvLDPaznL .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uVvLDPaznL .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uVvLDPaznL .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uVvLDPaznL .item-img {
    width: 100%;
  }
}
.cid-uVvLDPaznL .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uVvLDPaznL .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uVvLDPaznL .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uVvLDPaznL .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uVvLDPaznL .card-title {
  color: #131313;
}
.cid-uVvLDPaznL .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uVvLDPaznL .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uVvLDPaznL .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uVvLDPaznL .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uVvLDPaznL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uVvLDPaznL .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uVvLDPaznL .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uVvLDPaznL .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uVvLDPZcCw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVvLDPZcCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVvLDPZcCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVvLDPZcCw .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uVvLDPZcCw .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-uVvLDPZcCw img,
.cid-uVvLDPZcCw .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uVvLDPZcCw .item:focus,
.cid-uVvLDPZcCw span:focus {
  outline: none;
}
.cid-uVvLDPZcCw .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVvLDPZcCw .item {
    margin-bottom: 1rem;
  }
}
.cid-uVvLDPZcCw .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uVvLDPZcCw .mbr-section-title {
  color: #232323;
}
.cid-uVvLDPZcCw .mbr-text,
.cid-uVvLDPZcCw .mbr-section-btn {
  color: #232323;
}
.cid-uVvLDPZcCw .content-head {
  max-width: 800px;
}
.cid-uVvLDQNsic {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uVvLDQNsic .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uVvLDQNsic .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uVvLDQNsic .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uVvLDQNsic .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uVvLDQNsic .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uVvLDQNsic .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uVvLDQNsic .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-uVvLDQNsic .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uVvLDQNsic .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVvLDQNsic .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uVvLDQNsic .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVvLDQNsic .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVvLDQNsic .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uVvLDQNsic .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWgFP9cqK0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWgFP9cqK0 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uWgFP9cqK0 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uWgFP9cqK0 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uWgFP9cqK0 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uWgFP9cqK0 .mbr-section-title,
.cid-uWgFP9cqK0 .card_topic {
  margin-bottom: 12px;
}
.cid-uWgFP9cqK0 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uWgFP9cqK0 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uWgFP9cqK0 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uWgFP9cqK0 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uWgFP9cqK0 .category_content,
.cid-uWgFP9cqK0 .date,
.cid-uWgFP9cqK0 .name_author {
  opacity: .8;
}
.cid-uWgFP9cqK0 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uWgFP9cqK0 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uWgFP9cqK0 .item-img,
.cid-uWgFP9cqK0 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uWgFP9cqK0 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uWgFP9cqK0 .item-img {
    margin-bottom: 20px;
  }
}
.cid-uWgFP9cqK0 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uWgFP9cqK0 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uWgFP9cqK0 .mbr-section-btn .btn-secondary-outline .active,
.cid-uWgFP9cqK0 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uWgFPa8LMY {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPa8LMY .mbr-section-subtitle,
.cid-uWgFPa8LMY .caption-text {
  color: #8d97ad;
}
.cid-uWgFPa8LMY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPa8LMY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPa8LMY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPa8LMY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPa8LMY .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPbSGea {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPbSGea .mbr-section-subtitle,
.cid-uWgFPbSGea .caption-text {
  color: #8d97ad;
}
.cid-uWgFPbSGea .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPbSGea .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPbSGea .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPbSGea .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPbSGea .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPcGadU {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPcGadU .mbr-section-subtitle,
.cid-uWgFPcGadU .caption-text {
  color: #8d97ad;
}
.cid-uWgFPcGadU .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPcGadU .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPcGadU .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPcGadU .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPcGadU .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPdtWaa {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPdtWaa .mbr-section-subtitle,
.cid-uWgFPdtWaa .caption-text {
  color: #8d97ad;
}
.cid-uWgFPdtWaa .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPdtWaa .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPdtWaa .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPdtWaa .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPdtWaa .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPegGmu {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPegGmu .mbr-section-subtitle,
.cid-uWgFPegGmu .caption-text {
  color: #8d97ad;
}
.cid-uWgFPegGmu .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPegGmu .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPegGmu .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPegGmu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPegGmu .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPf6znL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgFPf6znL .mbr-section-subtitle,
.cid-uWgFPf6znL .caption-text {
  color: #8d97ad;
}
.cid-uWgFPf6znL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgFPf6znL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgFPf6znL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgFPf6znL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgFPf6znL .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgRG1Ilh5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgRG1Ilh5 .mbr-section-subtitle,
.cid-uWgRG1Ilh5 .caption-text {
  color: #8d97ad;
}
.cid-uWgRG1Ilh5 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgRG1Ilh5 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgRG1Ilh5 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgRG1Ilh5 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgRG1Ilh5 .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgRGTkx2L {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uWgRGTkx2L .mbr-section-subtitle,
.cid-uWgRGTkx2L .caption-text {
  color: #8d97ad;
}
.cid-uWgRGTkx2L .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uWgRGTkx2L .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uWgRGTkx2L .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uWgRGTkx2L .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uWgRGTkx2L .mbr-section-subtitle {
  color: #333333;
}
.cid-uWgFPkCkPi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uWgFPkCkPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWgFPkCkPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWgFPkCkPi .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uWgFPkCkPi .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uWgFPkCkPi .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uWgFPkCkPi .item-img {
    width: 100%;
  }
}
.cid-uWgFPkCkPi .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uWgFPkCkPi .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uWgFPkCkPi .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uWgFPkCkPi .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uWgFPkCkPi .card-title {
  color: #131313;
}
.cid-uWgFPkCkPi .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uWgFPkCkPi .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uWgFPkCkPi .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uWgFPkCkPi .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uWgFPkCkPi .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uWgFPkCkPi .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uWgFPkCkPi .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uWgFPkCkPi .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uWhp4RwphR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-uWhp4RwphR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhp4RwphR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhp4RwphR .row {
  position: relative;
  padding: 8rem 4rem;
  border-radius: 20rem;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uWhp4RwphR .row {
    padding: 2rem 1rem;
    border-radius: 3rem;
  }
}
.cid-uWhp4RwphR .row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20rem;
  height: 100%;
  background: #fa7a00;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-uWhp4RwphR .row:before {
    border-radius: 3rem;
  }
}
.cid-uWhp4RwphR .row .col-12 {
  position: relative;
}
.cid-uWhp4RwphR .mbr-section-title {
  color: #ffffff;
}
.cid-uWhp4RwphR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uWhp4RwphR .mbr-text,
.cid-uWhp4RwphR .mbr-section-btn {
  color: #ffffff;
}
.cid-uWgFPlOhWg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWgFPlOhWg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWgFPlOhWg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWgFPlOhWg .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uWgFPlOhWg .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-uWgFPlOhWg img,
.cid-uWgFPlOhWg .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uWgFPlOhWg .item:focus,
.cid-uWgFPlOhWg span:focus {
  outline: none;
}
.cid-uWgFPlOhWg .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uWgFPlOhWg .item {
    margin-bottom: 1rem;
  }
}
.cid-uWgFPlOhWg .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWgFPlOhWg .mbr-section-title {
  color: #232323;
}
.cid-uWgFPlOhWg .mbr-text,
.cid-uWgFPlOhWg .mbr-section-btn {
  color: #232323;
}
.cid-uWgFPlOhWg .content-head {
  max-width: 800px;
}
.cid-uWgFPn5bFu {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uWgFPn5bFu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWgFPn5bFu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWgFPn5bFu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWgFPn5bFu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWgFPn5bFu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWgFPn5bFu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWgFPn5bFu .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-uWgFPn5bFu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWgFPn5bFu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWgFPn5bFu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWgFPn5bFu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWgFPn5bFu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWgFPn5bFu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWgFPn5bFu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0ldA3ogHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ldA3ogHo .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0ldA3ogHo .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0ldA3ogHo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0ldA3ogHo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0ldA3ogHo .container {
    padding: 0 1rem;
  }
}
.cid-v0ldA3ogHo .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0ldA3ogHo .nav-link {
  position: relative;
}
.cid-v0ldA3ogHo .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0ldA3ogHo nav.navbar {
  position: fixed;
}
.cid-v0ldA3ogHo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ldA3ogHo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ldA3ogHo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ldA3ogHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar.collapsed {
  justify-content: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ldA3ogHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ldA3ogHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ldA3ogHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ldA3ogHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ldA3ogHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ldA3ogHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ldA3ogHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ldA3ogHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ldA3ogHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ldA3ogHo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ldA3ogHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ldA3ogHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ldA3ogHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0ldA3ogHo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ldA3ogHo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ldA3ogHo .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ldA3ogHo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ldA3ogHo .dropdown-item:hover,
.cid-v0ldA3ogHo .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0ldA3ogHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ldA3ogHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ldA3ogHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ldA3ogHo .dropdown-menu,
.cid-v0ldA3ogHo .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0ldA3ogHo .nav-item:focus,
.cid-v0ldA3ogHo .nav-link:focus {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ldA3ogHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ldA3ogHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ldA3ogHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ldA3ogHo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ldA3ogHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ldA3ogHo .dropdown-item.active,
.cid-v0ldA3ogHo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ldA3ogHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ldA3ogHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0ldA3ogHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ldA3ogHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ldA3ogHo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ldA3ogHo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ldA3ogHo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ldA3ogHo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ldA3ogHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ldA3ogHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ldA3ogHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ldA3ogHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ldA3ogHo .navbar {
    height: 70px;
  }
  .cid-v0ldA3ogHo .navbar.opened {
    height: auto;
  }
  .cid-v0ldA3ogHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXRWQgMcyX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXRWQgMcyX .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-uXRWQgMcyX .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uXRWQgMcyX .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-uXRWQgMcyX .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-uXRWQgMcyX .mbr-section-title,
.cid-uXRWQgMcyX .card_topic {
  margin-bottom: 12px;
}
.cid-uXRWQgMcyX .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-uXRWQgMcyX .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-uXRWQgMcyX .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-uXRWQgMcyX .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-uXRWQgMcyX .category_content,
.cid-uXRWQgMcyX .date,
.cid-uXRWQgMcyX .name_author {
  opacity: .8;
}
.cid-uXRWQgMcyX .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uXRWQgMcyX .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-uXRWQgMcyX .item-img,
.cid-uXRWQgMcyX img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-uXRWQgMcyX .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uXRWQgMcyX .item-img {
    margin-bottom: 20px;
  }
}
.cid-uXRWQgMcyX .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uXRWQgMcyX .mbr-section-btn .btn-secondary-outline:hover,
.cid-uXRWQgMcyX .mbr-section-btn .btn-secondary-outline .active,
.cid-uXRWQgMcyX .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-uXRWQhoEPm {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQhoEPm .mbr-section-subtitle,
.cid-uXRWQhoEPm .caption-text {
  color: #8d97ad;
}
.cid-uXRWQhoEPm .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQhoEPm .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQhoEPm .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQhoEPm .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQhoEPm .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQigONX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQigONX .mbr-section-subtitle,
.cid-uXRWQigONX .caption-text {
  color: #8d97ad;
}
.cid-uXRWQigONX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQigONX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQigONX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQigONX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQigONX .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQiLyfV {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQiLyfV .mbr-section-subtitle,
.cid-uXRWQiLyfV .caption-text {
  color: #8d97ad;
}
.cid-uXRWQiLyfV .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQiLyfV .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQiLyfV .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQiLyfV .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQiLyfV .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQjib5u {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQjib5u .mbr-section-subtitle,
.cid-uXRWQjib5u .caption-text {
  color: #8d97ad;
}
.cid-uXRWQjib5u .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQjib5u .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQjib5u .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQjib5u .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQjib5u .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQjUVx2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQjUVx2 .mbr-section-subtitle,
.cid-uXRWQjUVx2 .caption-text {
  color: #8d97ad;
}
.cid-uXRWQjUVx2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQjUVx2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQjUVx2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQjUVx2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQjUVx2 .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQkpdCN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXRWQkpdCN .mbr-section-subtitle,
.cid-uXRWQkpdCN .caption-text {
  color: #8d97ad;
}
.cid-uXRWQkpdCN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXRWQkpdCN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXRWQkpdCN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXRWQkpdCN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXRWQkpdCN .mbr-section-subtitle {
  color: #333333;
}
.cid-uXSTKWBCke {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-uXSTKWBCke .mbr-section-subtitle,
.cid-uXSTKWBCke .caption-text {
  color: #8d97ad;
}
.cid-uXSTKWBCke .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uXSTKWBCke .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uXSTKWBCke .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uXSTKWBCke .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uXSTKWBCke .mbr-section-subtitle {
  color: #333333;
}
.cid-uXRWQnX7Gw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-uXRWQnX7Gw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXRWQnX7Gw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXRWQnX7Gw .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uXRWQnX7Gw .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uXRWQnX7Gw .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uXRWQnX7Gw .item-img {
    width: 100%;
  }
}
.cid-uXRWQnX7Gw .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uXRWQnX7Gw .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uXRWQnX7Gw .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uXRWQnX7Gw .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uXRWQnX7Gw .card-title {
  color: #131313;
}
.cid-uXRWQnX7Gw .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uXRWQnX7Gw .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uXRWQnX7Gw .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uXRWQnX7Gw .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uXRWQnX7Gw .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-uXRWQnX7Gw .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uXRWQnX7Gw .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uXRWQnX7Gw .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uXRWQoXnui {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uXRWQoXnui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXRWQoXnui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXRWQoXnui .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uXRWQoXnui .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-uXRWQoXnui img,
.cid-uXRWQoXnui .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uXRWQoXnui .item:focus,
.cid-uXRWQoXnui span:focus {
  outline: none;
}
.cid-uXRWQoXnui .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uXRWQoXnui .item {
    margin-bottom: 1rem;
  }
}
.cid-uXRWQoXnui .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uXRWQoXnui .mbr-section-title {
  color: #232323;
}
.cid-uXRWQoXnui .mbr-text,
.cid-uXRWQoXnui .mbr-section-btn {
  color: #232323;
}
.cid-uXRWQoXnui .content-head {
  max-width: 800px;
}
.cid-uXRWQqaDk3 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-uXRWQqaDk3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uXRWQqaDk3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uXRWQqaDk3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uXRWQqaDk3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uXRWQqaDk3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uXRWQqaDk3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uXRWQqaDk3 .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-uXRWQqaDk3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uXRWQqaDk3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uXRWQqaDk3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uXRWQqaDk3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uXRWQqaDk3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uXRWQqaDk3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uXRWQqaDk3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0lis9BFx1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0lis9BFx1 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0lis9BFx1 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0lis9BFx1 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0lis9BFx1 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0lis9BFx1 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0lis9BFx1 .container {
    padding: 0 1rem;
  }
}
.cid-v0lis9BFx1 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0lis9BFx1 .nav-link {
  position: relative;
}
.cid-v0lis9BFx1 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0lis9BFx1 nav.navbar {
  position: fixed;
}
.cid-v0lis9BFx1 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0lis9BFx1 .navbar.opened {
  transition: all 0.3s;
}
.cid-v0lis9BFx1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0lis9BFx1 .navbar .navbar-logo img {
  width: auto;
}
.cid-v0lis9BFx1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0lis9BFx1 .navbar.collapsed {
  justify-content: center;
}
.cid-v0lis9BFx1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0lis9BFx1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0lis9BFx1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0lis9BFx1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0lis9BFx1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0lis9BFx1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0lis9BFx1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0lis9BFx1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0lis9BFx1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0lis9BFx1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0lis9BFx1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0lis9BFx1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0lis9BFx1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0lis9BFx1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0lis9BFx1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0lis9BFx1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0lis9BFx1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0lis9BFx1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0lis9BFx1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0lis9BFx1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0lis9BFx1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0lis9BFx1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0lis9BFx1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0lis9BFx1 .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0lis9BFx1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0lis9BFx1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0lis9BFx1 .dropdown-item:hover,
.cid-v0lis9BFx1 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0lis9BFx1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0lis9BFx1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0lis9BFx1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0lis9BFx1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0lis9BFx1 .dropdown-menu,
.cid-v0lis9BFx1 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0lis9BFx1 .nav-item:focus,
.cid-v0lis9BFx1 .nav-link:focus {
  outline: none;
}
.cid-v0lis9BFx1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0lis9BFx1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0lis9BFx1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0lis9BFx1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0lis9BFx1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0lis9BFx1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0lis9BFx1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0lis9BFx1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0lis9BFx1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0lis9BFx1 .dropdown-item.active,
.cid-v0lis9BFx1 .dropdown-item:active {
  background-color: transparent;
}
.cid-v0lis9BFx1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0lis9BFx1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0lis9BFx1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0lis9BFx1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0lis9BFx1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0lis9BFx1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0lis9BFx1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0lis9BFx1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0lis9BFx1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0lis9BFx1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0lis9BFx1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0lis9BFx1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0lis9BFx1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0lis9BFx1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0lis9BFx1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0lis9BFx1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0lis9BFx1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0lis9BFx1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0lis9BFx1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0lis9BFx1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0lis9BFx1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0lis9BFx1 .navbar {
    height: 70px;
  }
  .cid-v0lis9BFx1 .navbar.opened {
    height: auto;
  }
  .cid-v0lis9BFx1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0lirRHLDI {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-v0lirRHLDI h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-v0lirRHLDI h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-v0lirRHLDI h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-v0lirRHLDI h3:before,
  .cid-v0lirRHLDI h3:after {
    display: none;
  }
}
.cid-v0lirT5lv8 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fef8f5;
}
.cid-v0lirT5lv8 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0lirT5lv8 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0lirT5lv8 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0lirT5lv8 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v0lirT5lv8 img,
.cid-v0lirT5lv8 .item-img {
  border-radius: 4px;
}
.cid-v0lirT5lv8 .item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.cid-v0lirT5lv8 .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}
.cid-v0lirT5lv8 .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .45;
  background-color: #232323;
  z-index: 5;
  pointer-events: none;
  border-radius: 4px;
}
.cid-v0lirT5lv8 .item:focus,
.cid-v0lirT5lv8 span:focus {
  outline: none;
}
.cid-v0lirT5lv8 .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-v0lirT5lv8 .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v0lirT5lv8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-v0lirT5lv8 .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-v0lirT5lv8 .item-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-v0lirT5lv8 .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0lirT5lv8 .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.cid-v0lirT5lv8 .post_wrap {
  position: relative;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-v0lirT5lv8 .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-v0lirT5lv8 .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-v0lirT5lv8 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v0lirT5lv8 .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-v0lirT5lv8 .item-content {
  padding: 40px;
  height: 100%;
  min-height: 200px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-v0lirT5lv8 .item-content > div {
  position: relative;
  z-index: 5;
}
.cid-v0lirT5lv8 .category_content {
  opacity: .8;
}
.cid-v0lirT5lv8 .mbr-section-subtitle,
.cid-v0lirT5lv8 .card_topic {
  margin-bottom: 12px;
}
.cid-v0lirT5lv8 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v0lirT5lv8 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
@media (max-width: 767px) {
  .cid-v0lirT5lv8 .item-content,
  .cid-v0lirT5lv8 .card_post {
    padding: 20px;
  }
}
.cid-v0lirT5lv8 .filter-buttons-container {
  margin-bottom: 30px;
  text-align: center;
}
.cid-v0lirT5lv8 .filter-btn {
  background-color: transparent;
  color: #232323;
  border: 2px solid #232323;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}
.cid-v0lirT5lv8 .filter-btn:hover {
  background-color: #fa7a00;
  color: #ffffff;
  border-color: #fa7a00;
}
.cid-v0lirT5lv8 .filter-btn.active {
  background-color: #fa7a00;
  color: #ffffff;
  border-color: #fa7a00;
}
.cid-v0lirT5lv8 .item-title,
.cid-v0lirT5lv8 .mbr-section-btn {
  text-align: left;
}
.cid-v0lis8mpiV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v0lis8mpiV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0lis8mpiV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v0lis8mpiV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v0lis8mpiV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0lis8mpiV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v0lis8mpiV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v0lis8mpiV .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-v0lis8mpiV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v0lis8mpiV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0lis8mpiV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v0lis8mpiV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0lis8mpiV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0lis8mpiV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0lis8mpiV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0qNS38lGu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0qNS38lGu .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0qNS38lGu .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0qNS38lGu .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0qNS38lGu .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0qNS38lGu .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0qNS38lGu .container {
    padding: 0 1rem;
  }
}
.cid-v0qNS38lGu .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0qNS38lGu .nav-link {
  position: relative;
}
.cid-v0qNS38lGu .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0qNS38lGu nav.navbar {
  position: fixed;
}
.cid-v0qNS38lGu .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0qNS38lGu .navbar.opened {
  transition: all 0.3s;
}
.cid-v0qNS38lGu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0qNS38lGu .navbar .navbar-logo img {
  width: auto;
}
.cid-v0qNS38lGu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0qNS38lGu .navbar.collapsed {
  justify-content: center;
}
.cid-v0qNS38lGu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0qNS38lGu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0qNS38lGu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0qNS38lGu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0qNS38lGu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0qNS38lGu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0qNS38lGu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0qNS38lGu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0qNS38lGu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0qNS38lGu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0qNS38lGu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0qNS38lGu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0qNS38lGu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0qNS38lGu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0qNS38lGu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0qNS38lGu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0qNS38lGu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0qNS38lGu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0qNS38lGu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0qNS38lGu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0qNS38lGu .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0qNS38lGu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0qNS38lGu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0qNS38lGu .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0qNS38lGu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0qNS38lGu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0qNS38lGu .dropdown-item:hover,
.cid-v0qNS38lGu .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0qNS38lGu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0qNS38lGu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0qNS38lGu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0qNS38lGu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0qNS38lGu .dropdown-menu,
.cid-v0qNS38lGu .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0qNS38lGu .nav-item:focus,
.cid-v0qNS38lGu .nav-link:focus {
  outline: none;
}
.cid-v0qNS38lGu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0qNS38lGu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0qNS38lGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0qNS38lGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0qNS38lGu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0qNS38lGu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0qNS38lGu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0qNS38lGu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0qNS38lGu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0qNS38lGu .dropdown-item.active,
.cid-v0qNS38lGu .dropdown-item:active {
  background-color: transparent;
}
.cid-v0qNS38lGu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0qNS38lGu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0qNS38lGu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0qNS38lGu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0qNS38lGu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0qNS38lGu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0qNS38lGu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0qNS38lGu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0qNS38lGu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0qNS38lGu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0qNS38lGu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0qNS38lGu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qNS38lGu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qNS38lGu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0qNS38lGu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qNS38lGu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0qNS38lGu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0qNS38lGu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qNS38lGu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0qNS38lGu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0qNS38lGu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0qNS38lGu .navbar {
    height: 70px;
  }
  .cid-v0qNS38lGu .navbar.opened {
    height: auto;
  }
  .cid-v0qNS38lGu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0qNS6vl53 {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-v0qNS6vl53 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-v0qNS6vl53 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-v0qNS6vl53 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-v0qNS6vl53 h3:before,
  .cid-v0qNS6vl53 h3:after {
    display: none;
  }
}
.cid-v0sr2xtBtg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fef8f5;
}
.cid-v0sr2xtBtg .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-v0sr2xtBtg .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sr2xtBtg .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sr2xtBtg .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sr2xtBtg .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
@media (min-width: 991px) {
  .cid-v0sr2xtBtg .item-wrapper .mbr-section-btn {
    margin-top: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-v0sr2xtBtg .item-img {
  overflow: hidden;
}
.cid-v0sr2xtBtg img,
.cid-v0sr2xtBtg .item-img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  width: 100.5%;
  will-change: transform;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v0sr2xtBtg .item-content {
  padding: 40px;
  background: #010a44;
}
@media (max-width: 767px) {
  .cid-v0sr2xtBtg .item-content {
    padding: 20px;
  }
}
.cid-v0sr2xtBtg .mbr-text {
  transform: translateY(0);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0sr2xtBtg .item:focus,
.cid-v0sr2xtBtg span:focus {
  outline: none;
}
.cid-v0sr2xtBtg .item {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-v0sr2xtBtg .item {
    margin-bottom: 5rem;
  }
  .cid-v0sr2xtBtg .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0sr2xtBtg .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v0sr2xtBtg .item-title,
.cid-v0sr2xtBtg .card_topic {
  margin-bottom: 12px;
}
.cid-v0sr2xtBtg .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 991px) {
  .cid-v0sr2xtBtg .item-wrapper:hover .item-img img {
    transform: scale3d(1.2, 1.2, 1);
  }
  .cid-v0sr2xtBtg .item-wrapper:hover .mbr-text {
    transform: translateY(-15px);
    opacity: 0;
  }
  .cid-v0sr2xtBtg .item-wrapper:hover .mbr-section-btn {
    opacity: 1;
    transform: translateY(-5px);
  }
}
.cid-v0sr2xtBtg .item-wrapper:hover .item-title a {
  color: #fa7a00 !important;
}
.cid-v0sr2xtBtg .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sr2xtBtg .category_content {
  opacity: .8;
}
.cid-v0sr2xtBtg .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v0qNS7N5VR {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fef8f5;
}
.cid-v0qNS7N5VR .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0qNS7N5VR .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0qNS7N5VR .mbr-section-btn .btn-secondary-outline.active,
.cid-v0qNS7N5VR .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v0qNS7N5VR img,
.cid-v0qNS7N5VR .item-img {
  border-radius: 4px;
}
.cid-v0qNS7N5VR .item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.cid-v0qNS7N5VR .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}
.cid-v0qNS7N5VR .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .45;
  background-color: #232323;
  z-index: 5;
  pointer-events: none;
  border-radius: 4px;
}
.cid-v0qNS7N5VR .item:focus,
.cid-v0qNS7N5VR span:focus {
  outline: none;
}
.cid-v0qNS7N5VR .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-v0qNS7N5VR .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v0qNS7N5VR .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-v0qNS7N5VR .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-v0qNS7N5VR .item-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-v0qNS7N5VR .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0qNS7N5VR .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.cid-v0qNS7N5VR .post_wrap {
  position: relative;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-v0qNS7N5VR .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-v0qNS7N5VR .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-v0qNS7N5VR .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v0qNS7N5VR .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-v0qNS7N5VR .item-content {
  padding: 40px;
  height: 100%;
  min-height: 200px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-v0qNS7N5VR .item-content > div {
  position: relative;
  z-index: 5;
}
.cid-v0qNS7N5VR .category_content {
  opacity: .8;
}
.cid-v0qNS7N5VR .mbr-section-subtitle,
.cid-v0qNS7N5VR .card_topic {
  margin-bottom: 12px;
}
.cid-v0qNS7N5VR .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v0qNS7N5VR .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
@media (max-width: 767px) {
  .cid-v0qNS7N5VR .item-content,
  .cid-v0qNS7N5VR .card_post {
    padding: 20px;
  }
}
.cid-v0qNS7N5VR .filter-buttons-container {
  margin-bottom: 30px;
  text-align: center;
}
.cid-v0qNS7N5VR .filter-btn {
  background-color: transparent;
  color: #232323;
  border: 2px solid #232323;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}
.cid-v0qNS7N5VR .filter-btn:hover {
  background-color: #fa7a00;
  color: #ffffff;
  border-color: #fa7a00;
}
.cid-v0qNS7N5VR .filter-btn.active {
  background-color: #fa7a00;
  color: #ffffff;
  border-color: #fa7a00;
}
.cid-v0qNSl8pCV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v0qNSl8pCV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0qNSl8pCV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v0qNSl8pCV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v0qNSl8pCV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0qNSl8pCV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v0qNSl8pCV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v0qNSl8pCV .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-v0qNSl8pCV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v0qNSl8pCV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0qNSl8pCV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v0qNSl8pCV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0qNSl8pCV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0qNSl8pCV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0qNSl8pCV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0N5OsTaAP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0N5OsTaAP .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0N5OsTaAP .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0N5OsTaAP .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0N5OsTaAP .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0N5OsTaAP .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0N5OsTaAP .container {
    padding: 0 1rem;
  }
}
.cid-v0N5OsTaAP .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0N5OsTaAP .nav-link {
  position: relative;
}
.cid-v0N5OsTaAP .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0N5OsTaAP nav.navbar {
  position: fixed;
}
.cid-v0N5OsTaAP .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0N5OsTaAP .navbar.opened {
  transition: all 0.3s;
}
.cid-v0N5OsTaAP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0N5OsTaAP .navbar .navbar-logo img {
  width: auto;
}
.cid-v0N5OsTaAP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0N5OsTaAP .navbar.collapsed {
  justify-content: center;
}
.cid-v0N5OsTaAP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0N5OsTaAP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0N5OsTaAP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0N5OsTaAP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0N5OsTaAP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0N5OsTaAP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0N5OsTaAP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0N5OsTaAP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0N5OsTaAP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0N5OsTaAP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0N5OsTaAP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0N5OsTaAP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0N5OsTaAP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0N5OsTaAP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0N5OsTaAP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0N5OsTaAP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0N5OsTaAP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0N5OsTaAP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0N5OsTaAP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0N5OsTaAP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0N5OsTaAP .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0N5OsTaAP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0N5OsTaAP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0N5OsTaAP .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0N5OsTaAP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0N5OsTaAP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0N5OsTaAP .dropdown-item:hover,
.cid-v0N5OsTaAP .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0N5OsTaAP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0N5OsTaAP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0N5OsTaAP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0N5OsTaAP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0N5OsTaAP .dropdown-menu,
.cid-v0N5OsTaAP .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0N5OsTaAP .nav-item:focus,
.cid-v0N5OsTaAP .nav-link:focus {
  outline: none;
}
.cid-v0N5OsTaAP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0N5OsTaAP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0N5OsTaAP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0N5OsTaAP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0N5OsTaAP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0N5OsTaAP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0N5OsTaAP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0N5OsTaAP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0N5OsTaAP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0N5OsTaAP .dropdown-item.active,
.cid-v0N5OsTaAP .dropdown-item:active {
  background-color: transparent;
}
.cid-v0N5OsTaAP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0N5OsTaAP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0N5OsTaAP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0N5OsTaAP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0N5OsTaAP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0N5OsTaAP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0N5OsTaAP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0N5OsTaAP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0N5OsTaAP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0N5OsTaAP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0N5OsTaAP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0N5OsTaAP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0N5OsTaAP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0N5OsTaAP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0N5OsTaAP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0N5OsTaAP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0N5OsTaAP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0N5OsTaAP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0N5OsTaAP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0N5OsTaAP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0N5OsTaAP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0N5OsTaAP .navbar {
    height: 70px;
  }
  .cid-v0N5OsTaAP .navbar.opened {
    height: auto;
  }
  .cid-v0N5OsTaAP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0N5Otzzy1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0N5Otzzy1 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-v0N5Otzzy1 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0N5Otzzy1 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-v0N5Otzzy1 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-v0N5Otzzy1 .mbr-section-title,
.cid-v0N5Otzzy1 .card_topic {
  margin-bottom: 12px;
}
.cid-v0N5Otzzy1 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-v0N5Otzzy1 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-v0N5Otzzy1 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-v0N5Otzzy1 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v0N5Otzzy1 .category_content,
.cid-v0N5Otzzy1 .date,
.cid-v0N5Otzzy1 .name_author {
  opacity: .8;
}
.cid-v0N5Otzzy1 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v0N5Otzzy1 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v0N5Otzzy1 .item-img,
.cid-v0N5Otzzy1 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-v0N5Otzzy1 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-v0N5Otzzy1 .item-img {
    margin-bottom: 20px;
  }
}
.cid-v0N5Otzzy1 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0N5Otzzy1 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0N5Otzzy1 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0N5Otzzy1 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v0N5Ou2MQo {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5Ou2MQo .mbr-section-subtitle,
.cid-v0N5Ou2MQo .caption-text {
  color: #8d97ad;
}
.cid-v0N5Ou2MQo .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5Ou2MQo .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5Ou2MQo .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5Ou2MQo .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5Ou2MQo .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5OurCIv {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5OurCIv .mbr-section-subtitle,
.cid-v0N5OurCIv .caption-text {
  color: #8d97ad;
}
.cid-v0N5OurCIv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5OurCIv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5OurCIv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5OurCIv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5OurCIv .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5OuOaxx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5OuOaxx .mbr-section-subtitle,
.cid-v0N5OuOaxx .caption-text {
  color: #8d97ad;
}
.cid-v0N5OuOaxx .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5OuOaxx .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5OuOaxx .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5OuOaxx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5OuOaxx .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5OvenOA {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5OvenOA .mbr-section-subtitle,
.cid-v0N5OvenOA .caption-text {
  color: #8d97ad;
}
.cid-v0N5OvenOA .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5OvenOA .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5OvenOA .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5OvenOA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5OvenOA .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5OvFKlM {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5OvFKlM .mbr-section-subtitle,
.cid-v0N5OvFKlM .caption-text {
  color: #8d97ad;
}
.cid-v0N5OvFKlM .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5OvFKlM .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5OvFKlM .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5OvFKlM .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5OvFKlM .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5Ow3pj9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5Ow3pj9 .mbr-section-subtitle,
.cid-v0N5Ow3pj9 .caption-text {
  color: #8d97ad;
}
.cid-v0N5Ow3pj9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5Ow3pj9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5Ow3pj9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5Ow3pj9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5Ow3pj9 .mbr-section-subtitle {
  color: #333333;
}
.cid-v0N5Owsque {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0N5Owsque .mbr-section-subtitle,
.cid-v0N5Owsque .caption-text {
  color: #8d97ad;
}
.cid-v0N5Owsque .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0N5Owsque .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0N5Owsque .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0N5Owsque .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0N5Owsque .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NbIWSCbi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v0N5OxszC0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0N5OxszC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0N5OxszC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0N5OxszC0 .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-v0N5OxszC0 .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-v0N5OxszC0 img,
.cid-v0N5OxszC0 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v0N5OxszC0 .item:focus,
.cid-v0N5OxszC0 span:focus {
  outline: none;
}
.cid-v0N5OxszC0 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v0N5OxszC0 .item {
    margin-bottom: 1rem;
  }
}
.cid-v0N5OxszC0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v0N5OxszC0 .mbr-section-title {
  color: #232323;
}
.cid-v0N5OxszC0 .mbr-text,
.cid-v0N5OxszC0 .mbr-section-btn {
  color: #232323;
}
.cid-v0N5OxszC0 .content-head {
  max-width: 800px;
}
.cid-v0N5OxYthP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v0N5OxYthP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0N5OxYthP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v0N5OxYthP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v0N5OxYthP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0N5OxYthP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v0N5OxYthP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v0N5OxYthP .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-v0N5OxYthP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v0N5OxYthP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0N5OxYthP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v0N5OxYthP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0N5OxYthP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0N5OxYthP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0N5OxYthP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0NcKGP0wS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0NcKGP0wS .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v0NcKGP0wS .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0NcKGP0wS .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0NcKGP0wS .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0NcKGP0wS .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0NcKGP0wS .container {
    padding: 0 1rem;
  }
}
.cid-v0NcKGP0wS .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v0NcKGP0wS .nav-link {
  position: relative;
}
.cid-v0NcKGP0wS .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v0NcKGP0wS nav.navbar {
  position: fixed;
}
.cid-v0NcKGP0wS .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v0NcKGP0wS .navbar.opened {
  transition: all 0.3s;
}
.cid-v0NcKGP0wS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0NcKGP0wS .navbar .navbar-logo img {
  width: auto;
}
.cid-v0NcKGP0wS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0NcKGP0wS .navbar.collapsed {
  justify-content: center;
}
.cid-v0NcKGP0wS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0NcKGP0wS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0NcKGP0wS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0NcKGP0wS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0NcKGP0wS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0NcKGP0wS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0NcKGP0wS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0NcKGP0wS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0NcKGP0wS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0NcKGP0wS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0NcKGP0wS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0NcKGP0wS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0NcKGP0wS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0NcKGP0wS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0NcKGP0wS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0NcKGP0wS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0NcKGP0wS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0NcKGP0wS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0NcKGP0wS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0NcKGP0wS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0NcKGP0wS .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0NcKGP0wS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0NcKGP0wS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0NcKGP0wS .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0NcKGP0wS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0NcKGP0wS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0NcKGP0wS .dropdown-item:hover,
.cid-v0NcKGP0wS .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v0NcKGP0wS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0NcKGP0wS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0NcKGP0wS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0NcKGP0wS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0NcKGP0wS .dropdown-menu,
.cid-v0NcKGP0wS .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v0NcKGP0wS .nav-item:focus,
.cid-v0NcKGP0wS .nav-link:focus {
  outline: none;
}
.cid-v0NcKGP0wS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0NcKGP0wS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0NcKGP0wS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0NcKGP0wS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0NcKGP0wS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0NcKGP0wS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0NcKGP0wS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0NcKGP0wS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0NcKGP0wS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0NcKGP0wS .dropdown-item.active,
.cid-v0NcKGP0wS .dropdown-item:active {
  background-color: transparent;
}
.cid-v0NcKGP0wS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0NcKGP0wS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0NcKGP0wS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0NcKGP0wS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v0NcKGP0wS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0NcKGP0wS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0NcKGP0wS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0NcKGP0wS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0NcKGP0wS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0NcKGP0wS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0NcKGP0wS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0NcKGP0wS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0NcKGP0wS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0NcKGP0wS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0NcKGP0wS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0NcKGP0wS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0NcKGP0wS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0NcKGP0wS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0NcKGP0wS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0NcKGP0wS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0NcKGP0wS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0NcKGP0wS .navbar {
    height: 70px;
  }
  .cid-v0NcKGP0wS .navbar.opened {
    height: auto;
  }
  .cid-v0NcKGP0wS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0NcKKueZ8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0NcKKueZ8 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-v0NcKKueZ8 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0NcKKueZ8 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-v0NcKKueZ8 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-v0NcKKueZ8 .mbr-section-title,
.cid-v0NcKKueZ8 .card_topic {
  margin-bottom: 12px;
}
.cid-v0NcKKueZ8 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-v0NcKKueZ8 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-v0NcKKueZ8 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-v0NcKKueZ8 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v0NcKKueZ8 .category_content,
.cid-v0NcKKueZ8 .date,
.cid-v0NcKKueZ8 .name_author {
  opacity: .8;
}
.cid-v0NcKKueZ8 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v0NcKKueZ8 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v0NcKKueZ8 .item-img,
.cid-v0NcKKueZ8 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-v0NcKKueZ8 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-v0NcKKueZ8 .item-img {
    margin-bottom: 20px;
  }
}
.cid-v0NcKKueZ8 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0NcKKueZ8 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0NcKKueZ8 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0NcKKueZ8 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v0NcKKueZ8 P {
  text-align: left;
}
.cid-v0Nie90nHc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0Nie90nHc .mbr-section-title {
  color: #000000;
}
.cid-v0Nie90nHc .mbr-section-subtitle {
  color: #6c7577;
}
.cid-v0Nie90nHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Nie90nHc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0NcKMbBQp {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKMbBQp .mbr-section-subtitle,
.cid-v0NcKMbBQp .caption-text {
  color: #8d97ad;
}
.cid-v0NcKMbBQp .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKMbBQp .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKMbBQp .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKMbBQp .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKMbBQp .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NTFFDgtM {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NTFFDgtM .mbr-section-subtitle,
.cid-v0NTFFDgtM .caption-text {
  color: #8d97ad;
}
.cid-v0NTFFDgtM .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NTFFDgtM .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NTFFDgtM .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NTFFDgtM .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NTFFDgtM .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NjcdiXy9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NjcdiXy9 .mbr-section-subtitle,
.cid-v0NjcdiXy9 .caption-text {
  color: #8d97ad;
}
.cid-v0NjcdiXy9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NjcdiXy9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NjcdiXy9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NjcdiXy9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NjcdiXy9 .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NcKMYF2h {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKMYF2h .mbr-section-subtitle,
.cid-v0NcKMYF2h .caption-text {
  color: #8d97ad;
}
.cid-v0NcKMYF2h .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKMYF2h .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKMYF2h .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKMYF2h .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKMYF2h .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NVe1yjZd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NVe1yjZd .mbr-section-subtitle,
.cid-v0NVe1yjZd .caption-text {
  color: #8d97ad;
}
.cid-v0NVe1yjZd .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NVe1yjZd .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NVe1yjZd .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NVe1yjZd .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NVe1yjZd .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NcKNEeUq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKNEeUq .mbr-section-subtitle,
.cid-v0NcKNEeUq .caption-text {
  color: #8d97ad;
}
.cid-v0NcKNEeUq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKNEeUq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKNEeUq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKNEeUq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKNEeUq .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NWsjfmba {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0NWsjfmba .mbr-section-title {
  color: #1e2024;
}
.cid-v0NWsjfmba .mbr-section-subtitle {
  color: #6c7577;
}
.cid-v0NWsjfmba .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0NWsjfmba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0NcKOV6kJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKOV6kJ .mbr-section-subtitle,
.cid-v0NcKOV6kJ .caption-text {
  color: #8d97ad;
}
.cid-v0NcKOV6kJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKOV6kJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKOV6kJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKOV6kJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKOV6kJ .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NcKPnSeF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKPnSeF .mbr-section-subtitle,
.cid-v0NcKPnSeF .caption-text {
  color: #8d97ad;
}
.cid-v0NcKPnSeF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKPnSeF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKPnSeF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKPnSeF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKPnSeF .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NcKPQBMX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v0NcKPQBMX .mbr-section-subtitle,
.cid-v0NcKPQBMX .caption-text {
  color: #8d97ad;
}
.cid-v0NcKPQBMX .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v0NcKPQBMX .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v0NcKPQBMX .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v0NcKPQBMX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v0NcKPQBMX .mbr-section-subtitle {
  color: #333333;
}
.cid-v0NYO24KBx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2edda;
}
.cid-v0NYO24KBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0NYO24KBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0NYO24KBx .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-v0NYO24KBx .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-v0NYO24KBx .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-v0NYO24KBx .item-img {
    width: 100%;
  }
}
.cid-v0NYO24KBx .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-v0NYO24KBx .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-v0NYO24KBx .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-v0NYO24KBx .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v0NYO24KBx .card-title {
  color: #131313;
  text-align: left;
}
.cid-v0NYO24KBx .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-v0NYO24KBx .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-v0NYO24KBx .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-v0NYO24KBx .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-v0NYO24KBx .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
}
.cid-v0NYO24KBx .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-v0NYO24KBx .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-v0NYO24KBx .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-v0O11vzS2C {
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v0O11vzS2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0O11vzS2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0O11vzS2C .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v0O11vzS2C .container-fluid {
    padding: 0 28px;
  }
}
@media (max-width: 992px) {
  .cid-v0O11vzS2C .container {
    padding: 0 28px;
  }
}
.cid-v0O11vzS2C .row {
  justify-content: center;
}
.cid-v0O11vzS2C .image-wrapper {
  margin-bottom: 34px;
}
.cid-v0O11vzS2C .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0O11vzS2C .image-wrapper img {
    height: 350px;
  }
}
.cid-v0O11vzS2C .desc-wrap {
  margin-bottom: 5px;
  display: block;
}
.cid-v0O11vzS2C .desc-wrap:hover .mbr-desc::after,
.cid-v0O11vzS2C .desc-wrap:focus .mbr-desc::after {
  width: 100%;
}
.cid-v0O11vzS2C .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  position: relative;
}
.cid-v0O11vzS2C .desc-wrap .mbr-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
  background-color: #f98c25;
}
.cid-v0O11vzS2C .title-wrapper {
  margin-bottom: 20px;
  display: block;
}
.cid-v0O11vzS2C .title-wrapper:hover .mbr-section-title,
.cid-v0O11vzS2C .title-wrapper:focus .mbr-section-title {
  color: #f98c25;
}
.cid-v0O11vzS2C .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v0O11vzS2C .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-v0O11vzS2C .mbr-section-btn {
  margin-top: 50px;
}
.cid-v0O11vzS2C .mbr-section-title {
  color: #000000;
}
.cid-v0O11vzS2C .mbr-desc {
  color: #000000;
}
.cid-v0O4GU5UCS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v0NcKQUibK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0NcKQUibK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0NcKQUibK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0NcKQUibK .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-v0NcKQUibK .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-v0NcKQUibK img,
.cid-v0NcKQUibK .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v0NcKQUibK .item:focus,
.cid-v0NcKQUibK span:focus {
  outline: none;
}
.cid-v0NcKQUibK .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v0NcKQUibK .item {
    margin-bottom: 1rem;
  }
}
.cid-v0NcKQUibK .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v0NcKQUibK .mbr-section-title {
  color: #232323;
}
.cid-v0NcKQUibK .mbr-text,
.cid-v0NcKQUibK .mbr-section-btn {
  color: #232323;
}
.cid-v0NcKQUibK .content-head {
  max-width: 800px;
}
.cid-v0NcKSEBUy {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v0NcKSEBUy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0NcKSEBUy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v0NcKSEBUy .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v0NcKSEBUy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0NcKSEBUy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v0NcKSEBUy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v0NcKSEBUy .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-v0NcKSEBUy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v0NcKSEBUy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0NcKSEBUy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v0NcKSEBUy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0NcKSEBUy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0NcKSEBUy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0NcKSEBUy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v2d3ycXvda {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2d3ycXvda .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v2d3ycXvda .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2d3ycXvda .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2d3ycXvda .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2d3ycXvda .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2d3ycXvda .container {
    padding: 0 1rem;
  }
}
.cid-v2d3ycXvda .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2d3ycXvda .nav-link {
  position: relative;
}
.cid-v2d3ycXvda .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v2d3ycXvda nav.navbar {
  position: fixed;
}
.cid-v2d3ycXvda .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v2d3ycXvda .navbar.opened {
  transition: all 0.3s;
}
.cid-v2d3ycXvda .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2d3ycXvda .navbar .navbar-logo img {
  width: auto;
}
.cid-v2d3ycXvda .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2d3ycXvda .navbar.collapsed {
  justify-content: center;
}
.cid-v2d3ycXvda .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2d3ycXvda .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2d3ycXvda .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v2d3ycXvda .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2d3ycXvda .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2d3ycXvda .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v2d3ycXvda .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2d3ycXvda .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2d3ycXvda .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2d3ycXvda .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2d3ycXvda .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2d3ycXvda .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2d3ycXvda .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2d3ycXvda .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v2d3ycXvda .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2d3ycXvda .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2d3ycXvda .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2d3ycXvda .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2d3ycXvda .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2d3ycXvda .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2d3ycXvda .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2d3ycXvda .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2d3ycXvda .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2d3ycXvda .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2d3ycXvda .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2d3ycXvda .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2d3ycXvda .dropdown-item:hover,
.cid-v2d3ycXvda .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v2d3ycXvda .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2d3ycXvda .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2d3ycXvda .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2d3ycXvda .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2d3ycXvda .dropdown-menu,
.cid-v2d3ycXvda .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v2d3ycXvda .nav-item:focus,
.cid-v2d3ycXvda .nav-link:focus {
  outline: none;
}
.cid-v2d3ycXvda .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2d3ycXvda .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2d3ycXvda .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2d3ycXvda .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2d3ycXvda .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2d3ycXvda .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2d3ycXvda .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2d3ycXvda .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2d3ycXvda .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2d3ycXvda .dropdown-item.active,
.cid-v2d3ycXvda .dropdown-item:active {
  background-color: transparent;
}
.cid-v2d3ycXvda .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2d3ycXvda .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2d3ycXvda .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2d3ycXvda .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v2d3ycXvda .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2d3ycXvda .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2d3ycXvda ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2d3ycXvda .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2d3ycXvda button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2d3ycXvda button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2d3ycXvda button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2d3ycXvda button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2d3ycXvda button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2d3ycXvda button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2d3ycXvda nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2d3ycXvda nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2d3ycXvda nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2d3ycXvda nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2d3ycXvda .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2d3ycXvda a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2d3ycXvda .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2d3ycXvda .navbar {
    height: 70px;
  }
  .cid-v2d3ycXvda .navbar.opened {
    height: auto;
  }
  .cid-v2d3ycXvda .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2d3ye3y3H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2d3ye3y3H .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-v2d3ye3y3H .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v2d3ye3y3H .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-v2d3ye3y3H .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-v2d3ye3y3H .mbr-section-title,
.cid-v2d3ye3y3H .card_topic {
  margin-bottom: 12px;
}
.cid-v2d3ye3y3H .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-v2d3ye3y3H .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-v2d3ye3y3H .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-v2d3ye3y3H .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v2d3ye3y3H .category_content,
.cid-v2d3ye3y3H .date,
.cid-v2d3ye3y3H .name_author {
  opacity: .8;
}
.cid-v2d3ye3y3H .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v2d3ye3y3H .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v2d3ye3y3H .item-img,
.cid-v2d3ye3y3H img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-v2d3ye3y3H .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-v2d3ye3y3H .item-img {
    margin-bottom: 20px;
  }
}
.cid-v2d3ye3y3H .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v2d3ye3y3H .mbr-section-btn .btn-secondary-outline:hover,
.cid-v2d3ye3y3H .mbr-section-btn .btn-secondary-outline .active,
.cid-v2d3ye3y3H .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v2d3yexyuL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v2d3yexyuL .mbr-section-subtitle,
.cid-v2d3yexyuL .caption-text {
  color: #8d97ad;
}
.cid-v2d3yexyuL .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v2d3yexyuL .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v2d3yexyuL .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v2d3yexyuL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v2d3yexyuL .mbr-section-subtitle {
  color: #333333;
}
.cid-v2d3yeW4GH {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v2d3yeW4GH .mbr-section-subtitle,
.cid-v2d3yeW4GH .caption-text {
  color: #8d97ad;
}
.cid-v2d3yeW4GH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v2d3yeW4GH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v2d3yeW4GH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v2d3yeW4GH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v2d3yeW4GH .mbr-section-subtitle {
  color: #333333;
}
.cid-v2d3yfsBwT {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v2d3yfsBwT .mbr-section-subtitle,
.cid-v2d3yfsBwT .caption-text {
  color: #8d97ad;
}
.cid-v2d3yfsBwT .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v2d3yfsBwT .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v2d3yfsBwT .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v2d3yfsBwT .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v2d3yfsBwT .mbr-section-subtitle {
  color: #333333;
}
.cid-v2d3yfZTUy {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v2d3yfZTUy .mbr-section-subtitle,
.cid-v2d3yfZTUy .caption-text {
  color: #8d97ad;
}
.cid-v2d3yfZTUy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v2d3yfZTUy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v2d3yfZTUy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v2d3yfZTUy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v2d3yfZTUy .mbr-section-subtitle {
  color: #333333;
}
.cid-v2da1hNG8i {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v2dadctL6P {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2d3yigcez {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2d3yigcez .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2d3yigcez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2d3yigcez .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-v2d3yigcez .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-v2d3yigcez img,
.cid-v2d3yigcez .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2d3yigcez .item:focus,
.cid-v2d3yigcez span:focus {
  outline: none;
}
.cid-v2d3yigcez .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v2d3yigcez .item {
    margin-bottom: 1rem;
  }
}
.cid-v2d3yigcez .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v2d3yigcez .mbr-section-title {
  color: #232323;
}
.cid-v2d3yigcez .mbr-text,
.cid-v2d3yigcez .mbr-section-btn {
  color: #232323;
}
.cid-v2d3yigcez .content-head {
  max-width: 800px;
}
.cid-v2d3yiRj5q {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v2d3yiRj5q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v2d3yiRj5q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v2d3yiRj5q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v2d3yiRj5q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v2d3yiRj5q .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v2d3yiRj5q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v2d3yiRj5q .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-v2d3yiRj5q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v2d3yiRj5q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v2d3yiRj5q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v2d3yiRj5q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v2d3yiRj5q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v2d3yiRj5q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v2d3yiRj5q .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v3JaFDwL4a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3JaFDwL4a .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v3JaFDwL4a .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v3JaFDwL4a .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v3JaFDwL4a .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v3JaFDwL4a .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v3JaFDwL4a .container {
    padding: 0 1rem;
  }
}
.cid-v3JaFDwL4a .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v3JaFDwL4a .nav-link {
  position: relative;
}
.cid-v3JaFDwL4a .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v3JaFDwL4a nav.navbar {
  position: fixed;
}
.cid-v3JaFDwL4a .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v3JaFDwL4a .navbar.opened {
  transition: all 0.3s;
}
.cid-v3JaFDwL4a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3JaFDwL4a .navbar .navbar-logo img {
  width: auto;
}
.cid-v3JaFDwL4a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3JaFDwL4a .navbar.collapsed {
  justify-content: center;
}
.cid-v3JaFDwL4a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3JaFDwL4a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3JaFDwL4a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3JaFDwL4a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3JaFDwL4a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3JaFDwL4a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3JaFDwL4a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3JaFDwL4a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3JaFDwL4a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3JaFDwL4a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3JaFDwL4a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3JaFDwL4a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3JaFDwL4a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3JaFDwL4a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3JaFDwL4a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3JaFDwL4a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3JaFDwL4a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3JaFDwL4a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3JaFDwL4a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3JaFDwL4a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3JaFDwL4a .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3JaFDwL4a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3JaFDwL4a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3JaFDwL4a .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3JaFDwL4a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3JaFDwL4a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3JaFDwL4a .dropdown-item:hover,
.cid-v3JaFDwL4a .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v3JaFDwL4a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3JaFDwL4a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3JaFDwL4a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v3JaFDwL4a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3JaFDwL4a .dropdown-menu,
.cid-v3JaFDwL4a .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v3JaFDwL4a .nav-item:focus,
.cid-v3JaFDwL4a .nav-link:focus {
  outline: none;
}
.cid-v3JaFDwL4a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3JaFDwL4a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3JaFDwL4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3JaFDwL4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3JaFDwL4a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3JaFDwL4a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3JaFDwL4a .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3JaFDwL4a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3JaFDwL4a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3JaFDwL4a .dropdown-item.active,
.cid-v3JaFDwL4a .dropdown-item:active {
  background-color: transparent;
}
.cid-v3JaFDwL4a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3JaFDwL4a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3JaFDwL4a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3JaFDwL4a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v3JaFDwL4a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3JaFDwL4a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3JaFDwL4a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3JaFDwL4a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3JaFDwL4a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3JaFDwL4a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3JaFDwL4a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3JaFDwL4a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3JaFDwL4a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3JaFDwL4a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3JaFDwL4a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3JaFDwL4a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3JaFDwL4a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3JaFDwL4a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3JaFDwL4a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3JaFDwL4a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3JaFDwL4a .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3JaFDwL4a .navbar {
    height: 70px;
  }
  .cid-v3JaFDwL4a .navbar.opened {
    height: auto;
  }
  .cid-v3JaFDwL4a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3JaFEJEJ9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3JaFEJEJ9 .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-v3JaFEJEJ9 .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v3JaFEJEJ9 .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-v3JaFEJEJ9 .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-v3JaFEJEJ9 .mbr-section-title,
.cid-v3JaFEJEJ9 .card_topic {
  margin-bottom: 12px;
}
.cid-v3JaFEJEJ9 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-v3JaFEJEJ9 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-v3JaFEJEJ9 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-v3JaFEJEJ9 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v3JaFEJEJ9 .category_content,
.cid-v3JaFEJEJ9 .date,
.cid-v3JaFEJEJ9 .name_author {
  opacity: .8;
}
.cid-v3JaFEJEJ9 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v3JaFEJEJ9 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v3JaFEJEJ9 .item-img,
.cid-v3JaFEJEJ9 img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-v3JaFEJEJ9 .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-v3JaFEJEJ9 .item-img {
    margin-bottom: 20px;
  }
}
.cid-v3JaFEJEJ9 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v3JaFEJEJ9 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v3JaFEJEJ9 .mbr-section-btn .btn-secondary-outline .active,
.cid-v3JaFEJEJ9 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v3JaFFOShj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JaFFOShj .mbr-section-subtitle,
.cid-v3JaFFOShj .caption-text {
  color: #8d97ad;
}
.cid-v3JaFFOShj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JaFFOShj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JaFFOShj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JaFFOShj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JaFFOShj .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JaFHxXsP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JaFHxXsP .mbr-section-subtitle,
.cid-v3JaFHxXsP .caption-text {
  color: #8d97ad;
}
.cid-v3JaFHxXsP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JaFHxXsP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JaFHxXsP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JaFHxXsP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JaFHxXsP .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JaFJ9VLP {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JaFJ9VLP .mbr-section-subtitle,
.cid-v3JaFJ9VLP .caption-text {
  color: #8d97ad;
}
.cid-v3JaFJ9VLP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JaFJ9VLP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JaFJ9VLP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JaFJ9VLP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JaFJ9VLP .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JaFJSWkN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JaFJSWkN .mbr-section-subtitle,
.cid-v3JaFJSWkN .caption-text {
  color: #8d97ad;
}
.cid-v3JaFJSWkN .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JaFJSWkN .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JaFJSWkN .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JaFJSWkN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JaFJSWkN .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JaFKIbAS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JaFKIbAS .mbr-section-subtitle,
.cid-v3JaFKIbAS .caption-text {
  color: #8d97ad;
}
.cid-v3JaFKIbAS .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JaFKIbAS .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JaFKIbAS .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JaFKIbAS .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JaFKIbAS .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JrwB4SFf {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JrwB4SFf .mbr-section-subtitle,
.cid-v3JrwB4SFf .caption-text {
  color: #8d97ad;
}
.cid-v3JrwB4SFf .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JrwB4SFf .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JrwB4SFf .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JrwB4SFf .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JrwB4SFf .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JCkkVmxq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v3JCkkVmxq .mbr-section-subtitle,
.cid-v3JCkkVmxq .caption-text {
  color: #8d97ad;
}
.cid-v3JCkkVmxq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v3JCkkVmxq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v3JCkkVmxq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v3JCkkVmxq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v3JCkkVmxq .mbr-section-subtitle {
  color: #333333;
}
.cid-v3JDxdaW5e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3JDxdaW5e h2,
.cid-v3JDxdaW5e h3,
.cid-v3JDxdaW5e h4,
.cid-v3JDxdaW5e p {
  margin: 0;
}
.cid-v3JDxdaW5e .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-v3JDxdaW5e .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-v3JDxdaW5e .mbr-text {
  color: #333333;
  margin: 10px 0;
}
.cid-v3JBgWFbBr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fbfbfb;
  border-bottom: 1px solid #000000;
}
.cid-v3JBgWFbBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3JBgWFbBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3JBgWFbBr .row {
  justify-content: flex-start;
}
.cid-v3JBgWFbBr .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-v3JBgWFbBr .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ee2524;
}
.cid-v3JBgWFbBr .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-v3JBgWFbBr .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-v3JBgWFbBr .mbr-section-btn {
  margin-top: 2.4rem;
}
.cid-v3JaFQF676 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v3JaFQF676 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3JaFQF676 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3JaFQF676 .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-v3JaFQF676 .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-v3JaFQF676 img,
.cid-v3JaFQF676 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v3JaFQF676 .item:focus,
.cid-v3JaFQF676 span:focus {
  outline: none;
}
.cid-v3JaFQF676 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v3JaFQF676 .item {
    margin-bottom: 1rem;
  }
}
.cid-v3JaFQF676 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v3JaFQF676 .mbr-section-title {
  color: #232323;
}
.cid-v3JaFQF676 .mbr-text,
.cid-v3JaFQF676 .mbr-section-btn {
  color: #232323;
}
.cid-v3JaFQF676 .content-head {
  max-width: 800px;
}
.cid-v3JaFRJWEU {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v3JaFRJWEU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3JaFRJWEU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v3JaFRJWEU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v3JaFRJWEU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3JaFRJWEU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3JaFRJWEU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v3JaFRJWEU .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-v3JaFRJWEU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v3JaFRJWEU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v3JaFRJWEU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v3JaFRJWEU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v3JaFRJWEU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3JaFRJWEU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v3JaFRJWEU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v4isC2HP3x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4isC2HP3x .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-v4isC2HP3x .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v4isC2HP3x .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v4isC2HP3x .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v4isC2HP3x .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v4isC2HP3x .container {
    padding: 0 1rem;
  }
}
.cid-v4isC2HP3x .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v4isC2HP3x .nav-link {
  position: relative;
}
.cid-v4isC2HP3x .nav-link:hover {
  color: #a61a3d !important;
}
.cid-v4isC2HP3x nav.navbar {
  position: fixed;
}
.cid-v4isC2HP3x .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f8fa;
}
.cid-v4isC2HP3x .navbar.opened {
  transition: all 0.3s;
}
.cid-v4isC2HP3x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4isC2HP3x .navbar .navbar-logo img {
  width: auto;
}
.cid-v4isC2HP3x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4isC2HP3x .navbar.collapsed {
  justify-content: center;
}
.cid-v4isC2HP3x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4isC2HP3x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4isC2HP3x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v4isC2HP3x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4isC2HP3x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4isC2HP3x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v4isC2HP3x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4isC2HP3x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4isC2HP3x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4isC2HP3x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4isC2HP3x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4isC2HP3x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4isC2HP3x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4isC2HP3x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v4isC2HP3x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4isC2HP3x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4isC2HP3x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4isC2HP3x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4isC2HP3x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4isC2HP3x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4isC2HP3x .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4isC2HP3x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4isC2HP3x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4isC2HP3x .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4isC2HP3x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4isC2HP3x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4isC2HP3x .dropdown-item:hover,
.cid-v4isC2HP3x .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-v4isC2HP3x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4isC2HP3x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4isC2HP3x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v4isC2HP3x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4isC2HP3x .dropdown-menu,
.cid-v4isC2HP3x .navbar.opened {
  background: #f4f8fa !important;
}
.cid-v4isC2HP3x .nav-item:focus,
.cid-v4isC2HP3x .nav-link:focus {
  outline: none;
}
.cid-v4isC2HP3x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4isC2HP3x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4isC2HP3x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4isC2HP3x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4isC2HP3x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4isC2HP3x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4isC2HP3x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4isC2HP3x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4isC2HP3x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4isC2HP3x .dropdown-item.active,
.cid-v4isC2HP3x .dropdown-item:active {
  background-color: transparent;
}
.cid-v4isC2HP3x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4isC2HP3x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4isC2HP3x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4isC2HP3x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-v4isC2HP3x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4isC2HP3x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4isC2HP3x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4isC2HP3x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4isC2HP3x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4isC2HP3x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v4isC2HP3x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4isC2HP3x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4isC2HP3x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4isC2HP3x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4isC2HP3x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4isC2HP3x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4isC2HP3x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4isC2HP3x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4isC2HP3x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4isC2HP3x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4isC2HP3x .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4isC2HP3x .navbar {
    height: 70px;
  }
  .cid-v4isC2HP3x .navbar.opened {
    height: auto;
  }
  .cid-v4isC2HP3x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4isC3B85b {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v4isC3B85b .item-wrapper {
  padding-bottom: 24px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .cid-v4isC3B85b .item-wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v4isC3B85b .item-wrapper {
    padding-bottom: 30px;
  }
}
.cid-v4isC3B85b .item-wrapper:hover .mbr-section-title a {
  color: #fa7a00 !important;
}
.cid-v4isC3B85b .mbr-section-title,
.cid-v4isC3B85b .card_topic {
  margin-bottom: 12px;
}
.cid-v4isC3B85b .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-v4isC3B85b .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-v4isC3B85b .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-v4isC3B85b .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-v4isC3B85b .category_content,
.cid-v4isC3B85b .date,
.cid-v4isC3B85b .name_author {
  opacity: .8;
}
.cid-v4isC3B85b .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #fa7a00;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-v4isC3B85b .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #fa7a00;
}
.cid-v4isC3B85b .item-img,
.cid-v4isC3B85b img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.cid-v4isC3B85b .item-img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-v4isC3B85b .item-img {
    margin-bottom: 20px;
  }
}
.cid-v4isC3B85b .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v4isC3B85b .mbr-section-btn .btn-secondary-outline:hover,
.cid-v4isC3B85b .mbr-section-btn .btn-secondary-outline .active,
.cid-v4isC3B85b .mbr-section-btn .btn-secondary-outline:focus {
  color: #f98c25 !important;
}
.cid-v4isC46IJK {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v4isC46IJK .mbr-section-subtitle,
.cid-v4isC46IJK .caption-text {
  color: #8d97ad;
}
.cid-v4isC46IJK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v4isC46IJK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v4isC46IJK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v4isC46IJK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v4isC46IJK .mbr-section-subtitle {
  color: #333333;
}
.cid-v4iEJLDMGk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v4iEJLDMGk .p {
  color: #333333;
  padding-top: 30px;
}
.cid-v4iEJLDMGk .row {
  justify-content: center;
}
.cid-v4iEJLDMGk a {
  font-weight: 400 !important;
}
.cid-v4iG8llqI4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v4iG8llqI4 .p {
  color: #333333;
  padding-top: 30px;
}
.cid-v4iG8llqI4 .row {
  justify-content: center;
}
.cid-v4iG8llqI4 a {
  font-weight: 400 !important;
}
.cid-v4isC4nwFd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v4isC4nwFd .mbr-section-subtitle,
.cid-v4isC4nwFd .caption-text {
  color: #8d97ad;
}
.cid-v4isC4nwFd .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v4isC4nwFd .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v4isC4nwFd .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v4isC4nwFd .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v4isC4nwFd .mbr-section-subtitle {
  color: #333333;
}
.cid-v4isC4Gogj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v4isC4Gogj .mbr-section-subtitle,
.cid-v4isC4Gogj .caption-text {
  color: #8d97ad;
}
.cid-v4isC4Gogj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v4isC4Gogj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v4isC4Gogj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v4isC4Gogj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v4isC4Gogj .mbr-section-subtitle {
  color: #333333;
}
.cid-v4isC51vaC {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v4isC51vaC .mbr-section-subtitle,
.cid-v4isC51vaC .caption-text {
  color: #8d97ad;
}
.cid-v4isC51vaC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v4isC51vaC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v4isC51vaC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v4isC51vaC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v4isC51vaC .mbr-section-subtitle {
  color: #333333;
}
.cid-v4isC5kSt8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-v4isC5kSt8 .mbr-section-subtitle,
.cid-v4isC5kSt8 .caption-text {
  color: #8d97ad;
}
.cid-v4isC5kSt8 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-v4isC5kSt8 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-v4isC5kSt8 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-v4isC5kSt8 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-v4isC5kSt8 .mbr-section-subtitle {
  color: #333333;
}
.cid-v4isC6sk2n {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fbfbfb;
  border-bottom: 1px solid #000000;
}
.cid-v4isC6sk2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4isC6sk2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4isC6sk2n .row {
  justify-content: flex-start;
}
.cid-v4isC6sk2n .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-v4isC6sk2n .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ee2524;
}
.cid-v4isC6sk2n .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-v4isC6sk2n .mbr-text {
  color: #000000;
  width: 100%;
  text-align: left;
}
.cid-v4isC6sk2n .mbr-section-btn {
  margin-top: 2.4rem;
}
.cid-v4isC6sk2n .mbr-section-title,
.cid-v4isC6sk2n .mbr-section-btn {
  text-align: center;
}
.cid-v4isC6NOSr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v4isC6NOSr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4isC6NOSr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4isC6NOSr .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-v4isC6NOSr .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.cid-v4isC6NOSr img,
.cid-v4isC6NOSr .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v4isC6NOSr .item:focus,
.cid-v4isC6NOSr span:focus {
  outline: none;
}
.cid-v4isC6NOSr .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v4isC6NOSr .item {
    margin-bottom: 1rem;
  }
}
.cid-v4isC6NOSr .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v4isC6NOSr .mbr-section-title {
  color: #232323;
}
.cid-v4isC6NOSr .mbr-text,
.cid-v4isC6NOSr .mbr-section-btn {
  color: #232323;
}
.cid-v4isC6NOSr .content-head {
  max-width: 800px;
}
.cid-v4isC7k1RO {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fa7a00;
}
.cid-v4isC7k1RO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v4isC7k1RO .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v4isC7k1RO .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v4isC7k1RO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v4isC7k1RO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v4isC7k1RO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v4isC7k1RO .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-v4isC7k1RO .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v4isC7k1RO .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v4isC7k1RO .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v4isC7k1RO .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v4isC7k1RO .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v4isC7k1RO .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v4isC7k1RO .media-container-row .row-copirayt p {
  width: 100%;
}
