body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.display-1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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-sRaP7LjeCt {
  padding-top: 135px;
  padding-bottom: 120px;
}
.cid-sRaP7LjeCt .ico {
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 100;
}
.cid-sRaP7LjeCt .ico span {
  font-size: 1.5rem;
  color: #656565;
}
.cid-sRaP7LjeCt .relative {
  position: relative;
}
.cid-sRaP7LjeCt .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRaP7LjeCt .jq-selectbox__trigger-arrow {
  display: none;
}
.cid-sRaP7LjeCt .jq-selectbox__select {
  padding: 10px 25px;
  min-height: 20px;
  height: 100%;
}
.cid-sRaP7LjeCt .form-control {
  min-height: 49px;
  padding: 0;
}
.cid-sRaP7LjeCt .form-group {
  text-align: left;
  border: 0px solid #CCC;
  border-radius: 5px;
}
.cid-sRaP7LjeCt .jq-selectbox li.selected {
  background-color: #e3d650;
}
.cid-sRaP7LjeCt .jq-selectbox li:hover {
  background-color: #e3d650;
}
.cid-sRaP7LjeCt .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e3d650;
}
.cid-sRaP7LjeCt .mbr-iconfont-btn {
  margin: 0;
}
.cid-sRaP7LjeCt .jq-selectbox__dropdown {
  top: 45px !important;
}
.cid-sRaP7LjeCt input.form-control {
  padding: 10px 25px;
  min-height: 49px;
}
.cid-sRaP7LjeCt input.form-control:focus {
  outline: none;
  box-shadow: 0;
}
.cid-sRaP7LjeCt input.form-control:active {
  outline: none;
  box-shadow: 0;
}
.cid-sRaP7LjeCt .input-group-btn .btn {
  margin: 0 !important;
  border-radius: 5px;
  height: 49px;
  display: block;
  width: 100%;
}
.cid-sRaP7LjeCt .input-group-btn {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sRaP7LjeCt .form-group {
    margin-bottom: 2rem;
  }
  .cid-sRaP7LjeCt .align-left {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cid-sRaP7LjeCt .input-group-btn {
    margin: auto;
  }
}
.cid-sRaP7LjeCt .mbr-section-title {
  text-align: center;
}
.cid-sRaP7LjeCt .mbr-section-sub-title {
  color: #ececec;
  text-align: center;
}
.cid-sQRYWw2KDO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f4f4f4;
}
.cid-sQRYWw2KDO .container-fluid {
  padding: 0 3rem;
}
.cid-sQRYWw2KDO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f98c25, #fa7a00);
  display: inline-block;
}
.cid-sQRYWw2KDO .card {
  display: block;
}
.cid-sQRYWw2KDO .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-sQRYWw2KDO .card .card-wrapper .card-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 0 22px 0;
  z-index: 1;
  border-radius: 0;
}
.cid-sQRYWw2KDO .card .card-wrapper:hover .mbr-section-btn {
  opacity: 1;
}
.cid-sQRYWw2KDO .card-box {
  margin-bottom: 21px;
}
.cid-sQRYWw2KDO .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQRYWw2KDO .oldPrice {
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .cid-sQRYWw2KDO .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQRYWw2KDO .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sQRYWw2KDO .mbr-section-btn {
  transition: all 0.5s;
  position: absolute;
  opacity: 0;
}
.cid-sQRYWw2KDO .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-sQRYWw2KDO .mbr-section-title {
  margin-bottom: 1rem;
  color: #232323;
}
.cid-sQRYWw2KDO .mbr-item-tag {
  margin: 0;
}
.cid-sQRYWw2KDO .mbr-item-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sQRYWw2KDO .newPrice,
.cid-sQRYWw2KDO .mbr-section-btn {
  color: #f23801;
  text-align: right;
}
.cid-sQRYWw2KDO .mbr-text,
.cid-sQRYWw2KDO .mbr-section-btn {
  text-align: left;
}
.cid-sQS575FtO6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPEl8IWEtZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPEl8IWEtZ .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sPEl8IWEtZ .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sPEl8IWEtZ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sPEl8IWEtZ .container {
    padding: 0 1rem;
  }
}
.cid-sPEl8IWEtZ .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sPEl8IWEtZ .nav-link {
  position: relative;
}
.cid-sPEl8IWEtZ .nav-link:hover {
  color: #a61a3d !important;
}
.cid-sPEl8IWEtZ nav.navbar {
  position: fixed;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sPEl8IWEtZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPEl8IWEtZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sPEl8IWEtZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPEl8IWEtZ .navbar.collapsed {
  justify-content: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPEl8IWEtZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPEl8IWEtZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPEl8IWEtZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPEl8IWEtZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPEl8IWEtZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPEl8IWEtZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPEl8IWEtZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPEl8IWEtZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPEl8IWEtZ .dropdown-item:hover,
.cid-sPEl8IWEtZ .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-sPEl8IWEtZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPEl8IWEtZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPEl8IWEtZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPEl8IWEtZ .dropdown-menu,
.cid-sPEl8IWEtZ .navbar.opened {
  background: #f4f8fa !important;
}
.cid-sPEl8IWEtZ .nav-item:focus,
.cid-sPEl8IWEtZ .nav-link:focus {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPEl8IWEtZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPEl8IWEtZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown-item.active,
.cid-sPEl8IWEtZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sPEl8IWEtZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPEl8IWEtZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPEl8IWEtZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPEl8IWEtZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPEl8IWEtZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPEl8IWEtZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar {
    height: 70px;
  }
  .cid-sPEl8IWEtZ .navbar.opened {
    height: auto;
  }
  .cid-sPEl8IWEtZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8MCUbJxP8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-t8MCUbJxP8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8MCUbJxP8 .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-t8MCUbJxP8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8MCUbJxP8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8MCUbJxP8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sPEl8IWEtZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPEl8IWEtZ .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sPEl8IWEtZ .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sPEl8IWEtZ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sPEl8IWEtZ .container {
    padding: 0 1rem;
  }
}
.cid-sPEl8IWEtZ .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sPEl8IWEtZ .nav-link {
  position: relative;
}
.cid-sPEl8IWEtZ .nav-link:hover {
  color: #a61a3d !important;
}
.cid-sPEl8IWEtZ nav.navbar {
  position: fixed;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sPEl8IWEtZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPEl8IWEtZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sPEl8IWEtZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPEl8IWEtZ .navbar.collapsed {
  justify-content: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPEl8IWEtZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPEl8IWEtZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPEl8IWEtZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPEl8IWEtZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPEl8IWEtZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPEl8IWEtZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPEl8IWEtZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPEl8IWEtZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPEl8IWEtZ .dropdown-item:hover,
.cid-sPEl8IWEtZ .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-sPEl8IWEtZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPEl8IWEtZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPEl8IWEtZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPEl8IWEtZ .dropdown-menu,
.cid-sPEl8IWEtZ .navbar.opened {
  background: #f4f8fa !important;
}
.cid-sPEl8IWEtZ .nav-item:focus,
.cid-sPEl8IWEtZ .nav-link:focus {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPEl8IWEtZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPEl8IWEtZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown-item.active,
.cid-sPEl8IWEtZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sPEl8IWEtZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPEl8IWEtZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPEl8IWEtZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPEl8IWEtZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPEl8IWEtZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPEl8IWEtZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar {
    height: 70px;
  }
  .cid-sPEl8IWEtZ .navbar.opened {
    height: auto;
  }
  .cid-sPEl8IWEtZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdppZHCLzl {
  padding-top: 90px;
  padding-bottom: 30px;
  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-t8MCUbJxP8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-t8MCUbJxP8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8MCUbJxP8 .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-t8MCUbJxP8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8MCUbJxP8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8MCUbJxP8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-teazCCIsey {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teazCCIsey .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-teazCCIsey .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-teazCCIsey .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-teazCCIsey .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-teazCCIsey .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-teazCCIsey .container {
    padding: 0 1rem;
  }
}
.cid-teazCCIsey .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-teazCCIsey .nav-link {
  position: relative;
}
.cid-teazCCIsey .nav-link:hover {
  color: #a61a3d !important;
}
.cid-teazCCIsey nav.navbar {
  position: fixed;
}
.cid-teazCCIsey .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-teazCCIsey .navbar.opened {
  transition: all 0.3s;
}
.cid-teazCCIsey .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-teazCCIsey .navbar .navbar-logo img {
  width: auto;
}
.cid-teazCCIsey .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teazCCIsey .navbar.collapsed {
  justify-content: center;
}
.cid-teazCCIsey .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teazCCIsey .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teazCCIsey .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-teazCCIsey .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teazCCIsey .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teazCCIsey .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-teazCCIsey .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teazCCIsey .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-teazCCIsey .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-teazCCIsey .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teazCCIsey .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teazCCIsey .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teazCCIsey .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teazCCIsey .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-teazCCIsey .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teazCCIsey .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teazCCIsey .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teazCCIsey .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teazCCIsey .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teazCCIsey .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-teazCCIsey .navbar.navbar-short {
  min-height: 60px;
}
.cid-teazCCIsey .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teazCCIsey .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teazCCIsey .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-teazCCIsey .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teazCCIsey .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teazCCIsey .dropdown-item:hover,
.cid-teazCCIsey .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-teazCCIsey .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teazCCIsey .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teazCCIsey .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-teazCCIsey .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teazCCIsey .dropdown-menu,
.cid-teazCCIsey .navbar.opened {
  background: #f4f8fa !important;
}
.cid-teazCCIsey .nav-item:focus,
.cid-teazCCIsey .nav-link:focus {
  outline: none;
}
.cid-teazCCIsey .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teazCCIsey .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teazCCIsey .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-teazCCIsey .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teazCCIsey .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teazCCIsey .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teazCCIsey .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-teazCCIsey .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teazCCIsey .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teazCCIsey .dropdown-item.active,
.cid-teazCCIsey .dropdown-item:active {
  background-color: transparent;
}
.cid-teazCCIsey .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teazCCIsey .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teazCCIsey .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teazCCIsey .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-teazCCIsey .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teazCCIsey .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teazCCIsey ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teazCCIsey .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teazCCIsey button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-teazCCIsey button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teazCCIsey button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-teazCCIsey button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teazCCIsey button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teazCCIsey button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-teazCCIsey nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teazCCIsey nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-teazCCIsey nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-teazCCIsey nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teazCCIsey .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teazCCIsey a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teazCCIsey .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-teazCCIsey .navbar {
    height: 70px;
  }
  .cid-teazCCIsey .navbar.opened {
    height: auto;
  }
  .cid-teazCCIsey .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-teazCK7bA1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-teazCK7bA1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-teazCK7bA1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-teazCK7bA1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-teazCK7bA1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-teazCK7bA1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-teazCK7bA1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-teazCK7bA1 .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-teazCK7bA1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-teazCK7bA1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teazCK7bA1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-teazCK7bA1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teazCK7bA1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-teazCK7bA1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-teazCK7bA1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sPEl8IWEtZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPEl8IWEtZ .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sPEl8IWEtZ .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sPEl8IWEtZ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sPEl8IWEtZ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sPEl8IWEtZ .container {
    padding: 0 1rem;
  }
}
.cid-sPEl8IWEtZ .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sPEl8IWEtZ .nav-link {
  position: relative;
}
.cid-sPEl8IWEtZ .nav-link:hover {
  color: #a61a3d !important;
}
.cid-sPEl8IWEtZ nav.navbar {
  position: fixed;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sPEl8IWEtZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPEl8IWEtZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sPEl8IWEtZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPEl8IWEtZ .navbar.collapsed {
  justify-content: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPEl8IWEtZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPEl8IWEtZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPEl8IWEtZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPEl8IWEtZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPEl8IWEtZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPEl8IWEtZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPEl8IWEtZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPEl8IWEtZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPEl8IWEtZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPEl8IWEtZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPEl8IWEtZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPEl8IWEtZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPEl8IWEtZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPEl8IWEtZ .dropdown-item:hover,
.cid-sPEl8IWEtZ .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-sPEl8IWEtZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPEl8IWEtZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPEl8IWEtZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPEl8IWEtZ .dropdown-menu,
.cid-sPEl8IWEtZ .navbar.opened {
  background: #f4f8fa !important;
}
.cid-sPEl8IWEtZ .nav-item:focus,
.cid-sPEl8IWEtZ .nav-link:focus {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPEl8IWEtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPEl8IWEtZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPEl8IWEtZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPEl8IWEtZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPEl8IWEtZ .dropdown-item.active,
.cid-sPEl8IWEtZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sPEl8IWEtZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPEl8IWEtZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-sPEl8IWEtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPEl8IWEtZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPEl8IWEtZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPEl8IWEtZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPEl8IWEtZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPEl8IWEtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPEl8IWEtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPEl8IWEtZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPEl8IWEtZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPEl8IWEtZ .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-sPEl8IWEtZ .navbar {
    height: 70px;
  }
  .cid-sPEl8IWEtZ .navbar.opened {
    height: auto;
  }
  .cid-sPEl8IWEtZ .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-t8MCUbJxP8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-t8MCUbJxP8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8MCUbJxP8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8MCUbJxP8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8MCUbJxP8 .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-t8MCUbJxP8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8MCUbJxP8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8MCUbJxP8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8MCUbJxP8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8MCUbJxP8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tgfN5zXJkB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgfN5zXJkB .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tgfN5zXJkB .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tgfN5zXJkB .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tgfN5zXJkB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tgfN5zXJkB .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tgfN5zXJkB .container {
    padding: 0 1rem;
  }
}
.cid-tgfN5zXJkB .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tgfN5zXJkB .nav-link {
  position: relative;
}
.cid-tgfN5zXJkB .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tgfN5zXJkB nav.navbar {
  position: fixed;
}
.cid-tgfN5zXJkB .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-tgfN5zXJkB .navbar.opened {
  transition: all 0.3s;
}
.cid-tgfN5zXJkB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgfN5zXJkB .navbar .navbar-logo img {
  width: auto;
}
.cid-tgfN5zXJkB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgfN5zXJkB .navbar.collapsed {
  justify-content: center;
}
.cid-tgfN5zXJkB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgfN5zXJkB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgfN5zXJkB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tgfN5zXJkB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgfN5zXJkB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgfN5zXJkB .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-tgfN5zXJkB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgfN5zXJkB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgfN5zXJkB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgfN5zXJkB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgfN5zXJkB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgfN5zXJkB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgfN5zXJkB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgfN5zXJkB .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-tgfN5zXJkB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgfN5zXJkB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgfN5zXJkB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgfN5zXJkB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgfN5zXJkB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgfN5zXJkB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgfN5zXJkB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgfN5zXJkB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgfN5zXJkB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgfN5zXJkB .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-tgfN5zXJkB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgfN5zXJkB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tgfN5zXJkB .dropdown-item:hover,
.cid-tgfN5zXJkB .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tgfN5zXJkB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgfN5zXJkB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgfN5zXJkB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tgfN5zXJkB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgfN5zXJkB .dropdown-menu,
.cid-tgfN5zXJkB .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tgfN5zXJkB .nav-item:focus,
.cid-tgfN5zXJkB .nav-link:focus {
  outline: none;
}
.cid-tgfN5zXJkB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgfN5zXJkB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgfN5zXJkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgfN5zXJkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgfN5zXJkB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgfN5zXJkB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgfN5zXJkB .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-tgfN5zXJkB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgfN5zXJkB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgfN5zXJkB .dropdown-item.active,
.cid-tgfN5zXJkB .dropdown-item:active {
  background-color: transparent;
}
.cid-tgfN5zXJkB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgfN5zXJkB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgfN5zXJkB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgfN5zXJkB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tgfN5zXJkB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgfN5zXJkB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgfN5zXJkB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgfN5zXJkB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgfN5zXJkB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tgfN5zXJkB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tgfN5zXJkB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgfN5zXJkB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgfN5zXJkB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgfN5zXJkB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgfN5zXJkB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgfN5zXJkB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgfN5zXJkB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgfN5zXJkB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgfN5zXJkB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tgfN5zXJkB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgfN5zXJkB .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-tgfN5zXJkB .navbar {
    height: 70px;
  }
  .cid-tgfN5zXJkB .navbar.opened {
    height: auto;
  }
  .cid-tgfN5zXJkB .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-tgfN5GbHV8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tgfN5GbHV8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tgfN5GbHV8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tgfN5GbHV8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tgfN5GbHV8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tgfN5GbHV8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tgfN5GbHV8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tgfN5GbHV8 .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-tgfN5GbHV8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tgfN5GbHV8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tgfN5GbHV8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tgfN5GbHV8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tgfN5GbHV8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tgfN5GbHV8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tgfN5GbHV8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-thtZP4itJa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-thtZP4itJa .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-thtZP4itJa .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-thtZP4itJa .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thtZP4itJa .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-thtZP4itJa .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-thtZP4itJa .container {
    padding: 0 1rem;
  }
}
.cid-thtZP4itJa .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-thtZP4itJa .nav-link {
  position: relative;
}
.cid-thtZP4itJa .nav-link:hover {
  color: #a61a3d !important;
}
.cid-thtZP4itJa nav.navbar {
  position: fixed;
}
.cid-thtZP4itJa .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-thtZP4itJa .navbar.opened {
  transition: all 0.3s;
}
.cid-thtZP4itJa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thtZP4itJa .navbar .navbar-logo img {
  width: auto;
}
.cid-thtZP4itJa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thtZP4itJa .navbar.collapsed {
  justify-content: center;
}
.cid-thtZP4itJa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thtZP4itJa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thtZP4itJa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thtZP4itJa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thtZP4itJa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thtZP4itJa .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-thtZP4itJa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thtZP4itJa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thtZP4itJa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thtZP4itJa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thtZP4itJa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thtZP4itJa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thtZP4itJa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thtZP4itJa .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-thtZP4itJa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thtZP4itJa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thtZP4itJa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thtZP4itJa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thtZP4itJa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thtZP4itJa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-thtZP4itJa .navbar.navbar-short {
  min-height: 60px;
}
.cid-thtZP4itJa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thtZP4itJa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thtZP4itJa .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-thtZP4itJa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thtZP4itJa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thtZP4itJa .dropdown-item:hover,
.cid-thtZP4itJa .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-thtZP4itJa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thtZP4itJa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thtZP4itJa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-thtZP4itJa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thtZP4itJa .dropdown-menu,
.cid-thtZP4itJa .navbar.opened {
  background: #f4f8fa !important;
}
.cid-thtZP4itJa .nav-item:focus,
.cid-thtZP4itJa .nav-link:focus {
  outline: none;
}
.cid-thtZP4itJa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thtZP4itJa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thtZP4itJa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thtZP4itJa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thtZP4itJa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thtZP4itJa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thtZP4itJa .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-thtZP4itJa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thtZP4itJa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thtZP4itJa .dropdown-item.active,
.cid-thtZP4itJa .dropdown-item:active {
  background-color: transparent;
}
.cid-thtZP4itJa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thtZP4itJa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thtZP4itJa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thtZP4itJa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-thtZP4itJa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thtZP4itJa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thtZP4itJa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thtZP4itJa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thtZP4itJa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-thtZP4itJa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-thtZP4itJa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thtZP4itJa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thtZP4itJa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thtZP4itJa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thtZP4itJa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thtZP4itJa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thtZP4itJa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thtZP4itJa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thtZP4itJa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thtZP4itJa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thtZP4itJa .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-thtZP4itJa .navbar {
    height: 70px;
  }
  .cid-thtZP4itJa .navbar.opened {
    height: auto;
  }
  .cid-thtZP4itJa .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-thtZPasdaS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-thtZPasdaS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thtZPasdaS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thtZPasdaS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thtZPasdaS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thtZPasdaS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thtZPasdaS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-thtZPasdaS .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-thtZPasdaS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thtZPasdaS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thtZPasdaS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thtZPasdaS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thtZPasdaS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thtZPasdaS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thtZPasdaS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tjbdy1tolK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tjbdy1tolK .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tjbdy1tolK .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tjbdy1tolK .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tjbdy1tolK .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tjbdy1tolK .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tjbdy1tolK .container {
    padding: 0 1rem;
  }
}
.cid-tjbdy1tolK .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tjbdy1tolK .nav-link {
  position: relative;
}
.cid-tjbdy1tolK .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tjbdy1tolK nav.navbar {
  position: fixed;
}
.cid-tjbdy1tolK .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-tjbdy1tolK .navbar.opened {
  transition: all 0.3s;
}
.cid-tjbdy1tolK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjbdy1tolK .navbar .navbar-logo img {
  width: auto;
}
.cid-tjbdy1tolK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjbdy1tolK .navbar.collapsed {
  justify-content: center;
}
.cid-tjbdy1tolK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjbdy1tolK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjbdy1tolK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tjbdy1tolK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjbdy1tolK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjbdy1tolK .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-tjbdy1tolK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjbdy1tolK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjbdy1tolK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjbdy1tolK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjbdy1tolK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjbdy1tolK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjbdy1tolK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjbdy1tolK .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-tjbdy1tolK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjbdy1tolK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjbdy1tolK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjbdy1tolK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjbdy1tolK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjbdy1tolK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tjbdy1tolK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjbdy1tolK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjbdy1tolK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjbdy1tolK .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-tjbdy1tolK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjbdy1tolK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjbdy1tolK .dropdown-item:hover,
.cid-tjbdy1tolK .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tjbdy1tolK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjbdy1tolK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjbdy1tolK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tjbdy1tolK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjbdy1tolK .dropdown-menu,
.cid-tjbdy1tolK .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tjbdy1tolK .nav-item:focus,
.cid-tjbdy1tolK .nav-link:focus {
  outline: none;
}
.cid-tjbdy1tolK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjbdy1tolK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjbdy1tolK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjbdy1tolK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjbdy1tolK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjbdy1tolK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjbdy1tolK .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-tjbdy1tolK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjbdy1tolK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjbdy1tolK .dropdown-item.active,
.cid-tjbdy1tolK .dropdown-item:active {
  background-color: transparent;
}
.cid-tjbdy1tolK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjbdy1tolK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjbdy1tolK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjbdy1tolK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tjbdy1tolK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjbdy1tolK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjbdy1tolK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjbdy1tolK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjbdy1tolK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjbdy1tolK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tjbdy1tolK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjbdy1tolK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjbdy1tolK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjbdy1tolK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjbdy1tolK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjbdy1tolK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjbdy1tolK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjbdy1tolK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjbdy1tolK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjbdy1tolK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjbdy1tolK .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-tjbdy1tolK .navbar {
    height: 70px;
  }
  .cid-tjbdy1tolK .navbar.opened {
    height: auto;
  }
  .cid-tjbdy1tolK .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-tjbdy75VZW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tjbdy75VZW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tjbdy75VZW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tjbdy75VZW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tjbdy75VZW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tjbdy75VZW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tjbdy75VZW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tjbdy75VZW .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-tjbdy75VZW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tjbdy75VZW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tjbdy75VZW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tjbdy75VZW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tjbdy75VZW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tjbdy75VZW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tjbdy75VZW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tsC1DIKVC2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsC1DIKVC2 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tsC1DIKVC2 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tsC1DIKVC2 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tsC1DIKVC2 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tsC1DIKVC2 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tsC1DIKVC2 .container {
    padding: 0 1rem;
  }
}
.cid-tsC1DIKVC2 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tsC1DIKVC2 .nav-link {
  position: relative;
}
.cid-tsC1DIKVC2 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tsC1DIKVC2 nav.navbar {
  position: fixed;
}
.cid-tsC1DIKVC2 .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-tsC1DIKVC2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsC1DIKVC2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsC1DIKVC2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsC1DIKVC2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsC1DIKVC2 .navbar.collapsed {
  justify-content: center;
}
.cid-tsC1DIKVC2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsC1DIKVC2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsC1DIKVC2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tsC1DIKVC2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsC1DIKVC2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsC1DIKVC2 .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-tsC1DIKVC2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsC1DIKVC2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsC1DIKVC2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsC1DIKVC2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsC1DIKVC2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsC1DIKVC2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsC1DIKVC2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsC1DIKVC2 .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-tsC1DIKVC2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsC1DIKVC2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsC1DIKVC2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsC1DIKVC2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsC1DIKVC2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsC1DIKVC2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tsC1DIKVC2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsC1DIKVC2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsC1DIKVC2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsC1DIKVC2 .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-tsC1DIKVC2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsC1DIKVC2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsC1DIKVC2 .dropdown-item:hover,
.cid-tsC1DIKVC2 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tsC1DIKVC2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsC1DIKVC2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsC1DIKVC2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tsC1DIKVC2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsC1DIKVC2 .dropdown-menu,
.cid-tsC1DIKVC2 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tsC1DIKVC2 .nav-item:focus,
.cid-tsC1DIKVC2 .nav-link:focus {
  outline: none;
}
.cid-tsC1DIKVC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsC1DIKVC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsC1DIKVC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsC1DIKVC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsC1DIKVC2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsC1DIKVC2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsC1DIKVC2 .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-tsC1DIKVC2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsC1DIKVC2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsC1DIKVC2 .dropdown-item.active,
.cid-tsC1DIKVC2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsC1DIKVC2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsC1DIKVC2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsC1DIKVC2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsC1DIKVC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tsC1DIKVC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsC1DIKVC2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsC1DIKVC2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsC1DIKVC2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsC1DIKVC2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsC1DIKVC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tsC1DIKVC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsC1DIKVC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsC1DIKVC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsC1DIKVC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsC1DIKVC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsC1DIKVC2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsC1DIKVC2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsC1DIKVC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsC1DIKVC2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsC1DIKVC2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsC1DIKVC2 .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-tsC1DIKVC2 .navbar {
    height: 70px;
  }
  .cid-tsC1DIKVC2 .navbar.opened {
    height: auto;
  }
  .cid-tsC1DIKVC2 .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-tsC1DT1xHw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tsC1DT1xHw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tsC1DT1xHw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tsC1DT1xHw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tsC1DT1xHw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tsC1DT1xHw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tsC1DT1xHw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tsC1DT1xHw .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-tsC1DT1xHw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsC1DT1xHw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tsC1DT1xHw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tsC1DT1xHw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsC1DT1xHw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsC1DT1xHw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tsC1DT1xHw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tu7nt3kKfI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tu7nt3kKfI .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tu7nt3kKfI .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tu7nt3kKfI .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tu7nt3kKfI .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tu7nt3kKfI .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tu7nt3kKfI .container {
    padding: 0 1rem;
  }
}
.cid-tu7nt3kKfI .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tu7nt3kKfI .nav-link {
  position: relative;
}
.cid-tu7nt3kKfI .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tu7nt3kKfI nav.navbar {
  position: fixed;
}
.cid-tu7nt3kKfI .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-tu7nt3kKfI .navbar.opened {
  transition: all 0.3s;
}
.cid-tu7nt3kKfI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu7nt3kKfI .navbar .navbar-logo img {
  width: auto;
}
.cid-tu7nt3kKfI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu7nt3kKfI .navbar.collapsed {
  justify-content: center;
}
.cid-tu7nt3kKfI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu7nt3kKfI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu7nt3kKfI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu7nt3kKfI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu7nt3kKfI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu7nt3kKfI .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-tu7nt3kKfI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu7nt3kKfI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu7nt3kKfI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu7nt3kKfI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu7nt3kKfI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu7nt3kKfI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu7nt3kKfI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu7nt3kKfI .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-tu7nt3kKfI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu7nt3kKfI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu7nt3kKfI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu7nt3kKfI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu7nt3kKfI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu7nt3kKfI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tu7nt3kKfI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu7nt3kKfI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu7nt3kKfI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu7nt3kKfI .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-tu7nt3kKfI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu7nt3kKfI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu7nt3kKfI .dropdown-item:hover,
.cid-tu7nt3kKfI .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tu7nt3kKfI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu7nt3kKfI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu7nt3kKfI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tu7nt3kKfI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu7nt3kKfI .dropdown-menu,
.cid-tu7nt3kKfI .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tu7nt3kKfI .nav-item:focus,
.cid-tu7nt3kKfI .nav-link:focus {
  outline: none;
}
.cid-tu7nt3kKfI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu7nt3kKfI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu7nt3kKfI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu7nt3kKfI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu7nt3kKfI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu7nt3kKfI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu7nt3kKfI .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-tu7nt3kKfI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu7nt3kKfI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu7nt3kKfI .dropdown-item.active,
.cid-tu7nt3kKfI .dropdown-item:active {
  background-color: transparent;
}
.cid-tu7nt3kKfI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu7nt3kKfI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu7nt3kKfI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu7nt3kKfI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tu7nt3kKfI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu7nt3kKfI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu7nt3kKfI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu7nt3kKfI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu7nt3kKfI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu7nt3kKfI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tu7nt3kKfI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu7nt3kKfI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu7nt3kKfI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu7nt3kKfI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu7nt3kKfI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu7nt3kKfI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu7nt3kKfI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu7nt3kKfI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu7nt3kKfI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu7nt3kKfI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu7nt3kKfI .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-tu7nt3kKfI .navbar {
    height: 70px;
  }
  .cid-tu7nt3kKfI .navbar.opened {
    height: auto;
  }
  .cid-tu7nt3kKfI .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-tu7nt6xoIr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tu7nt6xoIr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tu7nt6xoIr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tu7nt6xoIr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tu7nt6xoIr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu7nt6xoIr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tu7nt6xoIr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tu7nt6xoIr .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-tu7nt6xoIr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tu7nt6xoIr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tu7nt6xoIr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tu7nt6xoIr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu7nt6xoIr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tu7nt6xoIr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tu7nt6xoIr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tvZkNVfhfU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvZkNVfhfU .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tvZkNVfhfU .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tvZkNVfhfU .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tvZkNVfhfU .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tvZkNVfhfU .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tvZkNVfhfU .container {
    padding: 0 1rem;
  }
}
.cid-tvZkNVfhfU .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tvZkNVfhfU .nav-link {
  position: relative;
}
.cid-tvZkNVfhfU .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tvZkNVfhfU nav.navbar {
  position: fixed;
}
.cid-tvZkNVfhfU .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-tvZkNVfhfU .navbar.opened {
  transition: all 0.3s;
}
.cid-tvZkNVfhfU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvZkNVfhfU .navbar .navbar-logo img {
  width: auto;
}
.cid-tvZkNVfhfU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvZkNVfhfU .navbar.collapsed {
  justify-content: center;
}
.cid-tvZkNVfhfU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvZkNVfhfU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvZkNVfhfU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvZkNVfhfU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvZkNVfhfU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvZkNVfhfU .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-tvZkNVfhfU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvZkNVfhfU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvZkNVfhfU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvZkNVfhfU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvZkNVfhfU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvZkNVfhfU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvZkNVfhfU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvZkNVfhfU .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-tvZkNVfhfU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvZkNVfhfU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvZkNVfhfU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvZkNVfhfU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvZkNVfhfU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvZkNVfhfU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvZkNVfhfU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvZkNVfhfU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvZkNVfhfU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvZkNVfhfU .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-tvZkNVfhfU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvZkNVfhfU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvZkNVfhfU .dropdown-item:hover,
.cid-tvZkNVfhfU .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tvZkNVfhfU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvZkNVfhfU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvZkNVfhfU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tvZkNVfhfU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvZkNVfhfU .dropdown-menu,
.cid-tvZkNVfhfU .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tvZkNVfhfU .nav-item:focus,
.cid-tvZkNVfhfU .nav-link:focus {
  outline: none;
}
.cid-tvZkNVfhfU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvZkNVfhfU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvZkNVfhfU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvZkNVfhfU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvZkNVfhfU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvZkNVfhfU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvZkNVfhfU .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-tvZkNVfhfU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvZkNVfhfU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvZkNVfhfU .dropdown-item.active,
.cid-tvZkNVfhfU .dropdown-item:active {
  background-color: transparent;
}
.cid-tvZkNVfhfU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvZkNVfhfU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvZkNVfhfU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvZkNVfhfU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tvZkNVfhfU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvZkNVfhfU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvZkNVfhfU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvZkNVfhfU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvZkNVfhfU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvZkNVfhfU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvZkNVfhfU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvZkNVfhfU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvZkNVfhfU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvZkNVfhfU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvZkNVfhfU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvZkNVfhfU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvZkNVfhfU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvZkNVfhfU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvZkNVfhfU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvZkNVfhfU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvZkNVfhfU .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-tvZkNVfhfU .navbar {
    height: 70px;
  }
  .cid-tvZkNVfhfU .navbar.opened {
    height: auto;
  }
  .cid-tvZkNVfhfU .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-tvZkNYs6x7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tvZkNYs6x7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tvZkNYs6x7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tvZkNYs6x7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tvZkNYs6x7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tvZkNYs6x7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tvZkNYs6x7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tvZkNYs6x7 .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-tvZkNYs6x7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tvZkNYs6x7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tvZkNYs6x7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tvZkNYs6x7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvZkNYs6x7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tvZkNYs6x7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tvZkNYs6x7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-txqp46auUx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-txqp46auUx .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-txqp46auUx .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-txqp46auUx .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-txqp46auUx .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-txqp46auUx .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-txqp46auUx .container {
    padding: 0 1rem;
  }
}
.cid-txqp46auUx .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-txqp46auUx .nav-link {
  position: relative;
}
.cid-txqp46auUx .nav-link:hover {
  color: #a61a3d !important;
}
.cid-txqp46auUx nav.navbar {
  position: fixed;
}
.cid-txqp46auUx .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-txqp46auUx .navbar.opened {
  transition: all 0.3s;
}
.cid-txqp46auUx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txqp46auUx .navbar .navbar-logo img {
  width: auto;
}
.cid-txqp46auUx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txqp46auUx .navbar.collapsed {
  justify-content: center;
}
.cid-txqp46auUx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txqp46auUx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txqp46auUx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txqp46auUx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txqp46auUx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txqp46auUx .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-txqp46auUx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txqp46auUx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txqp46auUx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txqp46auUx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txqp46auUx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txqp46auUx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txqp46auUx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txqp46auUx .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-txqp46auUx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txqp46auUx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txqp46auUx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txqp46auUx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txqp46auUx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txqp46auUx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-txqp46auUx .navbar.navbar-short {
  min-height: 60px;
}
.cid-txqp46auUx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txqp46auUx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txqp46auUx .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-txqp46auUx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txqp46auUx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txqp46auUx .dropdown-item:hover,
.cid-txqp46auUx .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-txqp46auUx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txqp46auUx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txqp46auUx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-txqp46auUx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txqp46auUx .dropdown-menu,
.cid-txqp46auUx .navbar.opened {
  background: #f4f8fa !important;
}
.cid-txqp46auUx .nav-item:focus,
.cid-txqp46auUx .nav-link:focus {
  outline: none;
}
.cid-txqp46auUx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txqp46auUx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txqp46auUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txqp46auUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txqp46auUx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txqp46auUx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txqp46auUx .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-txqp46auUx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txqp46auUx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txqp46auUx .dropdown-item.active,
.cid-txqp46auUx .dropdown-item:active {
  background-color: transparent;
}
.cid-txqp46auUx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txqp46auUx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txqp46auUx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txqp46auUx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-txqp46auUx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txqp46auUx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txqp46auUx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txqp46auUx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txqp46auUx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txqp46auUx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txqp46auUx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txqp46auUx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txqp46auUx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txqp46auUx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txqp46auUx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txqp46auUx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txqp46auUx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txqp46auUx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txqp46auUx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txqp46auUx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txqp46auUx .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-txqp46auUx .navbar {
    height: 70px;
  }
  .cid-txqp46auUx .navbar.opened {
    height: auto;
  }
  .cid-txqp46auUx .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-txqp4911Ey {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-txqp4911Ey .row-links {
  width: 100%;
  justify-content: center;
}
.cid-txqp4911Ey .social-row {
  width: 100%;
  justify-content: center;
}
.cid-txqp4911Ey .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-txqp4911Ey .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-txqp4911Ey .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-txqp4911Ey .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-txqp4911Ey .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-txqp4911Ey .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-txqp4911Ey .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txqp4911Ey .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-txqp4911Ey .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txqp4911Ey .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-txqp4911Ey .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-txqp4911Ey .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tyx8b6EnCd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tyx8b6EnCd .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tyx8b6EnCd .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tyx8b6EnCd .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tyx8b6EnCd .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tyx8b6EnCd .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tyx8b6EnCd .container {
    padding: 0 1rem;
  }
}
.cid-tyx8b6EnCd .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tyx8b6EnCd .nav-link {
  position: relative;
}
.cid-tyx8b6EnCd .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tyx8b6EnCd nav.navbar {
  position: fixed;
}
.cid-tyx8b6EnCd .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-tyx8b6EnCd .navbar.opened {
  transition: all 0.3s;
}
.cid-tyx8b6EnCd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tyx8b6EnCd .navbar .navbar-logo img {
  width: auto;
}
.cid-tyx8b6EnCd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyx8b6EnCd .navbar.collapsed {
  justify-content: center;
}
.cid-tyx8b6EnCd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyx8b6EnCd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyx8b6EnCd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tyx8b6EnCd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyx8b6EnCd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyx8b6EnCd .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-tyx8b6EnCd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyx8b6EnCd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyx8b6EnCd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyx8b6EnCd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyx8b6EnCd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyx8b6EnCd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyx8b6EnCd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyx8b6EnCd .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-tyx8b6EnCd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tyx8b6EnCd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyx8b6EnCd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyx8b6EnCd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tyx8b6EnCd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tyx8b6EnCd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyx8b6EnCd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tyx8b6EnCd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tyx8b6EnCd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tyx8b6EnCd .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-tyx8b6EnCd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyx8b6EnCd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tyx8b6EnCd .dropdown-item:hover,
.cid-tyx8b6EnCd .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tyx8b6EnCd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tyx8b6EnCd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tyx8b6EnCd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tyx8b6EnCd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tyx8b6EnCd .dropdown-menu,
.cid-tyx8b6EnCd .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tyx8b6EnCd .nav-item:focus,
.cid-tyx8b6EnCd .nav-link:focus {
  outline: none;
}
.cid-tyx8b6EnCd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tyx8b6EnCd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyx8b6EnCd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tyx8b6EnCd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tyx8b6EnCd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyx8b6EnCd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyx8b6EnCd .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-tyx8b6EnCd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyx8b6EnCd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyx8b6EnCd .dropdown-item.active,
.cid-tyx8b6EnCd .dropdown-item:active {
  background-color: transparent;
}
.cid-tyx8b6EnCd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyx8b6EnCd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyx8b6EnCd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyx8b6EnCd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tyx8b6EnCd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyx8b6EnCd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyx8b6EnCd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tyx8b6EnCd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tyx8b6EnCd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tyx8b6EnCd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tyx8b6EnCd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyx8b6EnCd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyx8b6EnCd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyx8b6EnCd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyx8b6EnCd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyx8b6EnCd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyx8b6EnCd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyx8b6EnCd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyx8b6EnCd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tyx8b6EnCd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyx8b6EnCd .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-tyx8b6EnCd .navbar {
    height: 70px;
  }
  .cid-tyx8b6EnCd .navbar.opened {
    height: auto;
  }
  .cid-tyx8b6EnCd .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-tyx8bbzMsl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tyx8bbzMsl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tyx8bbzMsl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tyx8bbzMsl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tyx8bbzMsl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tyx8bbzMsl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tyx8bbzMsl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tyx8bbzMsl .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-tyx8bbzMsl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tyx8bbzMsl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyx8bbzMsl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tyx8bbzMsl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyx8bbzMsl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyx8bbzMsl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tyx8bbzMsl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tzXnAPzaxA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tzXnAPzaxA .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tzXnAPzaxA .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tzXnAPzaxA .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tzXnAPzaxA .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tzXnAPzaxA .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tzXnAPzaxA .container {
    padding: 0 1rem;
  }
}
.cid-tzXnAPzaxA .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tzXnAPzaxA .nav-link {
  position: relative;
}
.cid-tzXnAPzaxA .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tzXnAPzaxA nav.navbar {
  position: fixed;
}
.cid-tzXnAPzaxA .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-tzXnAPzaxA .navbar.opened {
  transition: all 0.3s;
}
.cid-tzXnAPzaxA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzXnAPzaxA .navbar .navbar-logo img {
  width: auto;
}
.cid-tzXnAPzaxA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzXnAPzaxA .navbar.collapsed {
  justify-content: center;
}
.cid-tzXnAPzaxA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzXnAPzaxA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzXnAPzaxA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzXnAPzaxA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzXnAPzaxA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzXnAPzaxA .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-tzXnAPzaxA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzXnAPzaxA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzXnAPzaxA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzXnAPzaxA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzXnAPzaxA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzXnAPzaxA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzXnAPzaxA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzXnAPzaxA .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-tzXnAPzaxA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzXnAPzaxA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzXnAPzaxA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzXnAPzaxA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzXnAPzaxA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzXnAPzaxA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzXnAPzaxA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzXnAPzaxA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzXnAPzaxA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tzXnAPzaxA .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-tzXnAPzaxA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzXnAPzaxA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzXnAPzaxA .dropdown-item:hover,
.cid-tzXnAPzaxA .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tzXnAPzaxA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzXnAPzaxA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzXnAPzaxA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tzXnAPzaxA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzXnAPzaxA .dropdown-menu,
.cid-tzXnAPzaxA .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tzXnAPzaxA .nav-item:focus,
.cid-tzXnAPzaxA .nav-link:focus {
  outline: none;
}
.cid-tzXnAPzaxA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzXnAPzaxA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzXnAPzaxA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzXnAPzaxA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzXnAPzaxA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzXnAPzaxA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzXnAPzaxA .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-tzXnAPzaxA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzXnAPzaxA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzXnAPzaxA .dropdown-item.active,
.cid-tzXnAPzaxA .dropdown-item:active {
  background-color: transparent;
}
.cid-tzXnAPzaxA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzXnAPzaxA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzXnAPzaxA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzXnAPzaxA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tzXnAPzaxA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzXnAPzaxA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzXnAPzaxA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzXnAPzaxA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzXnAPzaxA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzXnAPzaxA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tzXnAPzaxA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzXnAPzaxA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzXnAPzaxA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzXnAPzaxA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzXnAPzaxA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzXnAPzaxA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzXnAPzaxA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzXnAPzaxA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzXnAPzaxA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tzXnAPzaxA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzXnAPzaxA .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-tzXnAPzaxA .navbar {
    height: 70px;
  }
  .cid-tzXnAPzaxA .navbar.opened {
    height: auto;
  }
  .cid-tzXnAPzaxA .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-tzXnATe4aT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tzXnATe4aT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tzXnATe4aT .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tzXnATe4aT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tzXnATe4aT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tzXnATe4aT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tzXnATe4aT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tzXnATe4aT .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-tzXnATe4aT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tzXnATe4aT .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tzXnATe4aT .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tzXnATe4aT .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tzXnATe4aT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzXnATe4aT .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tzXnATe4aT .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBKiLk0lEj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBKiLk0lEj .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tBKiLk0lEj .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tBKiLk0lEj .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tBKiLk0lEj .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tBKiLk0lEj .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tBKiLk0lEj .container {
    padding: 0 1rem;
  }
}
.cid-tBKiLk0lEj .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tBKiLk0lEj .nav-link {
  position: relative;
}
.cid-tBKiLk0lEj .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tBKiLk0lEj nav.navbar {
  position: fixed;
}
.cid-tBKiLk0lEj .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-tBKiLk0lEj .navbar.opened {
  transition: all 0.3s;
}
.cid-tBKiLk0lEj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBKiLk0lEj .navbar .navbar-logo img {
  width: auto;
}
.cid-tBKiLk0lEj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBKiLk0lEj .navbar.collapsed {
  justify-content: center;
}
.cid-tBKiLk0lEj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBKiLk0lEj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBKiLk0lEj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBKiLk0lEj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBKiLk0lEj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBKiLk0lEj .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-tBKiLk0lEj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBKiLk0lEj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBKiLk0lEj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBKiLk0lEj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBKiLk0lEj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBKiLk0lEj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBKiLk0lEj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBKiLk0lEj .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-tBKiLk0lEj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBKiLk0lEj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBKiLk0lEj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBKiLk0lEj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBKiLk0lEj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBKiLk0lEj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBKiLk0lEj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBKiLk0lEj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBKiLk0lEj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBKiLk0lEj .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-tBKiLk0lEj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBKiLk0lEj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBKiLk0lEj .dropdown-item:hover,
.cid-tBKiLk0lEj .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tBKiLk0lEj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBKiLk0lEj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBKiLk0lEj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tBKiLk0lEj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBKiLk0lEj .dropdown-menu,
.cid-tBKiLk0lEj .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tBKiLk0lEj .nav-item:focus,
.cid-tBKiLk0lEj .nav-link:focus {
  outline: none;
}
.cid-tBKiLk0lEj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBKiLk0lEj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBKiLk0lEj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBKiLk0lEj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBKiLk0lEj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBKiLk0lEj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBKiLk0lEj .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-tBKiLk0lEj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBKiLk0lEj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBKiLk0lEj .dropdown-item.active,
.cid-tBKiLk0lEj .dropdown-item:active {
  background-color: transparent;
}
.cid-tBKiLk0lEj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBKiLk0lEj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBKiLk0lEj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBKiLk0lEj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tBKiLk0lEj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBKiLk0lEj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBKiLk0lEj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBKiLk0lEj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBKiLk0lEj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBKiLk0lEj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tBKiLk0lEj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBKiLk0lEj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBKiLk0lEj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBKiLk0lEj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBKiLk0lEj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBKiLk0lEj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBKiLk0lEj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBKiLk0lEj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBKiLk0lEj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBKiLk0lEj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBKiLk0lEj .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-tBKiLk0lEj .navbar {
    height: 70px;
  }
  .cid-tBKiLk0lEj .navbar.opened {
    height: auto;
  }
  .cid-tBKiLk0lEj .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-tBKiLnrRN2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tBKiLnrRN2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBKiLnrRN2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBKiLnrRN2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBKiLnrRN2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBKiLnrRN2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBKiLnrRN2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBKiLnrRN2 .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-tBKiLnrRN2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBKiLnrRN2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBKiLnrRN2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBKiLnrRN2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBKiLnrRN2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBKiLnrRN2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBKiLnrRN2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEzGj5SD5j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEzGj5SD5j .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tEzGj5SD5j .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tEzGj5SD5j .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tEzGj5SD5j .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tEzGj5SD5j .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tEzGj5SD5j .container {
    padding: 0 1rem;
  }
}
.cid-tEzGj5SD5j .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tEzGj5SD5j .nav-link {
  position: relative;
}
.cid-tEzGj5SD5j .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tEzGj5SD5j nav.navbar {
  position: fixed;
}
.cid-tEzGj5SD5j .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-tEzGj5SD5j .navbar.opened {
  transition: all 0.3s;
}
.cid-tEzGj5SD5j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEzGj5SD5j .navbar .navbar-logo img {
  width: auto;
}
.cid-tEzGj5SD5j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEzGj5SD5j .navbar.collapsed {
  justify-content: center;
}
.cid-tEzGj5SD5j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEzGj5SD5j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEzGj5SD5j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tEzGj5SD5j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEzGj5SD5j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEzGj5SD5j .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-tEzGj5SD5j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEzGj5SD5j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEzGj5SD5j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEzGj5SD5j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEzGj5SD5j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEzGj5SD5j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEzGj5SD5j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEzGj5SD5j .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-tEzGj5SD5j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEzGj5SD5j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEzGj5SD5j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEzGj5SD5j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEzGj5SD5j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEzGj5SD5j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tEzGj5SD5j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEzGj5SD5j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEzGj5SD5j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEzGj5SD5j .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-tEzGj5SD5j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEzGj5SD5j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEzGj5SD5j .dropdown-item:hover,
.cid-tEzGj5SD5j .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tEzGj5SD5j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEzGj5SD5j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEzGj5SD5j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tEzGj5SD5j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEzGj5SD5j .dropdown-menu,
.cid-tEzGj5SD5j .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tEzGj5SD5j .nav-item:focus,
.cid-tEzGj5SD5j .nav-link:focus {
  outline: none;
}
.cid-tEzGj5SD5j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEzGj5SD5j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEzGj5SD5j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEzGj5SD5j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEzGj5SD5j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEzGj5SD5j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEzGj5SD5j .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-tEzGj5SD5j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEzGj5SD5j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEzGj5SD5j .dropdown-item.active,
.cid-tEzGj5SD5j .dropdown-item:active {
  background-color: transparent;
}
.cid-tEzGj5SD5j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEzGj5SD5j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEzGj5SD5j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEzGj5SD5j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tEzGj5SD5j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEzGj5SD5j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEzGj5SD5j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEzGj5SD5j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEzGj5SD5j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEzGj5SD5j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tEzGj5SD5j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEzGj5SD5j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEzGj5SD5j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEzGj5SD5j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEzGj5SD5j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEzGj5SD5j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEzGj5SD5j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEzGj5SD5j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEzGj5SD5j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEzGj5SD5j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEzGj5SD5j .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-tEzGj5SD5j .navbar {
    height: 70px;
  }
  .cid-tEzGj5SD5j .navbar.opened {
    height: auto;
  }
  .cid-tEzGj5SD5j .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-tEzGjam6BS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tEzGjam6BS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEzGjam6BS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEzGjam6BS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEzGjam6BS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEzGjam6BS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEzGjam6BS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEzGjam6BS .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-tEzGjam6BS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEzGjam6BS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEzGjam6BS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tEzGjam6BS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEzGjam6BS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tEzGjam6BS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEzGjam6BS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFU12IUcl9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFU12IUcl9 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tFU12IUcl9 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tFU12IUcl9 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tFU12IUcl9 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tFU12IUcl9 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tFU12IUcl9 .container {
    padding: 0 1rem;
  }
}
.cid-tFU12IUcl9 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tFU12IUcl9 .nav-link {
  position: relative;
}
.cid-tFU12IUcl9 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tFU12IUcl9 nav.navbar {
  position: fixed;
}
.cid-tFU12IUcl9 .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-tFU12IUcl9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFU12IUcl9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFU12IUcl9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFU12IUcl9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFU12IUcl9 .navbar.collapsed {
  justify-content: center;
}
.cid-tFU12IUcl9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFU12IUcl9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFU12IUcl9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFU12IUcl9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFU12IUcl9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFU12IUcl9 .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-tFU12IUcl9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFU12IUcl9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFU12IUcl9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFU12IUcl9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFU12IUcl9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFU12IUcl9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFU12IUcl9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFU12IUcl9 .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-tFU12IUcl9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFU12IUcl9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFU12IUcl9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFU12IUcl9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFU12IUcl9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFU12IUcl9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFU12IUcl9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFU12IUcl9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFU12IUcl9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFU12IUcl9 .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-tFU12IUcl9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFU12IUcl9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFU12IUcl9 .dropdown-item:hover,
.cid-tFU12IUcl9 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tFU12IUcl9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFU12IUcl9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFU12IUcl9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tFU12IUcl9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFU12IUcl9 .dropdown-menu,
.cid-tFU12IUcl9 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tFU12IUcl9 .nav-item:focus,
.cid-tFU12IUcl9 .nav-link:focus {
  outline: none;
}
.cid-tFU12IUcl9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFU12IUcl9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFU12IUcl9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFU12IUcl9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFU12IUcl9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFU12IUcl9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFU12IUcl9 .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-tFU12IUcl9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFU12IUcl9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFU12IUcl9 .dropdown-item.active,
.cid-tFU12IUcl9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFU12IUcl9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFU12IUcl9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFU12IUcl9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFU12IUcl9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tFU12IUcl9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFU12IUcl9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFU12IUcl9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFU12IUcl9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFU12IUcl9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFU12IUcl9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFU12IUcl9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFU12IUcl9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFU12IUcl9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFU12IUcl9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFU12IUcl9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFU12IUcl9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFU12IUcl9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFU12IUcl9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFU12IUcl9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFU12IUcl9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFU12IUcl9 .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-tFU12IUcl9 .navbar {
    height: 70px;
  }
  .cid-tFU12IUcl9 .navbar.opened {
    height: auto;
  }
  .cid-tFU12IUcl9 .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-tFU13xvmjP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tFU13xvmjP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFU13xvmjP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFU13xvmjP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFU13xvmjP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFU13xvmjP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFU13xvmjP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFU13xvmjP .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-tFU13xvmjP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFU13xvmjP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFU13xvmjP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFU13xvmjP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFU13xvmjP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFU13xvmjP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFU13xvmjP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tGVLyTrbA2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGVLyTrbA2 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tGVLyTrbA2 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tGVLyTrbA2 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tGVLyTrbA2 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tGVLyTrbA2 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tGVLyTrbA2 .container {
    padding: 0 1rem;
  }
}
.cid-tGVLyTrbA2 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tGVLyTrbA2 .nav-link {
  position: relative;
}
.cid-tGVLyTrbA2 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tGVLyTrbA2 nav.navbar {
  position: fixed;
}
.cid-tGVLyTrbA2 .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-tGVLyTrbA2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGVLyTrbA2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGVLyTrbA2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGVLyTrbA2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGVLyTrbA2 .navbar.collapsed {
  justify-content: center;
}
.cid-tGVLyTrbA2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGVLyTrbA2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGVLyTrbA2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGVLyTrbA2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGVLyTrbA2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGVLyTrbA2 .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-tGVLyTrbA2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGVLyTrbA2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGVLyTrbA2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGVLyTrbA2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGVLyTrbA2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGVLyTrbA2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGVLyTrbA2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGVLyTrbA2 .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-tGVLyTrbA2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGVLyTrbA2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGVLyTrbA2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGVLyTrbA2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGVLyTrbA2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGVLyTrbA2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGVLyTrbA2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGVLyTrbA2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGVLyTrbA2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGVLyTrbA2 .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-tGVLyTrbA2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGVLyTrbA2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGVLyTrbA2 .dropdown-item:hover,
.cid-tGVLyTrbA2 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tGVLyTrbA2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGVLyTrbA2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGVLyTrbA2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tGVLyTrbA2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGVLyTrbA2 .dropdown-menu,
.cid-tGVLyTrbA2 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tGVLyTrbA2 .nav-item:focus,
.cid-tGVLyTrbA2 .nav-link:focus {
  outline: none;
}
.cid-tGVLyTrbA2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGVLyTrbA2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGVLyTrbA2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGVLyTrbA2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGVLyTrbA2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGVLyTrbA2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGVLyTrbA2 .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-tGVLyTrbA2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGVLyTrbA2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGVLyTrbA2 .dropdown-item.active,
.cid-tGVLyTrbA2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGVLyTrbA2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGVLyTrbA2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGVLyTrbA2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGVLyTrbA2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tGVLyTrbA2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGVLyTrbA2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGVLyTrbA2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGVLyTrbA2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGVLyTrbA2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGVLyTrbA2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tGVLyTrbA2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGVLyTrbA2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGVLyTrbA2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGVLyTrbA2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGVLyTrbA2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGVLyTrbA2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGVLyTrbA2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGVLyTrbA2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGVLyTrbA2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGVLyTrbA2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGVLyTrbA2 .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-tGVLyTrbA2 .navbar {
    height: 70px;
  }
  .cid-tGVLyTrbA2 .navbar.opened {
    height: auto;
  }
  .cid-tGVLyTrbA2 .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-tGVLz2Jocs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tGVLz2Jocs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tGVLz2Jocs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tGVLz2Jocs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tGVLz2Jocs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tGVLz2Jocs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tGVLz2Jocs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tGVLz2Jocs .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-tGVLz2Jocs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tGVLz2Jocs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tGVLz2Jocs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tGVLz2Jocs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tGVLz2Jocs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGVLz2Jocs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tGVLz2Jocs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIr505zg9Z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIr505zg9Z .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tIr505zg9Z .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tIr505zg9Z .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tIr505zg9Z .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tIr505zg9Z .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tIr505zg9Z .container {
    padding: 0 1rem;
  }
}
.cid-tIr505zg9Z .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tIr505zg9Z .nav-link {
  position: relative;
}
.cid-tIr505zg9Z .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tIr505zg9Z nav.navbar {
  position: fixed;
}
.cid-tIr505zg9Z .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-tIr505zg9Z .navbar.opened {
  transition: all 0.3s;
}
.cid-tIr505zg9Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIr505zg9Z .navbar .navbar-logo img {
  width: auto;
}
.cid-tIr505zg9Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIr505zg9Z .navbar.collapsed {
  justify-content: center;
}
.cid-tIr505zg9Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIr505zg9Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIr505zg9Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tIr505zg9Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIr505zg9Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIr505zg9Z .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-tIr505zg9Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIr505zg9Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIr505zg9Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIr505zg9Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIr505zg9Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIr505zg9Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIr505zg9Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIr505zg9Z .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-tIr505zg9Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIr505zg9Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIr505zg9Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIr505zg9Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIr505zg9Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIr505zg9Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIr505zg9Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIr505zg9Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIr505zg9Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIr505zg9Z .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-tIr505zg9Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIr505zg9Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIr505zg9Z .dropdown-item:hover,
.cid-tIr505zg9Z .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tIr505zg9Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIr505zg9Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIr505zg9Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tIr505zg9Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIr505zg9Z .dropdown-menu,
.cid-tIr505zg9Z .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tIr505zg9Z .nav-item:focus,
.cid-tIr505zg9Z .nav-link:focus {
  outline: none;
}
.cid-tIr505zg9Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIr505zg9Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIr505zg9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIr505zg9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIr505zg9Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIr505zg9Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIr505zg9Z .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-tIr505zg9Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIr505zg9Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIr505zg9Z .dropdown-item.active,
.cid-tIr505zg9Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tIr505zg9Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIr505zg9Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIr505zg9Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIr505zg9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tIr505zg9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIr505zg9Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIr505zg9Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIr505zg9Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIr505zg9Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIr505zg9Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tIr505zg9Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIr505zg9Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIr505zg9Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIr505zg9Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIr505zg9Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIr505zg9Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIr505zg9Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIr505zg9Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIr505zg9Z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIr505zg9Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIr505zg9Z .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-tIr505zg9Z .navbar {
    height: 70px;
  }
  .cid-tIr505zg9Z .navbar.opened {
    height: auto;
  }
  .cid-tIr505zg9Z .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-tIr508TgXb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tIr508TgXb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIr508TgXb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIr508TgXb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIr508TgXb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIr508TgXb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIr508TgXb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIr508TgXb .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-tIr508TgXb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIr508TgXb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIr508TgXb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIr508TgXb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIr508TgXb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIr508TgXb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIr508TgXb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLaZBxrcn5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLaZBxrcn5 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tLaZBxrcn5 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tLaZBxrcn5 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tLaZBxrcn5 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tLaZBxrcn5 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tLaZBxrcn5 .container {
    padding: 0 1rem;
  }
}
.cid-tLaZBxrcn5 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tLaZBxrcn5 .nav-link {
  position: relative;
}
.cid-tLaZBxrcn5 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tLaZBxrcn5 nav.navbar {
  position: fixed;
}
.cid-tLaZBxrcn5 .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-tLaZBxrcn5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tLaZBxrcn5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLaZBxrcn5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tLaZBxrcn5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLaZBxrcn5 .navbar.collapsed {
  justify-content: center;
}
.cid-tLaZBxrcn5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLaZBxrcn5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLaZBxrcn5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLaZBxrcn5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLaZBxrcn5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLaZBxrcn5 .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-tLaZBxrcn5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLaZBxrcn5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLaZBxrcn5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLaZBxrcn5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLaZBxrcn5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLaZBxrcn5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLaZBxrcn5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLaZBxrcn5 .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-tLaZBxrcn5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLaZBxrcn5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLaZBxrcn5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLaZBxrcn5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLaZBxrcn5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLaZBxrcn5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tLaZBxrcn5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLaZBxrcn5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLaZBxrcn5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLaZBxrcn5 .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-tLaZBxrcn5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLaZBxrcn5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLaZBxrcn5 .dropdown-item:hover,
.cid-tLaZBxrcn5 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tLaZBxrcn5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLaZBxrcn5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLaZBxrcn5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tLaZBxrcn5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLaZBxrcn5 .dropdown-menu,
.cid-tLaZBxrcn5 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tLaZBxrcn5 .nav-item:focus,
.cid-tLaZBxrcn5 .nav-link:focus {
  outline: none;
}
.cid-tLaZBxrcn5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLaZBxrcn5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLaZBxrcn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLaZBxrcn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLaZBxrcn5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLaZBxrcn5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLaZBxrcn5 .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-tLaZBxrcn5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLaZBxrcn5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLaZBxrcn5 .dropdown-item.active,
.cid-tLaZBxrcn5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLaZBxrcn5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLaZBxrcn5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLaZBxrcn5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLaZBxrcn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tLaZBxrcn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLaZBxrcn5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLaZBxrcn5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLaZBxrcn5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLaZBxrcn5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLaZBxrcn5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tLaZBxrcn5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLaZBxrcn5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLaZBxrcn5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLaZBxrcn5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLaZBxrcn5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLaZBxrcn5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLaZBxrcn5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLaZBxrcn5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLaZBxrcn5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLaZBxrcn5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLaZBxrcn5 .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-tLaZBxrcn5 .navbar {
    height: 70px;
  }
  .cid-tLaZBxrcn5 .navbar.opened {
    height: auto;
  }
  .cid-tLaZBxrcn5 .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-tLaZBFbDHj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tLaZBFbDHj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLaZBFbDHj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLaZBFbDHj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLaZBFbDHj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLaZBFbDHj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLaZBFbDHj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLaZBFbDHj .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-tLaZBFbDHj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLaZBFbDHj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLaZBFbDHj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLaZBFbDHj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLaZBFbDHj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLaZBFbDHj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLaZBFbDHj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLbNyzQUOf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLbNyzQUOf .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tLbNyzQUOf .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tLbNyzQUOf .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tLbNyzQUOf .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tLbNyzQUOf .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tLbNyzQUOf .container {
    padding: 0 1rem;
  }
}
.cid-tLbNyzQUOf .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tLbNyzQUOf .nav-link {
  position: relative;
}
.cid-tLbNyzQUOf .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tLbNyzQUOf nav.navbar {
  position: fixed;
}
.cid-tLbNyzQUOf .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-tLbNyzQUOf .navbar.opened {
  transition: all 0.3s;
}
.cid-tLbNyzQUOf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLbNyzQUOf .navbar .navbar-logo img {
  width: auto;
}
.cid-tLbNyzQUOf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLbNyzQUOf .navbar.collapsed {
  justify-content: center;
}
.cid-tLbNyzQUOf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLbNyzQUOf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLbNyzQUOf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLbNyzQUOf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLbNyzQUOf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLbNyzQUOf .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-tLbNyzQUOf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLbNyzQUOf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLbNyzQUOf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLbNyzQUOf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLbNyzQUOf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLbNyzQUOf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLbNyzQUOf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLbNyzQUOf .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-tLbNyzQUOf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLbNyzQUOf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLbNyzQUOf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLbNyzQUOf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLbNyzQUOf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLbNyzQUOf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tLbNyzQUOf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLbNyzQUOf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLbNyzQUOf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLbNyzQUOf .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-tLbNyzQUOf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLbNyzQUOf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLbNyzQUOf .dropdown-item:hover,
.cid-tLbNyzQUOf .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tLbNyzQUOf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLbNyzQUOf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLbNyzQUOf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tLbNyzQUOf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLbNyzQUOf .dropdown-menu,
.cid-tLbNyzQUOf .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tLbNyzQUOf .nav-item:focus,
.cid-tLbNyzQUOf .nav-link:focus {
  outline: none;
}
.cid-tLbNyzQUOf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLbNyzQUOf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLbNyzQUOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLbNyzQUOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLbNyzQUOf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLbNyzQUOf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLbNyzQUOf .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-tLbNyzQUOf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLbNyzQUOf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLbNyzQUOf .dropdown-item.active,
.cid-tLbNyzQUOf .dropdown-item:active {
  background-color: transparent;
}
.cid-tLbNyzQUOf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLbNyzQUOf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLbNyzQUOf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLbNyzQUOf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tLbNyzQUOf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLbNyzQUOf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLbNyzQUOf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLbNyzQUOf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLbNyzQUOf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLbNyzQUOf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tLbNyzQUOf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLbNyzQUOf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLbNyzQUOf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLbNyzQUOf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLbNyzQUOf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLbNyzQUOf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLbNyzQUOf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLbNyzQUOf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLbNyzQUOf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLbNyzQUOf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLbNyzQUOf .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-tLbNyzQUOf .navbar {
    height: 70px;
  }
  .cid-tLbNyzQUOf .navbar.opened {
    height: auto;
  }
  .cid-tLbNyzQUOf .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-tLbNyGDG4z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tLbNyGDG4z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLbNyGDG4z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLbNyGDG4z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLbNyGDG4z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLbNyGDG4z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLbNyGDG4z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLbNyGDG4z .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-tLbNyGDG4z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLbNyGDG4z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLbNyGDG4z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLbNyGDG4z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLbNyGDG4z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLbNyGDG4z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLbNyGDG4z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tNxlHp3Bt4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNxlHp3Bt4 .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tNxlHp3Bt4 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tNxlHp3Bt4 .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tNxlHp3Bt4 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tNxlHp3Bt4 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tNxlHp3Bt4 .container {
    padding: 0 1rem;
  }
}
.cid-tNxlHp3Bt4 .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tNxlHp3Bt4 .nav-link {
  position: relative;
}
.cid-tNxlHp3Bt4 .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tNxlHp3Bt4 nav.navbar {
  position: fixed;
}
.cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tNxlHp3Bt4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNxlHp3Bt4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tNxlHp3Bt4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNxlHp3Bt4 .navbar.collapsed {
  justify-content: center;
}
.cid-tNxlHp3Bt4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNxlHp3Bt4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNxlHp3Bt4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tNxlHp3Bt4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNxlHp3Bt4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNxlHp3Bt4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNxlHp3Bt4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNxlHp3Bt4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNxlHp3Bt4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNxlHp3Bt4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNxlHp3Bt4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNxlHp3Bt4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNxlHp3Bt4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNxlHp3Bt4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNxlHp3Bt4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNxlHp3Bt4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNxlHp3Bt4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNxlHp3Bt4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNxlHp3Bt4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNxlHp3Bt4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNxlHp3Bt4 .dropdown-item:hover,
.cid-tNxlHp3Bt4 .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tNxlHp3Bt4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNxlHp3Bt4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNxlHp3Bt4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tNxlHp3Bt4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNxlHp3Bt4 .dropdown-menu,
.cid-tNxlHp3Bt4 .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tNxlHp3Bt4 .nav-item:focus,
.cid-tNxlHp3Bt4 .nav-link:focus {
  outline: none;
}
.cid-tNxlHp3Bt4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNxlHp3Bt4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNxlHp3Bt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNxlHp3Bt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNxlHp3Bt4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNxlHp3Bt4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNxlHp3Bt4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNxlHp3Bt4 .dropdown-item.active,
.cid-tNxlHp3Bt4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tNxlHp3Bt4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNxlHp3Bt4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNxlHp3Bt4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNxlHp3Bt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tNxlHp3Bt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNxlHp3Bt4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNxlHp3Bt4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNxlHp3Bt4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNxlHp3Bt4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNxlHp3Bt4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tNxlHp3Bt4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNxlHp3Bt4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNxlHp3Bt4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNxlHp3Bt4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNxlHp3Bt4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNxlHp3Bt4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNxlHp3Bt4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNxlHp3Bt4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNxlHp3Bt4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNxlHp3Bt4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNxlHp3Bt4 .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-tNxlHp3Bt4 .navbar {
    height: 70px;
  }
  .cid-tNxlHp3Bt4 .navbar.opened {
    height: auto;
  }
  .cid-tNxlHp3Bt4 .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-tNxlHsyZ5D {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tNxlHsyZ5D .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tNxlHsyZ5D .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tNxlHsyZ5D .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tNxlHsyZ5D .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tNxlHsyZ5D .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tNxlHsyZ5D .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tNxlHsyZ5D .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-tNxlHsyZ5D .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tNxlHsyZ5D .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tNxlHsyZ5D .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tNxlHsyZ5D .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tNxlHsyZ5D .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNxlHsyZ5D .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tNxlHsyZ5D .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tPHlPovv0r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPHlPovv0r .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tPHlPovv0r .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tPHlPovv0r .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tPHlPovv0r .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tPHlPovv0r .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tPHlPovv0r .container {
    padding: 0 1rem;
  }
}
.cid-tPHlPovv0r .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tPHlPovv0r .nav-link {
  position: relative;
}
.cid-tPHlPovv0r .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tPHlPovv0r nav.navbar {
  position: fixed;
}
.cid-tPHlPovv0r .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-tPHlPovv0r .navbar.opened {
  transition: all 0.3s;
}
.cid-tPHlPovv0r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPHlPovv0r .navbar .navbar-logo img {
  width: auto;
}
.cid-tPHlPovv0r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPHlPovv0r .navbar.collapsed {
  justify-content: center;
}
.cid-tPHlPovv0r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPHlPovv0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPHlPovv0r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tPHlPovv0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPHlPovv0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPHlPovv0r .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-tPHlPovv0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPHlPovv0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPHlPovv0r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPHlPovv0r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPHlPovv0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPHlPovv0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPHlPovv0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPHlPovv0r .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-tPHlPovv0r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPHlPovv0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPHlPovv0r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPHlPovv0r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPHlPovv0r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPHlPovv0r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPHlPovv0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPHlPovv0r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPHlPovv0r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPHlPovv0r .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-tPHlPovv0r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPHlPovv0r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPHlPovv0r .dropdown-item:hover,
.cid-tPHlPovv0r .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tPHlPovv0r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPHlPovv0r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPHlPovv0r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tPHlPovv0r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPHlPovv0r .dropdown-menu,
.cid-tPHlPovv0r .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tPHlPovv0r .nav-item:focus,
.cid-tPHlPovv0r .nav-link:focus {
  outline: none;
}
.cid-tPHlPovv0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPHlPovv0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPHlPovv0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPHlPovv0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPHlPovv0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPHlPovv0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPHlPovv0r .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-tPHlPovv0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPHlPovv0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPHlPovv0r .dropdown-item.active,
.cid-tPHlPovv0r .dropdown-item:active {
  background-color: transparent;
}
.cid-tPHlPovv0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPHlPovv0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPHlPovv0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPHlPovv0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tPHlPovv0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPHlPovv0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPHlPovv0r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPHlPovv0r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPHlPovv0r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPHlPovv0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPHlPovv0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPHlPovv0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPHlPovv0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPHlPovv0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPHlPovv0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPHlPovv0r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPHlPovv0r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPHlPovv0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPHlPovv0r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPHlPovv0r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPHlPovv0r .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-tPHlPovv0r .navbar {
    height: 70px;
  }
  .cid-tPHlPovv0r .navbar.opened {
    height: auto;
  }
  .cid-tPHlPovv0r .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-tPHlPuSoRp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tPHlPuSoRp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tPHlPuSoRp .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tPHlPuSoRp .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tPHlPuSoRp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tPHlPuSoRp .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tPHlPuSoRp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tPHlPuSoRp .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-tPHlPuSoRp .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tPHlPuSoRp .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tPHlPuSoRp .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tPHlPuSoRp .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tPHlPuSoRp .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tPHlPuSoRp .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tPHlPuSoRp .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQVsLW9MIR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tQVsLW9MIR .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tQVsLW9MIR .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tQVsLW9MIR .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tQVsLW9MIR .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tQVsLW9MIR .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tQVsLW9MIR .container {
    padding: 0 1rem;
  }
}
.cid-tQVsLW9MIR .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tQVsLW9MIR .nav-link {
  position: relative;
}
.cid-tQVsLW9MIR .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tQVsLW9MIR nav.navbar {
  position: fixed;
}
.cid-tQVsLW9MIR .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-tQVsLW9MIR .navbar.opened {
  transition: all 0.3s;
}
.cid-tQVsLW9MIR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tQVsLW9MIR .navbar .navbar-logo img {
  width: auto;
}
.cid-tQVsLW9MIR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQVsLW9MIR .navbar.collapsed {
  justify-content: center;
}
.cid-tQVsLW9MIR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQVsLW9MIR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tQVsLW9MIR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tQVsLW9MIR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQVsLW9MIR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQVsLW9MIR .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-tQVsLW9MIR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQVsLW9MIR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQVsLW9MIR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tQVsLW9MIR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQVsLW9MIR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQVsLW9MIR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQVsLW9MIR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQVsLW9MIR .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-tQVsLW9MIR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQVsLW9MIR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQVsLW9MIR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQVsLW9MIR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQVsLW9MIR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQVsLW9MIR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tQVsLW9MIR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQVsLW9MIR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQVsLW9MIR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tQVsLW9MIR .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-tQVsLW9MIR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tQVsLW9MIR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tQVsLW9MIR .dropdown-item:hover,
.cid-tQVsLW9MIR .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tQVsLW9MIR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tQVsLW9MIR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tQVsLW9MIR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tQVsLW9MIR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tQVsLW9MIR .dropdown-menu,
.cid-tQVsLW9MIR .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tQVsLW9MIR .nav-item:focus,
.cid-tQVsLW9MIR .nav-link:focus {
  outline: none;
}
.cid-tQVsLW9MIR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQVsLW9MIR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQVsLW9MIR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQVsLW9MIR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQVsLW9MIR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQVsLW9MIR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQVsLW9MIR .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-tQVsLW9MIR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQVsLW9MIR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQVsLW9MIR .dropdown-item.active,
.cid-tQVsLW9MIR .dropdown-item:active {
  background-color: transparent;
}
.cid-tQVsLW9MIR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQVsLW9MIR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQVsLW9MIR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQVsLW9MIR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tQVsLW9MIR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQVsLW9MIR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQVsLW9MIR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQVsLW9MIR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tQVsLW9MIR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tQVsLW9MIR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tQVsLW9MIR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQVsLW9MIR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQVsLW9MIR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQVsLW9MIR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQVsLW9MIR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQVsLW9MIR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQVsLW9MIR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQVsLW9MIR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQVsLW9MIR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tQVsLW9MIR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tQVsLW9MIR .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-tQVsLW9MIR .navbar {
    height: 70px;
  }
  .cid-tQVsLW9MIR .navbar.opened {
    height: auto;
  }
  .cid-tQVsLW9MIR .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-tQVsM2bEsB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tQVsM2bEsB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tQVsM2bEsB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tQVsM2bEsB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tQVsM2bEsB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tQVsM2bEsB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tQVsM2bEsB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tQVsM2bEsB .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-tQVsM2bEsB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tQVsM2bEsB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tQVsM2bEsB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tQVsM2bEsB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tQVsM2bEsB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tQVsM2bEsB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tQVsM2bEsB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tSxT0zO5qy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tSxT0zO5qy .menu-text {
  padding: 0 2rem;
  color: #353535;
}
@media (max-width: 992px) {
  .cid-tSxT0zO5qy .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tSxT0zO5qy .iconfont-wrapper {
  color: #ff6900 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tSxT0zO5qy .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tSxT0zO5qy .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tSxT0zO5qy .container {
    padding: 0 1rem;
  }
}
.cid-tSxT0zO5qy .menu-tite {
  background: #f98c25;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tSxT0zO5qy .nav-link {
  position: relative;
}
.cid-tSxT0zO5qy .nav-link:hover {
  color: #a61a3d !important;
}
.cid-tSxT0zO5qy nav.navbar {
  position: fixed;
}
.cid-tSxT0zO5qy .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-tSxT0zO5qy .navbar.opened {
  transition: all 0.3s;
}
.cid-tSxT0zO5qy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSxT0zO5qy .navbar .navbar-logo img {
  width: auto;
}
.cid-tSxT0zO5qy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSxT0zO5qy .navbar.collapsed {
  justify-content: center;
}
.cid-tSxT0zO5qy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSxT0zO5qy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSxT0zO5qy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tSxT0zO5qy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSxT0zO5qy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSxT0zO5qy .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-tSxT0zO5qy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSxT0zO5qy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSxT0zO5qy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSxT0zO5qy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSxT0zO5qy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSxT0zO5qy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSxT0zO5qy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSxT0zO5qy .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-tSxT0zO5qy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSxT0zO5qy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSxT0zO5qy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSxT0zO5qy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSxT0zO5qy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSxT0zO5qy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tSxT0zO5qy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSxT0zO5qy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSxT0zO5qy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSxT0zO5qy .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-tSxT0zO5qy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSxT0zO5qy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSxT0zO5qy .dropdown-item:hover,
.cid-tSxT0zO5qy .dropdown-item:focus {
  background: #f98c25 !important;
  color: white !important;
}
.cid-tSxT0zO5qy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSxT0zO5qy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSxT0zO5qy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tSxT0zO5qy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSxT0zO5qy .dropdown-menu,
.cid-tSxT0zO5qy .navbar.opened {
  background: #f4f8fa !important;
}
.cid-tSxT0zO5qy .nav-item:focus,
.cid-tSxT0zO5qy .nav-link:focus {
  outline: none;
}
.cid-tSxT0zO5qy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSxT0zO5qy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSxT0zO5qy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSxT0zO5qy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSxT0zO5qy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSxT0zO5qy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSxT0zO5qy .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-tSxT0zO5qy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSxT0zO5qy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSxT0zO5qy .dropdown-item.active,
.cid-tSxT0zO5qy .dropdown-item:active {
  background-color: transparent;
}
.cid-tSxT0zO5qy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSxT0zO5qy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSxT0zO5qy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSxT0zO5qy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tSxT0zO5qy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSxT0zO5qy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSxT0zO5qy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSxT0zO5qy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSxT0zO5qy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSxT0zO5qy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSxT0zO5qy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSxT0zO5qy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSxT0zO5qy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSxT0zO5qy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSxT0zO5qy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSxT0zO5qy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSxT0zO5qy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSxT0zO5qy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSxT0zO5qy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSxT0zO5qy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSxT0zO5qy .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-tSxT0zO5qy .navbar {
    height: 70px;
  }
  .cid-tSxT0zO5qy .navbar.opened {
    height: auto;
  }
  .cid-tSxT0zO5qy .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-tSxT0FCdvZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fa7a00;
}
.cid-tSxT0FCdvZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSxT0FCdvZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tSxT0FCdvZ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tSxT0FCdvZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tSxT0FCdvZ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tSxT0FCdvZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tSxT0FCdvZ .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-tSxT0FCdvZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tSxT0FCdvZ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tSxT0FCdvZ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tSxT0FCdvZ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tSxT0FCdvZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tSxT0FCdvZ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tSxT0FCdvZ .media-container-row .row-copirayt p {
  width: 100%;
}
