/*flexbox*/
/*Flexbox SASS mixins*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex__wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex__col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex__reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex__grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
}

.flex__shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex__1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex__aln-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex__aln-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex__aln-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex__jfy-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex__jfy-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex__jfy-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex__jfy-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex__jfy-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/***** Responsive breakpoints*****/
@font-face {
  font-family: "Mardoto";
  src: url("./../fonts/Mardoto-Regular.65f00b36a611.ttf");
}

body {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: normal;
  overflow-x: hidden;
}

body[data-lang='hy'] {
  font-family: 'Mardoto';
}

body[data-lang='en'] {
  font-family: 'Roboto', sans-serif;
}

body[data-lang='ru'] {
  font-family: 'Roboto', sans-serif;
}

body[data-lang='ru'] .category-block p {
  font-size: 18px;
}

.wrap-main-content {
  width: 100%;
  min-height: calc(100vh - 208px);
  position: relative;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 64em) {
  .container {
    max-width: 100%;
    padding: 0px 32px;
  }
}

@media (max-width: 39.9375em) {
  .container {
    padding: 0 16px;
    max-width: 100%;
  }
}

.btn,
button {
  height: 40px;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  background: transparent;
  outline: 0;
  border: 0;
  margin-right: 20px;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

@media (max-width: 39.9375em) {
  .btn,
  button {
    height: 36px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.btn:last-child,
button:last-child {
  margin-right: 0;
}

.btn:hover,
button:hover {
  opacity: .8;
}

.btn.main-btn,
button.main-btn {
  background-color: #ED6F3D;
}

.close-news-feed {
  display: none;
  position: absolute;
  right: 24px;
  top: 8px;
  width: 32px;
  height: 32px;
}

@media (max-width: 64em) {
  .close-news-feed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.close-news-feed i {
  color: #ffffff;
  font-size: 24px;
}

.hide {
  display: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.facebook-block {
  margin-top: 16px;
  margin-bottom: 16px;
}

#preview {
  margin-bottom: 40px;
}

.header {
  padding: 8px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 64em) {
  .header {
    padding: 8px 32px;
  }
}

@media (max-width: 39.9375em) {
  .header {
    padding: 8px 16px;
  }
}

.header .header-box {
  font-size: 12px;
}

@media (max-width: 64em) {
  .header .header-box__item:first-child {
    display: none;
  }
}

.header .header-box__logo img {
  height: 64px;
}

@media (max-width: 64em) {
  .header .header-box__logo img {
    height: 54px;
  }
}

@media (max-width: 39.9375em) {
  .header .header-box__logo img {
    height: 36px;
  }
}

.header .header-box__date {
  margin-right: 20px;
}

.header .header-box__rate p:not(:last-child) {
  margin-right: 20px;
}

.header .header-box__rate span {
  color: #8D8D8D;
  margin-right: 8px;
}

@media (max-width: 64em) {
  .header .header-box__weather {
    display: none;
  }
}

.header .header-box__weather p {
  margin-right: 20px;
}

.header .header-box__weather p i {
  font-size: 14px;
  color: #8D8D8D;
  margin-right: 10px;
}

.header .header-box__weather p span {
  color: #8D8D8D;
  margin-right: 8px;
}

.header .header-box__lang-bar {
  margin-right: 20px;
}

.header .header-box__lang-bar span {
  color: #8D8D8D;
  margin-right: 8px;
  text-transform: uppercase;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  cursor: pointer;
}

.header .header-box__lang-bar span.active, .header .header-box__lang-bar span:hover {
  color: #000000;
}

.header .header-box__btns .telegram-btn {
  background-color: #039BE5;
}

.header .header-box__btns .telegram-btn i,
.header .header-box__btns .telegram-btn svg {
  font-size: 14px;
  margin-right: 8px;
}

.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #28211B;
  color: #ffffff;
  height: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}

.nav__mobile-menu {
  width: 32px;
  display: none;
  cursor: pointer;
}

.nav__mobile-menu i {
  font-size: 16px;
}

@media (max-width: 64em) {
  .nav__mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav .active, .nav__list-item:hover {
  background-color: #ED6F3D;
}

.nav .active::before, .nav__list-item:hover::before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  background-color: #ED6F3D;
}

.nav .container {
  height: 100%;
}

.nav .feed-mobile-btn {
  display: none;
  margin-right: 12px;
}

@media (max-width: 64em) {
  .nav .feed-mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav .feed-mobile-btn i {
  font-size: 16px;
  color: #ffffff;
  margin-right: 8px;
}

.nav__wrap-menu {
  width: 100%;
}

.nav__logo {
  display: none;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav__logo__img {
  width: 76px;
  height: 36px;
  background-size: cover;
  background-position: center;
  background-image: url("/static/radar/images/RA_LOGOTYPE_HORIZONTAL_01.9bfbf951b805.png");
  margin-right: 12px;
}

@media (max-width: 39.9375em) {
  .nav__logo__img {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    background-image: url("/static/radar/images/RA_LOGO_ORANGE.b6018cfef9ed.png");
    margin-right: 4px;
  }
}

.nav__lists {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.nav__lists.mobile-menu {
  display: none;
}

.nav__lists.mobile-menu .dropdown-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav__lists.mobile-menu .mobile {
  width: 100%;
  min-width: 100%;
  position: relative;
  top: 0;
}

@media (max-width: 64em) {
  .nav__lists.desktop-menu {
    display: none;
  }
  .nav__lists.has-fade {
    width: 100%;
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #28211B;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav__list-item {
  cursor: pointer;
  background-color: #28211B;
  padding: 0 8px;
  height: 100%;
  margin-right: 1px;
  position: relative;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}

@media (max-width: 64em) {
  .nav__list-item {
    width: 100%;
    padding: 0;
  }
  .nav__list-item a {
    width: 100%;
    padding: 15px 24px;
  }
  .nav__list-item .open-dropdown i,
  .nav__list-item .open-dropdown svg {
    right: 24px;
    top: 16px;
  }
}

.nav__list-item.dropdown-item a {
  padding-right: 24px;
}

.nav__list-item a {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 39.9375em) {
  .nav__list-item a {
    width: 100%;
    text-align: left;
  }
}

.nav__list-item i,
.nav__list-item svg {
  position: absolute;
  top: 20px;
  right: 6px;
  pointer-events: none;
}

.nav__sub-list-item {
  position: absolute;
  width: auto;
  min-width: 164px;
  left: 0;
  top: 50px;
  background-color: #28211B;
  display: none;
}

.nav__sub-list-item li {
  height: 44px;
  padding-left: 24px;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__sub-list-item li:hover {
  background-color: #ED6F3D;
}

.nav__search {
  width: 124px;
  position: relative;
  padding-right: 16px;
}

@media (max-width: 64em) {
  .nav__search {
    width: 100%;
  }
  .nav__search form {
    width: 100%;
    padding: 0 16px;
  }
}

.nav__search input {
  width: 100%;
  outline: 0;
  border: 0;
  height: 40px;
  padding-left: 24px;
  margin-left: 8px;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
}

.nav__search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 8px;
  top: 14px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav__search-icon i {
  font-size: 14px;
}

.footer {
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer .nav__sub-list-item {
  top: 32px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.3);
}

@media (max-width: 64em) {
  .footer .nav__sub-list-item {
    width: 100%;
  }
}

.footer .dropdown-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto !important;
  padding: 9px 8px;
}

@media (max-width: 64em) {
  .footer .dropdown-item a {
    padding: 0 16px;
  }
}

.footer .dropdown-item a h2 {
  position: relative;
}

.footer .dropdown-item i,
.footer .dropdown-item svg {
  top: 0px;
  right: 0;
  margin-left: 8px;
  position: relative;
}

.footer__sub-list-item {
  padding-left: 24px;
  position: relative;
  top: 12px;
  width: 100%;
  display: none;
}

@media (max-width: 64em) {
  .footer__sub-list-item {
    padding-left: 24px;
  }
}

.footer__border {
  border-top: 1px solid #E1E1E1;
  width: 100%;
  padding: 30px 0;
}

.footer__inner {
  font-size: 14px;
  color: #000000;
}

@media (max-width: 39.9375em) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.footer__left-side {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 64em) {
  .footer__left-side {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 64em) {
  .footer__left-side .news__wrap {
    margin-bottom: 24px;
  }
}

.footer__left-side .news__wrap li a:hover {
  font-weight: 600;
}

.footer__left-side .title {
  font-size: 20px;
  color: #ED6F3D;
  margin-bottom: 24px;
  font-weight: bold;
}

.footer__left-side ul li {
  cursor: pointer;
  background-color: transparent;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__left-side ul li:hover {
  background: none;
}

.footer__left-side ul li a {
  font-size: 14px;
  color: #000000;
  width: 100%;
  text-align: left;
  font-weight: normal;
}

.footer__left-side ul li a i,
.footer__left-side ul li a svg {
  top: 10px;
  right: 12px;
}

.footer__right-side i {
  color: #ED6F3D;
  font-size: 20px;
  margin-right: 14px;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  opacity: 1;
  cursor: pointer;
}

.footer__right-side i:hover {
  opacity: .7;
}

@media (max-width: 39.9375em) {
  .footer__right-side {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-top: 24px;
  }
}

.footer__outer {
  margin-top: 30px;
  border-top: 1px solid #E1E1E1;
  width: 100%;
  padding: 30px 0;
}

.footer__outer i,
.footer__outer svg {
  font-size: 30px;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  opacity: 1;
}

.footer__outer i:hover,
.footer__outer svg:hover {
  opacity: .7;
}

@media (max-width: 39.9375em) {
  .footer__outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 39.9375em) {
  .footer__socials {
    margin: 16px 0;
    text-align: center;
  }
}

.footer__socials a:not(:first-child) {
  margin-left: 20px;
}

.footer__telegram-ico i {
  color: #039BE5;
}

.footer__youtube-ico i {
  color: #FF0000;
}

.footer__twitter-ico i {
  color: #1DA1F2;
}

.footer__instagram-ico i {
  background: linear-gradient(45deg, #FFD600 8.39%, #FF0100 50%, #D800B9 91.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__facebook-ico i {
  color: #1877F2;
}

@media (max-width: 39.9375em) {
  .footer__copyright p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
}

.footer__location {
  cursor: pointer;
  margin-bottom: 20px;
}

@media (max-width: 39.9375em) {
  .footer__location {
    margin-bottom: 16px;
  }
}

.footer__location p:hover i {
  opacity: .7;
}

.footer__contact {
  cursor: pointer;
  margin-bottom: 20px;
}

@media (max-width: 39.9375em) {
  .footer__contact {
    margin-bottom: 16px;
  }
}

.footer__contact p {
  color: #000000;
}

.footer__contact p a {
  color: #000000;
}

.footer__contact p:hover i {
  opacity: .7;
}

.footer__email p {
  cursor: pointer;
}

.footer__email p:hover i {
  opacity: .7;
}

.news__wrap {
  width: 100%;
}

.news__wrap .f-item {
  margin-right: 44px;
  width: 25%;
}

.news__wrap .f-item:last-child {
  margin-right: 0;
}

@media (max-width: 64em) {
  .news__wrap .f-item {
    margin-right: 24px;
    width: 50%;
  }
  .news__wrap .f-item:last-child {
    margin-right: 24px;
  }
}

@media (max-width: 39.9375em) {
  .news__wrap .f-item {
    width: 100%;
    margin-right: 0px;
  }
  .news__wrap .f-item:last-child {
    margin-right: 0px;
  }
}

@media (max-width: 39.9375em) {
  .footer-cat-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-section__left-side {
  width: calc(800px - 90px);
  margin-right: 90px;
}

@media (max-width: 64em) {
  .news-section__left-side {
    width: 100%;
    margin-right: 0;
  }
}

.news-section__right-side {
  width: 370px;
}

.news-section__right-side .analytic-article {
  margin-bottom: 16px;
}

@media (max-width: 64em) {
  .news-section__right-side {
    width: 100%;
  }
}

.news-box {
  margin: 32px auto;
  position: relative;
}

@media (max-width: 64em) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-section__wrapper {
  margin-bottom: 16px;
}

@media (max-width: 64em) {
  .news-section__newsblog {
    display: none;
  }
}

.news-section__newsblog.animate {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  padding: 16px;
  left: 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

@media (max-width: 64em) {
  .news-section__newsblog.animate {
    background: #28211B;
    color: #ffffff;
  }
}

.news-section__custom-scroll {
  max-height: 902px;
  overflow-x: auto;
  cursor: pointer;
  margin-bottom: 16px;
  position: relative;
  padding-right: 16px;
  padding-bottom: 16px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

@media (max-width: 64em) {
  .news-section__custom-scroll {
    margin-right: 16px;
  }
}

@media (max-width: 64em) {
  .news-section__custom-scroll {
    margin-right: 8px;
    height: calc(100% - 64px);
    max-height: 100%;
  }
}

.news-section__custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.news-section__custom-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #E1E1E1;
          box-shadow: inset 0 0 4px #E1E1E1;
  border-radius: 10px;
}

.news-section__custom-scroll::-webkit-scrollbar-thumb {
  background-color: #ED6F3D;
  border-radius: 10px;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}

.news-section__custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #ef5f25;
}

.news-section__author-name {
  color: #8D8D8D;
  font-size: 12px;
}

.news-section__author-name h6 {
  margin-right: 8px;
}

.news-section__author-name a {
  color: #8D8D8D;
}

.news-section__author-block {
  margin-bottom: 16px;
}

.news-section__author-info {
  line-height: 1.4;
}

.news-section__author-info h1 {
  font-weight: bold;
  font-size: 16px;
}

.news-section__author-info p {
  color: #8D8D8D;
  font-size: 14px;
}

.news-section__author-img {
  width: 80px;
  height: 100px;
  background-size: contain;
  background-position: center;
  margin-right: 16px;
}

.news-section__acrticle-box {
  margin-bottom: 8px;
  height: 100px;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  overflow: hidden;
}

@media (max-width: 64em) {
  .news-section__acrticle-box {
    height: 160px;
  }
}

@media (max-width: 39.9375em) {
  .news-section__acrticle-box {
    height: 100px;
  }
}

.news-section__acrticle-box:hover ::after {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  background: #ED6F3D;
  width: 6px;
  height: 100%;
}

.news-section__acrticle-box:hover span {
  color: #ED6F3D;
}

.news-section__acrticle {
  width: 100px;
  height: auto;
}

@media (max-width: 64em) {
  .news-section__acrticle {
    width: 160px;
  }
}

@media (max-width: 39.9375em) {
  .news-section__acrticle {
    width: 100px;
  }
}

.news-section__acrticle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-repeat: no-repeat;
}

.news-section__acticle-content {
  width: calc(100% - 15px);
  padding: 0 15px;
}

.news-section__acticle-content span {
  font-size: 14px;
  font-weight: bold;
  color: #363636;
  margin-bottom: 8px;
  display: block;
}

.news-section__acticle-content p {
  font-size: 14px;
  line-height: 1.4;
  color: #363636;
}

.news-section__covid-date {
  font-size: 16px;
  color: #8D8D8D;
  text-align: right;
}

.news-section__covid-upd-box {
  margin-bottom: 16px;
}

.news-section__covid-upd-box .upd-row {
  height: 32px;
  border-bottom: 1px solid #E1E1E1;
}

.news-section__covid-upd-box .upd-row .covid-title {
  color: #363636;
  font-size: 14px;
  font-weight: bold;
}

.news-section__covid-upd-box .upd-row .covid-number {
  color: #ED6F3D;
  font-size: 14px;
  font-weight: bold;
}

.news-section__featured-slider {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
}

@media (max-width: 39.9375em) {
  .news-section__featured-slider {
    height: 320px;
    margin-bottom: 24px;
  }
}

.news-section__banner {
  margin-bottom: 24px;
}

.news-section__banner-item {
  width: 100%;
  height: 202px;
  position: relative;
  margin-bottom: 16px;
  margin-right: 16px;
  overflow: hidden;
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-section__banner-item:last-child {
  margin-right: 0;
}

.news-section__banner-item::before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.news-section__banner-item:hover::after {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  background: #ED6F3D;
  width: 20px;
  height: 100%;
}

.news-section__banner-item:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

.news-section__banner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-section__banner-item h3 {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

@media (max-width: 39.9375em) {
  .news-section__banner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-section__slider-item {
  width: 100%;
  position: relative;
}

.news-section__slider-iframe iframe {
  width: 100%;
  height: 100%;
}

.news-section__slider-img {
  width: 100%;
  height: 400px;
}

@media (max-width: 39.9375em) {
  .news-section__slider-img {
    height: 320px;
  }
}

.news-section__slider-img img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}

.news-section__slider-info {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news-section__slider-info-item {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  height: 90px;
  padding: 12px 32px;
}

@media (max-width: 39.9375em) {
  .news-section__slider-info-item {
    padding: 12px;
    height: 94px;
  }
}

.news-section__slider-info-item a {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 39.9375em) {
  .news-section__slider-info-item a {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}

.news-section__category-title {
  color: #ED6F3D;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 16px;
}

.news-section__category-item {
  display: inline-block;
  margin: 4px 0;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  overflow: hidden;
}

@media (max-width: 39.9375em) {
  .news-section__category-item {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .news-section__category-item:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.news-section__category-item a {
  height: 202px;
}

@media (max-width: 39.9375em) {
  .news-section__category-item a {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-section__category-item:hover ::after {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  background: #ED6F3D;
  width: 20px;
  height: 100%;
}

@media (max-width: 39.9375em) {
  .news-section__category-item:hover ::after {
    display: none;
  }
}

.news-section__category-item:hover h5 {
  color: #ED6F3D;
}

.news-section__category-item-img img {
  width: 270px;
  height: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 39.9375em) {
  .news-section__category-item-img img {
    width: 100%;
    height: 220px;
    margin-bottom: 16px;
  }
}

.news-section__category-item-box {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.6;
}

@media (max-width: 39.9375em) {
  .news-section__category-item-box {
    padding-left: 0;
  }
}

.news-section__category-item-box h5 {
  font-size: 17px;
  font-weight: bold;
  color: #000000;
}

.news-section__category-item-box span {
  color: #8D8D8D;
  font-size: 14px;
  margin: 8px 0;
}

.news-section__category-item-box p {
  color: #363636;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.news-section__filter-item {
  display: inline-block;
  margin: 4px 0;
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.news-section__filter-item a {
  height: 82px;
}

.news-section__filter-item a .wrap-context {
  height: 60px;
  overflow: hidden;
  margin-bottom: 4px;
}

.news-section__filter-item a .wrap-context p {
  color: #000000;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 64em) {
  .news-section__filter-item a .wrap-context p {
    color: #ffffff;
  }
}

.news-section__filter-item:hover ::after {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  background: #ED6F3D;
  width: 10px;
  height: 100%;
}

.news-section__filter-item:hover p {
  color: #ED6F3D;
}

.news-section__filter-item-img img {
  width: 110px;
  height: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-section__filter-item-box {
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

.news-section__filter-item-box p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
  font-weight: normal;
}

.news-section__filter-item-box span {
  color: #8D8D8D;
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 64em) {
  .news-section__filter-item-box span {
    color: #ffffff;
  }
}

.category-block {
  line-height: 1.6;
}

.category-block ol {
  list-style: decimal;
  font-size: 16px;
  margin-left: 32px;
}

.category-block ul {
  list-style: disc;
  font-size: 16px;
  margin-left: 32px;
}

.category-block ol li,
.category-block ul li {
  margin-bottom: 16px;
}

.category-block a {
  color: #ED6F3D;
}

.category-block p {
  font-weight: normal;
  line-height: 1.6 !important;
  margin-bottom: 16px;
}

.category-block iframe {
  width: 100%;
  height: 402px;
}

.category-block__sub-title {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.category-block__item {
  margin-bottom: 15px;
}

.category-block__item-img {
  width: 100%;
  height: 400px;
  padding-bottom: 15px;
}

@media (max-width: 39.9375em) {
  .category-block__item-img {
    height: 240px;
  }
}

.category-block__item-img img {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.category-block__item-box {
  width: 100%;
  line-height: 1.4;
  margin-bottom: 10px;
}

.category-block__item-box span {
  color: #8D8D8D;
  font-size: 14px;
  margin-bottom: 8px;
}

.category-block__title-txt a {
  color: #ED6F3D;
  font-size: 16px;
  font-weight: bold;
}

.category-block__iframe {
  margin-bottom: 15px;
}

.category-block__iframe iframe {
  width: 100%;
  height: 532px;
}

@media (max-width: 39.9375em) {
  .category-block__iframe iframe {
    height: 240px;
  }
}

.category-block__image {
  margin-bottom: 15px;
}

.category-block__image img {
  width: 100%;
  height: 100%;
}

.category-block__img-gallery {
  display: inline-block;
  width: 100%;
}

.category-block__img-gallery a {
  width: 220px;
  height: 172px;
  margin: 8px;
  display: block;
  float: left;
}

@media (max-width: 64em) {
  .category-block__img-gallery a {
    width: calc(50% - 16px);
    height: 224px;
    margin-right: 8px;
    margin-left: 8px;
  }
  .category-block__img-gallery a:first-child {
    margin-left: 8px;
  }
  .category-block__img-gallery a:nth-child(2n + 2) {
    margin-left: 8px;
  }
}

@media (max-width: 39.9375em) {
  .category-block__img-gallery a {
    width: calc(100% - 0px);
    height: 224px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .category-block__img-gallery a:first-child {
    margin-left: 0px;
  }
  .category-block__img-gallery a:nth-child(n + 1) {
    margin-left: 0px;
  }
}

.category-block__img-gallery a img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.category-block__views {
  color: #ED6F3D;
  cursor: pointer;
}

.category-block__views i {
  margin-right: 8px;
  font-size: 16px;
}

.search-result-block {
  margin-bottom: 15px;
}

.search-result-block form {
  margin-bottom: 15px;
}

@media (max-width: 39.9375em) {
  .search-result-block__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.search-result-block__btn {
  background: #ED6F3D;
  height: 40px;
  -webkit-appearance: button;
}

.search-result-block__filter {
  position: relative;
  height: 40px;
  margin-right: 10px;
  width: 100%;
}

@media (max-width: 39.9375em) {
  .search-result-block__filter {
    margin-bottom: 16px;
  }
}

.search-result-block__filter .fa-search {
  position: absolute;
  cursor: pointer;
  left: 10px;
  color: #8E93AE;
  font-size: 14px;
}

.search-result-block__filter input,
.search-result-block__filter select {
  height: 40px;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  border: none;
}

.search-result-block__filter input {
  width: 100%;
  border-top: 1px solid #8E93AE;
  border-left: 1px solid #8E93AE;
  border-bottom: 1px solid #8E93AE;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 0 16px 0 32px;
  -webkit-appearance: none;
}

.search-result-block__filter select {
  background: #ED6F3D;
  color: #ffffff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0 24px 0 16px;
  cursor: pointer;
  -webkit-appearance: none;
}

.search-result-block__datapicker {
  position: relative;
  cursor: pointer;
}

.search-result-block__datapicker i {
  position: absolute;
  left: 8px;
  top: 12px;
  color: #8E93AE;
  pointer-events: none;
}

.search-result-block__datapicker input {
  width: 144px;
  height: 40px;
  margin-right: 10px;
  outline: 0;
  border: 1px solid #8E93AE;
  border-radius: 5px;
  padding: 0 16px 0 32px;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

@media (max-width: 39.9375em) {
  .search-result-block__datapicker input {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.search-result-block__select-category {
  width: 100%;
  height: 40px;
  cursor: pointer;
}

.search-result-block__select-category ul {
  width: 100%;
  height: 40px;
  position: relative;
  background: #ED6F3D;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.search-result-block__select-category ul i {
  position: absolute;
  top: 14px;
  right: 8px;
  color: #ffffff;
  font-size: 12px;
  pointer-events: none;
}

.search-result-block__select-category ul li {
  color: #ffffff;
  font-size: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 8px;
}

.search-result-block__select-category ul li:not(.init) {
  display: none;
  float: left;
  width: 100%;
  height: 32px;
  padding-top: 12px;
  border-bottom: 1px solid #c5c5c5;
  background: #ffffff;
  color: #000000;
  position: relative;
  z-index: 99;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.search-result-block__select-category ul li.selected:not(.init) {
  background: #28211B;
  color: #ffffff;
}

#ui-datepicker-div .ui-datepicker-header {
  background: #ED6F3D;
  color: #ffffff;
  font-weight: normal;
  font-size: 14px;
}

#ui-datepicker-div .ui-widget-header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  outline: 0;
  border: 0;
  cursor: pointer;
}

#ui-datepicker-div .ui-widget-header a span {
  background-image: none;
}

#ui-datepicker-div .ui-widget-header a:hover, #ui-datepicker-div .ui-widget-header a:focus {
  opacity: .9;
}

#ui-datepicker-div .ui-widget-header a[data-handler="prev"]::before {
  content: '\f104';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-prev {
  left: 4px !important;
  top: 4px !important;
}

#ui-datepicker-div .ui-widget-header a[data-handler="next"]::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-next {
  right: 4px !important;
  top: 4px !important;
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-month {
  margin-right: 24px;
}

#ui-datepicker-div .ui-widget-header .ui-datepicker-year {
  border: 0;
  outline: 0;
  border-radius: 2px;
  width: 74px !important;
  padding: 4px;
  cursor: pointer;
}

#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-widget-content .ui-state-default {
  border: 1px solid #8E93AE;
  color: #363636;
  background-color: #F8F8F8;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
  border-radius: 2px;
}

#ui-datepicker-div .ui-state-default:hover,
#ui-datepicker-div .ui-widget-content .ui-state-default:hover {
  background-color: #ED6F3D;
  color: #ffffff;
  border: 1px solid #ED6F3D;
}

#ui-datepicker-div .ui-state-highlight,
#ui-datepicker-div .ui-widget-content .ui-state-highlight {
  background: #ED6F3D;
  color: #ffffff;
  border: 1px solid #ED6F3D;
}

.owl-carousel .owl-prev {
  position: absolute;
  top: 45%;
  width: 32px;
  height: 32px;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  left: 8px;
}

.owl-carousel .owl-prev i {
  color: #ffffff;
  font-size: 16px;
}

.owl-carousel .owl-prev:hover {
  opacity: .9;
}

.owl-carousel .owl-next {
  position: absolute;
  top: 45%;
  width: 32px;
  height: 32px;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  right: 8px;
}

.owl-carousel .owl-next i {
  color: #ffffff;
  font-size: 16px;
}

.owl-carousel:hover {
  opacity: .9;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px auto;
}

.pagination li {
  margin: 0 4px;
  color: #363636;
}

.pagination li.active {
  color: #ED6F3D;
  font-weight: bold;
}

.pagination li a {
  color: #363636;
}

.audio-player {
  width: 100% !important;
  margin: 16px auto !important;
  background-color: #F8F8F8;
}

.audio-player .ui-widget.ui-widget-content {
  border: none !important;
  height: 5px;
  background: #e5e5e5 !important;
  border-radius: 2px;
}

.audio-player .ui-slider-horizontal .ui-slider-handle {
  background-color: #ED6F3D;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
}

.audio-player .audio-player-btns {
  padding: 0 24px;
}

.audio-player .audio-timer {
  color: #999;
}

.audio-player .btn,
.audio-player button {
  color: #999;
  font-size: 16px;
  padding: 0;
}

.audio-player .btn:hover,
.audio-player button:hover {
  color: #333;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

.has-fade {
  visibility: hidden;
}
/*# sourceMappingURL=main.css.map */