/*flexbox*/
/*Flexbox SASS mixins*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&family=Noto+Serif+Armenian:wght@100..900&display=swap");
.flex {
  display: flex;
}
.flex__wrap {
  flex-wrap: wrap;
}
.flex__col {
  flex-direction: column;
}
.flex__row {
  flex-direction: row;
}
.flex__reverse {
  flex-direction: row-reverse;
}
.flex__grow {
  flex-grow: 1;
  min-width: 1px;
}
.flex__shrink {
  flex-shrink: 0;
}
.flex__1 {
  flex: 1;
}
.flex__aln-start {
  align-items: flex-start;
}
.flex__aln-center {
  align-items: center;
}
.flex__aln-end {
  align-items: flex-end;
}
.flex__jfy-start {
  justify-content: flex-start;
}
.flex__jfy-center {
  justify-content: center;
}
.flex__jfy-end {
  justify-content: flex-end;
}
.flex__jfy-between {
  justify-content: space-between;
}
.flex__jfy-around {
  justify-content: space-around;
}

/***** Responsive breakpoints*****/
@font-face {
  font-family: "FedraSansArm";
  src: url("./../fonts/FedraSansArm/FEDRASANSARM-LIGHT.924b5fdb95df.OTF");
}
@font-face {
  font-family: "FedraSansArmBold";
  src: url("./../fonts/FedraSansArm/FEDRASANSARM-BOLD.67b4fe8cd1ca.OTF");
}
@font-face {
  font-family: "FedraSansArmBook";
  src: url("./../fonts/FedraSansArm/FEDRASANSARM-BOOK.cc0dce730eaa.OTF");
}
@font-face {
  font-family: "FedraSansArmLight";
  src: url("./../fonts/FedraSansArm/FEDRASANSARM-LIGHT.924b5fdb95df.OTF");
}
@font-face {
  font-family: "GheaArkmenik";
  src: url("./../fonts/GheaArkmenik/GHEAARKMENIK-BOLD.288c213905b0.OTF");
}
@font-face {
  font-family: "GheaArkmenikDemiBold";
  src: url("./../fonts/GheaArkmenik/GHEAARKMENIK-DEMIBOLD.6adf5c4fb4f4.OTF");
}
@font-face {
  font-family: "GheaArkmenikMedium";
  src: url("./../fonts/GheaArkmenik/GHEAARKMENIK-MEDIUM.4b08e0461e83.OTF");
}
@font-face {
  font-family: "GheaArkmenikReg";
  src: url("./../fonts/GheaArkmenik/GHEA_ARKMENIK_REG.e46fad5db2fe.OTF");
}
@font-face {
  font-family: "Amaranth";
  src: url("./../fonts/Amaranth/Amaranth-Regular.5f274104168d.ttf");
}
@font-face {
  font-family: "Georgia";
  src: url("./../fonts/Georgia/Georgia.a9f9eef0c14b.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: "FedraSansArm";
}

body[data-lang=en] {
  font-family: "FedraSansArm";
}

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

.row__100 {
  width: 100%;
}

.wrap-main-content {
  width: 100%;
  min-height: calc(100vh - 208px);
  position: relative;
  padding-bottom: 32px;
}
.wrap-main-content.dark-mode {
  background-color: #1D1D1D;
  color: #ffffff;
}

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

.btn,
button {
  height: 40px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  outline: 0;
  border: 0;
  margin-right: 20px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transition: all 200ms ease-in-out;
  line-height: 40px;
}
@media (max-width: 39.9375em) {
  .btn,
  button {
    height: 36px;
    line-height: 36px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.btn:last-child,
button:last-child {
  margin-right: 0;
}
.btn:hover,
button:hover {
  opacity: 0.8;
}
.btn.main-btn,
button.main-btn {
  background-color: #ED6F3D;
}
.btn.btn-dark,
button.btn-dark {
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-family: "Amaranth";
  font-size: 18px;
}
.btn.btn-dark i,
.btn.btn-dark svg,
button.btn-dark i,
button.btn-dark svg {
  margin-right: 8px;
  color: #ED6F3D;
  font-size: 10px;
}
.btn.primery,
button.primery {
  border: 1px solid #ED6F3D;
  color: #ED6F3D;
  border-radius: 10px;
}
.btn.blue-btn,
button.blue-btn {
  background: #14A8E8;
  color: #ffffff;
}

.close-news-feed {
  display: none;
  position: absolute;
  right: 24px;
  top: 8px;
  width: 32px;
  height: 32px;
}
@media (max-width: 64em) {
  .close-news-feed {
    display: flex;
  }
}
.close-news-feed i {
  color: #000000;
  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;
}

.link-btn {
  color: #000000;
  border-bottom: 1px solid #000000;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding-bottom: 4px;
  max-width: 60px;
  font-family: "GheaArkmenik";
}
.link-btn:hover {
  color: #ED6F3D;
  border-color: #ED6F3D;
}

.show-more {
  color: #000000;
  font-size: 12px;
  line-height: 18px;
  font-family: "GheaArkmenikMedium";
}
.show-more svg,
.show-more i {
  margin-left: 4px;
}
.show-more:hover {
  color: #ED6F3D;
}

.span-class {
  color: #8E8E8E;
}

.header {
  padding: 16px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #c1c1c1;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 4;
  background: #ffffff;
  font-family: "Noto Serif Armenian", serif;
}
@media (max-width: 64em) {
  .header {
    padding: 8px 0px;
  }
}
.header .dark {
  display: none;
}
.header.dark-mode {
  background: #1D1D1D;
  color: #ffffff;
}
.header.dark-mode .light {
  display: none;
}
.header.dark-mode .dark {
  display: block;
}
.header.dark-mode .nav__list-item a,
.header.dark-mode .nav__lang-bar span {
  color: #ffffff;
}
.header.dark-mode .nav__list-item.dropdown-item ul {
  background: #1D1D1D;
  color: #ffffff;
}
.header.dark-mode .change-language {
  color: #ffffff;
}
.header.dark-mode .nav__lang-bar ul {
  background: #1D1D1D;
  color: #ffffff;
}
.header .header-box {
  font-size: 12px;
}
.header .header-box__item .menu-ico {
  cursor: pointer;
}
.header .header-box__item .menu-ico .close {
  display: none;
}
@media (max-width: 64em) {
  .header .header-box__item {
    flex: none;
  }
}
.header .header-box__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 64em) {
  .header .header-box__logo {
    margin-left: 24px;
    justify-content: flex-start;
  }
}
@media (max-width: 39.9375em) {
  .header .header-box__logo {
    margin-left: 12px;
    justify-content: center;
  }
}
.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: 34px;
  }
}
.header .header-box__btns .telegram-btn {
  color: #039BE5;
  border: 1px solid #c1c1c1;
  padding: 8px 12px;
  margin-right: 8px;
}
@media (max-width: 39.9375em) {
  .header .header-box__btns .telegram-btn {
    padding: 8px;
    margin-right: 4px;
  }
}
.header .header-box__btns .telegram-btn i,
.header .header-box__btns .telegram-btn svg {
  font-size: 24px;
  margin-right: 0;
}
@media (max-width: 39.9375em) {
  .header .header-box__btns .telegram-btn i,
  .header .header-box__btns .telegram-btn svg {
    font-size: 20px;
  }
}
.header .header-box__btns .btn-dark span {
  margin-right: 8px;
}
@media (max-width: 39.9375em) {
  .header .header-box__btns .btn-dark span {
    display: none;
  }
}

.nav {
  color: #28221A;
  background: #ffffff;
  flex-direction: row;
  transition: all 200ms ease-in-out;
  padding-top: 24px;
  display: none;
  width: 100%;
  position: fixed;
  top: 98px;
  z-index: 3;
  border-bottom: 1px solid #c1c1c1;
}
@media (max-width: 64em) {
  .nav {
    top: 70px;
  }
}
@media (max-width: 39.9375em) {
  .nav {
    top: 48px;
  }
}
.nav.dark-mode {
  background: #1D1D1D;
  color: #ffffff;
}
.nav.dark-mode .nav__menu-list .news-col h6,
.nav.dark-mode .nav__menu-list .news-col p,
.nav.dark-mode .nav__menu-ul ul li a,
.nav.dark-mode .nav__list-item a {
  color: #ffffff;
}
.nav.dark-mode .nav__list-item.dropdown-item ul {
  background: #1D1D1D;
  color: #ffffff;
}
.nav.dark-mode .link-btn,
.nav.dark-mode .nav__menu-ul ul li:hover a,
.nav.dark-mode .nav__menu-ul ul li.active a {
  color: #ffffff;
  border-color: #ffffff;
}
.nav.dark-mode .show-more {
  color: #ffffff;
}
.nav__mobile-menu {
  width: 32px;
  display: none;
  cursor: pointer;
}
.nav__mobile-menu i {
  font-size: 16px;
}
@media (max-width: 64em) {
  .nav__mobile-menu {
    display: flex;
  }
}
.nav .active:hover, .nav__list-item:hover {
  color: #ED6F3D;
}
.nav .active:hover::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: flex;
  }
}
.nav .feed-mobile-btn i {
  font-size: 16px;
  color: #ffffff;
  margin-right: 8px;
}
.nav__wrap-menu {
  width: 100%;
}
.nav__logo {
  display: none;
  transition: all 200ms ease-in-out;
  align-items: 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 {
  flex-direction: row;
  margin-left: 8px;
}
.nav__lists.mobile-menu {
  display: none;
  border: 1px solid #c1c1c1;
  margin: 0;
}
@media (max-width: 64em) {
  .nav__lists.mobile-menu {
    display: flex;
  }
}
@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: #28221A;
    flex-direction: column;
  }
}
.nav__list-item {
  cursor: pointer;
  padding: 0;
  height: 100%;
  margin-left: 24px;
  position: relative;
}
@media (max-width: 64em) {
  .nav__list-item {
    width: 100%;
    padding: 0;
    margin-left: 0px;
    font-size: 14px;
    flex: 1;
  }
  .nav__list-item a {
    width: 100%;
    padding: 16px 8px;
  }
  .nav__list-item .open-dropdown i,
  .nav__list-item .open-dropdown svg {
    right: 24px;
    top: 16px;
  }
}
.nav__list-item:first-child.dropdown-item ul {
  left: 0;
}
.nav__list-item.dropdown-item {
  position: relative;
}
.nav__list-item.dropdown-item a {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.nav__list-item.dropdown-item ul {
  position: absolute;
  min-width: 184px;
  width: 100%;
  padding: 16px;
  top: 36px;
  right: 0;
  border: 1px solid #c1c1c1;
  background: #ffffff;
  display: none;
  z-index: 4;
}
@media (max-width: 64em) {
  .nav__list-item.dropdown-item ul {
    top: 56px;
  }
}
.nav__list-item.dropdown-item ul a {
  line-height: 36px;
}
.nav__list-item.dropdown-item ul a:hover {
  font-weight: bold;
}
.nav__list-item a {
  color: #28221A;
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Serif Armenian", serif;
  line-height: 24px;
}
@media (max-width: 64em) {
  .nav__list-item a {
    width: 100%;
    text-align: center;
  }
  .nav__list-item a h2 {
    width: 100%;
    text-align: center;
  }
}
.nav__list-item i,
.nav__list-item svg {
  margin-left: 8px;
  pointer-events: none;
}
.nav__sub-list-item {
  position: absolute;
  width: auto;
  min-width: 164px;
  left: 0;
  top: 50px;
  background-color: #28221A;
  display: none;
}
.nav__sub-list-item li {
  height: 44px;
  padding-left: 24px;
  padding-right: 16px;
  display: flex;
  align-items: center;
}
.nav__sub-list-item li:hover {
  background-color: #ED6F3D;
}
.nav .search-bar {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid #c1c1c1;
}
@media (max-width: 64em) {
  .nav .search-bar__inner {
    flex-direction: column;
  }
  .nav .search-bar__inner .data-row {
    width: 100%;
    margin-bottom: 16px;
  }
}
.nav__search {
  position: relative;
}
@media (max-width: 64em) {
  .nav__search {
    width: 100%;
  }
}
.nav__search form {
  width: 100%;
  position: relative;
}
.nav__search input {
  width: 100%;
  outline: 0;
  border: 0;
  height: 40px;
  padding-right: 32px;
  padding-left: 16px;
  background-color: transparent;
  color: #000000;
  font-size: 14px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
}
.nav__search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__search-icon i {
  font-size: 20px;
  color: #ED6F3D;
}
@media (max-width: 64em) {
  .nav__weather {
    flex: 1;
  }
}
.nav__weather p {
  font-size: 18px;
  margin-right: 24px;
  font-family: "GheaArkmenikReg";
}
@media (max-width: 64em) {
  .nav__weather p {
    font-size: 16px;
  }
}
.nav__weather p img {
  margin-right: 8px;
}
.nav__weather p span {
  margin-right: 8px;
}
.nav__date {
  font-size: 18px;
  line-height: 26px;
  font-family: "GheaArkmenikReg";
}
@media (max-width: 64em) {
  .nav__date {
    font-size: 16px;
  }
}
@media (max-width: 39.9375em) {
  .nav__rate {
    align-items: center;
    justify-content: center;
  }
}
.nav__rate p {
  margin-right: 16px;
  font-size: 18px;
  line-height: 26px;
  font-family: "FedraSansArmBook";
}
.nav__rate span {
  color: #8E8E8E;
  margin-right: 8px;
}
@media (max-width: 39.9375em) {
  .nav__rate {
    width: 100%;
    margin-bottom: 8px;
  }
}
.nav__lang-bar {
  margin: 0 16px;
  position: relative;
}
@media (max-width: 39.9375em) {
  .nav__lang-bar {
    align-items: center;
    justify-content: center;
  }
}
.nav__lang-bar span {
  color: #8E8E8E;
  text-transform: capitalize;
  transition: color 200ms ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  line-height: 32px;
  font-size: 18px;
}
.nav__lang-bar span:first-child {
  margin-left: 0;
}
.nav__lang-bar span.active, .nav__lang-bar span:hover {
  color: #ED6F3D;
}
.nav__lang-bar span img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}
.nav__lang-bar span i,
.nav__lang-bar span svg {
  margin-left: 8px;
}
.nav__lang-bar ul {
  position: absolute;
  display: none;
  min-width: 74px;
  width: 100%;
  padding: 16px;
  top: 36px;
  left: 0;
  border: 1px solid #c1c1c1;
  background: #ffffff;
  z-index: 4;
}
.nav__bottom {
  border-top: 1px solid #c1c1c1;
  padding: 24px 0;
  width: 100%;
}
.nav__menu-items {
  padding: 24px 0;
}
.nav__menu-ul {
  font-family: "Noto Serif Armenian", serif;
  width: 40%;
}
@media (max-width: 64em) {
  .nav__menu-ul {
    width: 100%;
  }
}
.nav__menu-ul ul {
  flex: 1;
  border-right: 1px solid #c1c1c1;
  margin-right: 32px;
  padding-right: 32px;
}
@media (max-width: 64em) {
  .nav__menu-ul ul:last-child {
    margin-right: 0;
    padding-right: 0;
    border: 0;
  }
}
.nav__menu-ul ul li a {
  line-height: 56px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.nav__menu-ul ul li:hover a, .nav__menu-ul ul li.active a {
  font-weight: 600;
  border-bottom: 1px solid #000000;
}
.nav__menu-list {
  width: 60%;
}
@media (max-width: 64em) {
  .nav__menu-list {
    display: none;
  }
}
.nav__menu-list .news-col {
  border-right: 1px solid #c1c1c1;
  padding-right: 32px;
  margin-right: 32px;
}
.nav__menu-list .news-col img {
  width: 100%;
  height: 186px;
  object-fit: cover;
}
.nav__menu-list .news-col span {
  font-size: 12px;
  line-height: 24px;
  color: #8E8E8E;
}
.nav__menu-list .news-col h6 {
  font-family: "GheaArkmenikDemiBold";
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.nav__menu-list .news-col p {
  font-size: 16px;
  line-height: 24px;
  font-family: "FedraSansArmLight";
  color: #000000;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav .news-feed-col__item {
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.nav .news-feed-col__item:last-child {
  border-bottom: 0;
}
.nav .news-feed-col__item span {
  font-size: 12px;
  line-height: 24px;
  color: #8E8E8E;
}
.nav .news-feed-col__item h6 {
  font-family: "GheaArkmenikDemiBold";
  font-size: 18px;
  line-height: 26px;
}
.nav .news-feed-col__item p {
  font-size: 16px;
  line-height: 24px;
  font-family: "FedraSansArmLight";
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 39.9375em) {
  .nav__bottom-inner {
    flex-direction: column;
  }
}

.nav-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.footer {
  box-sizing: border-box;
  border-top: 1px solid #c1c1c1;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 64em) {
  .footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.footer .dark {
  display: none;
}
.footer.dark-mode {
  background-color: #1D1D1D;
}
.footer.dark-mode .dark {
  display: block;
}
.footer.dark-mode .light {
  display: none;
}
.footer.dark-mode .footer__left-side ul li a,
.footer.dark-mode .footer__contact p,
.footer.dark-mode .footer__contact p a,
.footer.dark-mode .footer__location p,
.footer.dark-mode .footer__location p a {
  color: #ffffff;
}
.footer .container {
  max-width: 1200px;
}
.footer .nav__sub-list-item {
  top: 32px;
  background: #fff;
  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 {
  flex-direction: column;
  height: auto !important;
  padding: 0px;
}
.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__logo {
  box-sizing: border-box;
  border-right: 1px solid #c1c1c1;
  padding-right: 16px;
  margin-right: 16px;
}
@media (max-width: 39.9375em) {
  .footer__logo {
    padding-right: 0px;
    margin-right: 0px;
    border: 0;
    margin-bottom: 16px;
  }
}
.footer__ico {
  margin-right: 8px;
}
.footer__ico:last-child {
  margin-right: 0;
}
@media (max-width: 39.9375em) {
  .footer__ico {
    margin-right: 0px;
  }
}
.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 #c1c1c1;
  width: 100%;
  padding: 30px 0;
}
.footer__inner {
  font-size: 14px;
  color: #000000;
}
@media (max-width: 64em) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__left-side {
  width: 40%;
}
@media (max-width: 64em) {
  .footer__left-side {
    width: 100%;
    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 .news__wrap li a h2 {
  text-align: left;
}
.footer__left-side .title {
  font-size: 20px;
  color: #ED6F3D;
  margin-bottom: 24px;
  font-weight: bold;
}
.footer__left-side ul {
  margin-right: 64px;
  padding-right: 64px;
  border-right: 1px solid #c1c1c1;
  flex: 1;
}
@media (max-width: 64em) {
  .footer__left-side ul {
    margin-right: 24px;
    padding-right: 24px;
  }
}
.footer__left-side ul:last-child {
  margin-right: 0;
  border-right: 0;
}
.footer__left-side ul li {
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 32px;
  margin-left: 0;
  width: 100%;
}
.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;
}
@media (max-width: 64em) {
  .footer__left-side ul li a {
    padding: 0;
  }
}
.footer__left-side ul li a i,
.footer__left-side ul li a svg {
  top: 10px;
  right: 12px;
}
.footer__right-side {
  justify-content: space-between;
  width: 60%;
}
@media (max-width: 64em) {
  .footer__right-side {
    width: 100%;
  }
  .footer__right-side .footer-r {
    width: 100%;
    margin-bottom: 16px;
    flex-direction: column;
    align-items: center;
  }
}
.footer__outer {
  margin-top: 30px;
  border-top: 1px solid #c1c1c1;
  width: 100%;
  padding: 30px 0;
}
.footer__outer i,
.footer__outer svg {
  font-size: 30px;
  transition: opacity 200ms ease-in-out;
  opacity: 1;
}
.footer__outer i:hover,
.footer__outer svg:hover {
  opacity: 0.7;
}
@media (max-width: 39.9375em) {
  .footer__outer {
    flex-direction: column;
  }
}
@media (max-width: 64em) {
  .footer__socials {
    flex: 1;
    justify-content: flex-end;
  }
}
@media (max-width: 39.9375em) {
  .footer__socials {
    justify-content: center;
  }
}
.footer__socials a:not(:first-child) {
  margin-left: 16px;
}
.footer__socials .dark {
  color: #ffffff;
}
.footer__socials i,
.footer__socials svg {
  font-size: 20px;
  color: #181818;
}
@media (max-width: 39.9375em) {
  .footer__copyright p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
}
.footer__location {
  cursor: pointer;
}
@media (max-width: 64em) {
  .footer__location {
    flex: 1;
  }
}
.footer__location p {
  line-height: 32px;
}
.footer__location p img {
  margin-right: 8px;
}
.footer__contact {
  cursor: pointer;
  margin-right: 32px;
}
@media (max-width: 64em) {
  .footer__contact {
    flex: 1;
  }
}
.footer__contact:last-child {
  margin-right: 0;
}
.footer__contact p {
  color: #000000;
  line-height: 32px;
}
.footer__contact p a {
  color: #000000;
}
.footer__contact p img {
  margin-right: 8px;
}

@media (max-width: 39.9375em) {
  .footer-cat-wrap {
    flex-direction: column;
  }
}

.news-section__left-side {
  width: 970px;
}
@media (max-width: 87.4375em) {
  .news-section__left-side {
    width: 70%;
  }
}
@media (max-width: 64em) {
  .news-section__left-side {
    width: 100%;
  }
}
.news-section__right-side {
  width: 390px;
  margin-left: 32px;
}
.news-section__right-side.dark-mode .show-more,
.news-section__right-side.dark-mode .news-section__acticle-content p,
.news-section__right-side.dark-mode .wrap-context p {
  color: #ffffff;
}
.news-section__right-side .analytic-article {
  margin-bottom: 16px;
}
@media (max-width: 87.4375em) {
  .news-section__right-side {
    width: 30%;
    padding-right: 24px;
    margin-left: 24px;
  }
}
@media (max-width: 64em) {
  .news-section__right-side {
    width: 100%;
    padding-right: 0px;
    margin-left: 0px;
  }
}
.news-section__right-side.radar-mobile-side {
  display: none;
}
@media (max-width: 64em) {
  .news-section__right-side.radar-mobile-side {
    width: 100%;
    display: flex;
    padding: 24px;
  }
}
@media (max-width: 39.9375em) {
  .news-section__right-side.radar-mobile-side {
    padding: 16px;
  }
}

.content-filters {
  display: none;
}
.content-filters.dark-mode {
  background: #1D1D1D;
}
@media (max-width: 64em) {
  .content-filters {
    display: flex;
    border-bottom: 1px solid #c1c1c1;
    padding: 0;
    height: 40px;
    position: fixed;
    width: 100%;
    top: 73px;
    z-index: 2;
    background: #ffffff;
  }
}
@media (max-width: 39.9375em) {
  .content-filters {
    top: 54px;
  }
}
.content-filters button {
  color: #8E8E8E;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0;
  border-radius: 0;
  height: 40px;
}
.content-filters button img {
  width: 24px;
  margin-right: 8px;
}
.content-filters button .light-ico {
  display: block;
}
.content-filters button .dark-ico {
  display: none;
}
.content-filters button .white-ico {
  display: none;
}
.content-filters button:hover, .content-filters button.active {
  color: #000000;
  border-bottom: 1px solid #000000;
}
.content-filters button:hover .light-ico, .content-filters button.active .light-ico {
  display: none;
}
.content-filters button:hover .dark-ico, .content-filters button.active .dark-ico {
  display: block;
}
.content-filters.dark-mode button:hover, .content-filters.dark-mode button.active {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.content-filters.dark-mode button:hover .dark-ico, .content-filters.dark-mode button.active .dark-ico {
  display: none;
}
.content-filters.dark-mode button:hover .white-ico, .content-filters.dark-mode button.active .white-ico {
  display: block;
}

.news-box {
  margin: 32px auto;
  position: relative;
}
.news-box:first-child {
  padding-top: 90px;
}
@media (max-width: 64em) {
  .news-box {
    flex-direction: column;
    margin: 0;
  }
  .news-box:first-child {
    padding-top: 108px;
  }
  .news-box:empty {
    padding-top: 0;
  }
}
@media (max-width: 39.9375em) {
  .news-box:first-child {
    padding-top: 104px;
  }
}
.news-box.news-box-tv {
  padding-top: 140px;
}
@media (max-width: 64em) {
  .news-box.news-box-tv {
    padding-top: 108px;
  }
}
@media (max-width: 39.9375em) {
  .news-box.news-box-tv {
    padding-top: 104px;
  }
}
.news-box.dark-mode .news-section__left-side,
.news-box.dark-mode .news-section__right-side {
  background: #1D1D1D;
  color: #ffffff;
}
.news-box.dark-mode .category-block__sub-title,
.news-box.dark-mode .nerrow-row .news-section__category-item-box h5,
.news-box.dark-mode .news-section__filter-item a .wrap-context p,
.news-box.dark-mode .news-section__category-title-black,
.news-box.dark-mode .news-section__category-item-box h5,
.news-box.dark-mode .news-section__category-item-box p,
.news-box.dark-mode .news-section__category-item-box .number,
.news-box.dark-mode .news-section__category-item-box-large h5,
.news-box.dark-mode .news-section__category-item-box-large p {
  color: #ffffff;
}
.news-box.dark-mode .news-section__category-item-box-large .number-big {
  color: #ffffff;
}

.news-section__wrapper {
  margin-bottom: 16px;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 16px;
}
.news-section__wrapper.no-border {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 16px;
}
.news-section__wrapper:last-child {
  border: 0;
  padding-bottom: 0;
}
.news-section__wrapper.text-wrap {
  border-bottom: 1px solid #c1c1c1;
  padding-top: 16px;
  position: relative;
}
.news-section__wrapper.text-wrap.mobile-wrap {
  position: fixed;
  width: 100%;
  top: 97px;
  background: #1D1D1D;
  z-index: 3;
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap.mobile-wrap {
    background: #1D1D1D;
    padding-top: 0;
    height: 40px;
    border: 0;
    position: fixed;
    top: 72px;
    width: 100%;
  }
}
@media (max-width: 64em) and (max-width: 39.9375em) {
  .news-section__wrapper.text-wrap.mobile-wrap {
    top: 54px;
  }
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap.mobile-wrap .container {
    padding: 0;
  }
  .news-section__wrapper.text-wrap.mobile-wrap .content-filters {
    max-width: 200px;
    border-bottom: 0;
    right: 64px;
  }
}
@media (max-width: 64em) and (max-width: 39.9375em) {
  .news-section__wrapper.text-wrap.mobile-wrap .content-filters {
    max-width: 160px;
  }
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap.mobile-wrap .content-filters button {
    padding: 0 32px;
  }
}
.news-section__wrapper.text-wrap .text-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  font-size: 16px;
}
.news-section__wrapper.text-wrap .radar-tv {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.news-section__wrapper.text-wrap .radar-tv i,
.news-section__wrapper.text-wrap .radar-tv svg {
  margin-right: 8px;
  color: #ED6F3D;
  font-size: 10px;
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap .radar-tv {
    color: #8E8E8E;
    max-width: 200px;
    height: 40px;
    padding: 0 32px;
    border: 0;
  }
  .news-section__wrapper.text-wrap .radar-tv.active {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}
.news-section__wrapper.text-wrap ul {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap ul {
    display: none;
    position: absolute;
    top: 52px;
    background: #1D1D1D;
    flex-direction: column;
    width: 100%;
    left: 0;
    z-index: 13;
    padding: 24px;
    line-height: 40px;
  }
}
.news-section__wrapper.text-wrap ul li {
  margin-left: 24px;
}
@media (max-width: 64em) {
  .news-section__wrapper.text-wrap ul li {
    margin-left: 0;
  }
}
.news-section__wrapper.text-wrap ul li a {
  color: #ffffff;
}
.news-section__wrapper .tv-nav {
  display: none;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 24px;
  cursor: pointer;
  flex: 1;
}
@media (max-width: 64em) {
  .news-section__wrapper .tv-nav {
    display: flex;
  }
}
.news-section__wrapper .tv-nav i,
.news-section__wrapper .tv-nav svg {
  font-size: 24px;
  color: #ffffff;
}
.news-section__wrapper .tv-nav .close-tv {
  display: none;
}
.news-section__grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  position: relative;
  min-height: 144px;
}
.news-section__grid-row.dark-mode .news-section__category-item-box h5,
.news-section__grid-row.dark-mode .news-section__category-item-box p {
  color: #ffffff;
}
@media (max-width: 64em) {
  .news-section__grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-section__grid-row .news-section__category-item {
    border-bottom: 1px solid #c1c1c1;
  }
  .news-section__grid-row .news-section__category-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.news-section__grid-row .news-section__category-item {
  margin-left: 0;
}
.news-section__grid-row .news-section__category-item:nth-child(3n+3) {
  border-left: 0;
  padding-left: 0;
}
.news-section__grid-row-big {
  display: flex;
  flex-direction: row;
  position: relative;
  min-height: 144px;
}
@media (max-width: 64em) {
  .news-section__grid-row-big {
    flex-direction: column;
  }
}
.news-section__grid-row-big.dark-mode .news-section__category-item-box h5,
.news-section__grid-row-big.dark-mode .news-section__category-item-box p {
  color: #ffffff;
}
.news-section__grid-row-big .news-section__category-item,
.news-section__grid-row-big .category-item-a {
  width: 60%;
}
@media (max-width: 64em) {
  .news-section__grid-row-big .news-section__category-item,
  .news-section__grid-row-big .category-item-a {
    width: 100%;
  }
}
@media (max-width: 39.9375em) {
  .news-section__grid-row-big .news-section__category-item .category-row,
  .news-section__grid-row-big .category-item-a .category-row {
    flex-direction: column;
  }
  .news-section__grid-row-big .news-section__category-item .category-row .img-box,
  .news-section__grid-row-big .category-item-a .category-row .img-box {
    width: 100%;
    order: 2;
  }
  .news-section__grid-row-big .news-section__category-item .category-row .news-section__category-item-img-large,
  .news-section__grid-row-big .category-item-a .category-row .news-section__category-item-img-large {
    width: 100%;
    margin-bottom: 8px;
  }
}
.news-section__grid-row-big .category-item-100 {
  width: 100%;
}
.news-section__grid-row-big .col-item-text {
  width: 40%;
}
@media (max-width: 64em) {
  .news-section__grid-row-big .col-item-text {
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
  }
  .news-section__grid-row-big .col-item-text:last-child {
    border-bottom: 0;
  }
}
.news-section__grid-col .news-section__category-item {
  margin-bottom: 16px;
  border-top: 1px solid #c1c1c1;
  padding-top: 16px;
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}
.news-section__newsblog.news-feed {
  min-height: 900px;
}
@media (max-width: 64em) {
  .news-section__newsblog.news-feed {
    display: none;
  }
}
.news-section__newsblog.news-feed.dark-mode.animate {
  background: #1D1D1D;
  color: #ffffff;
}
.news-section__newsblog.news-feed.animate {
  display: block;
  position: fixed;
  background: #ffffff;
  top: 114px;
  width: 100%;
  z-index: 2;
  padding: 16px 24px;
  left: 0;
  overflow: hidden;
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 39.9375em) {
  .news-section__newsblog.news-feed.animate {
    top: 96px;
  }
  .news-section__newsblog.news-feed.animate .news-section__category-row {
    padding-right: 32px;
  }
}
.news-section__newsblog.hide-feed {
  display: none;
}
.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: 39.9375em) {
  .news-section__custom-scroll {
    margin-right: 8px;
    height: calc(100% - 64px);
    max-height: 690px;
  }
}
.news-section__custom-scroll::-webkit-scrollbar {
  width: 4px;
}
.news-section__custom-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px transparent;
  border-radius: 10px;
}
.news-section__custom-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px;
  transition: background-color 200ms ease-in-out;
}
.news-section__custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.news-section__author-name {
  color: #8E8E8E;
  font-size: 12px;
}
.news-section__author-name h6 {
  margin-right: 8px;
}
.news-section__author-name a {
  color: #8E8E8E;
}
.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: #8E8E8E;
  font-size: 14px;
}
.news-section__author-img {
  width: 80px;
  height: 100px;
  background-size: contain;
  background-position: center;
  margin-right: 16px;
}
.news-section__acrticle-box {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
  transition: all 200ms ease-in-out;
  overflow: hidden;
}
.news-section__acrticle-box:last-child {
  border: 0;
  padding-bottom: 0;
}
.news-section__acrticle {
  width: 120px;
  height: 120px;
}
.news-section__acrticle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
}
.news-section__acticle-content {
  width: calc(100% - 136px);
  margin-right: 16px;
}
.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: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section__covid-date {
  font-size: 16px;
  color: #8E8E8E;
  text-align: right;
}
.news-section__covid-upd-box {
  margin-bottom: 16px;
}
.news-section__covid-upd-box .upd-row {
  height: 32px;
  border-bottom: 1px solid #c1c1c1;
}
.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%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c1c1c1;
}
.news-section__featured-slider .main_slider_item {
  height: 364px;
}
@media (max-width: 64em) {
  .news-section__featured-slider .main_slider_item {
    height: auto;
  }
}
.news-section__featured-slider .main_slider_item .slide-btn {
  top: -5px;
}
@media (max-width: 64em) {
  .news-section__featured-slider .main_slider_item .slide-btn {
    top: 0px;
  }
}
.news-section__featured-slider .news-section__slider-wrap-img {
  height: 364px;
  padding: 0;
}
@media (max-width: 39.9375em) {
  .news-section__featured-slider .news-section__slider-wrap-img {
    height: 224px;
  }
}
.news-section__featured-slider .owl-dots {
  display: none;
}
@media (max-width: 64em) {
  .news-section__featured-slider {
    height: auto;
  }
}
.news-section__featured-slider.dark-mode {
  background: #1D1D1D;
  color: #ffffff;
}
.news-section__featured-slider.dark-mode .a-title,
.news-section__featured-slider.dark-mode .news-section__slider-info-item p {
  color: #ffffff;
}
.news-section__featured-slider.dark-mode .link-btn {
  color: #ffffff;
  border-color: #ffffff;
}
.news-section__featured-slider-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  position: relative;
  min-height: 164px;
}
@media (max-width: 64em) {
  .news-section__featured-slider-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-section__featured-slider-bottom-item {
  border-left: 1px solid #c1c1c1;
  padding-left: 16px;
  margin-right: 16px;
}
.news-section__featured-slider-bottom-item:first-child {
  border-left: 0;
  padding-left: 0;
  margin-right: 0;
}
.news-section__featured-slider-bottom-item:last-child {
  margin-right: 0;
}
@media (max-width: 64em) {
  .news-section__featured-slider-bottom-item {
    border-left: 0;
    padding-left: 0;
    margin-right: 0;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #c1c1c1;
  }
  .news-section__featured-slider-bottom-item:last-child {
    border-bottom: 0;
  }
}
.news-section__featured-slider-bottom-item h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  font-family: "GheaArkmenik";
}
.news-section__featured-slider-bottom-item .time {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 30px;
}
.news-section__featured-slider-bottom-item p {
  color: #363636;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
}
.news-section__featured-slider-bottom-item p:first-of-type {
  margin-top: 0;
}
.news-section__featured-slider-bottom-item .news-bottom-text {
  width: calc(100% - 216px);
  padding-right: 16px;
}
@media (min-width: 40em) {
  .news-section__featured-slider-bottom-item .news-bottom-text {
    width: calc(100% - 164px);
  }
}
@media (max-width: 39.9375em) {
  .news-section__featured-slider-bottom-item .news-bottom-text {
    width: calc(100% - 120px);
  }
}
.news-section__featured-slider-bottom-item .news-bottom-img {
  width: 216px;
  height: 186px;
}
@media (min-width: 40em) {
  .news-section__featured-slider-bottom-item .news-bottom-img {
    width: 164px;
    height: 164px;
  }
}
@media (max-width: 39.9375em) {
  .news-section__featured-slider-bottom-item .news-bottom-img {
    width: 120px;
    height: 120px;
  }
}
.news-section__featured-slider-bottom-item .news-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-section__banner {
  margin-bottom: 24px;
}
.news-section__banner-item {
  width: 100%;
  height: 202px;
  position: relative;
  margin-bottom: 16px;
  margin-right: 16px;
  overflow: hidden;
  transition: all ease-in-out 200ms;
  align-items: 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%;
  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 {
    flex-direction: column;
  }
}
.news-section__slider-item {
  width: 100%;
  position: relative;
}
.news-section__slider-iframe iframe {
  width: 100%;
  height: 100%;
}
.news-section__slider-wrap-img {
  width: 100%;
  height: 376px;
  padding: 24px 0;
  overflow: hidden;
  transform: scale(1);
  display: inline-block;
}
@media (max-width: 64em) {
  .news-section__slider-wrap-img {
    margin: 24px 0;
    order: 1;
    height: 324px;
    padding: 0;
  }
}
@media (max-width: 39.9375em) {
  .news-section__slider-wrap-img {
    height: 224px;
  }
}
.news-section__slider-img {
  width: 100%;
  height: calc(100% - 48px);
  margin: 24px 0;
  overflow: hidden;
  transform: scale(1);
  display: inline-block;
}
@media (max-width: 64em) {
  .news-section__slider-img {
    margin: 24px 0;
    order: 1;
    height: 324px;
    padding: 0;
  }
}
@media (max-width: 39.9375em) {
  .news-section__slider-img {
    height: 224px;
  }
}
.news-section__slider-img img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: transform ease-in-out 0.6s;
}
.news-section__slider-img:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
.news-section__slider-info {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 32px;
  display: flex;
  align-items: center;
  justify-content: left;
}
@media (max-width: 87.4375em) {
  .news-section__slider-info {
    padding-right: 16px;
  }
}
@media (max-width: 64em) {
  .news-section__slider-info {
    padding-right: 0;
    order: 2;
    padding-bottom: 16px;
  }
}
.news-section__slider-info-item .btn {
  max-width: 124px;
}
.news-section__slider-info-item span {
  margin-top: 24px;
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
  font-family: "FedraSansArm";
}
@media (max-width: 87.4375em) {
  .news-section__slider-info-item span {
    margin-top: 0px;
  }
}
.news-section__slider-info-item .a-title {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  font-family: "GheaArkmenik";
}
@media (max-width: 39.9375em) {
  .news-section__slider-info-item .a-title {
    -webkit-line-clamp: 3;
    font-size: 20px;
    line-height: 30px;
  }
}
.news-section__slider-info-item p {
  color: #28221A;
  font-family: "FedraSansArm";
  line-height: 24px;
  font-size: 16px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}
.news-section__category-row {
  margin-bottom: 24px;
}
.news-section__category-row.dark-mode .show-more {
  color: #ffffff;
}
.news-section__category-title {
  color: #ED6F3D;
  font-size: 18px;
  font-family: "FedraSansArmBold";
}
.news-section__category-title-black {
  color: #000000;
  font-size: 32px;
  font-family: "GheaArkmenikReg";
  text-align: center;
  padding-bottom: 24px;
  font-weight: 500;
}
@media (max-width: 39.9375em) {
  .news-section__category-title-black {
    display: none;
  }
}
.news-section__category-item-col {
  display: flex;
  width: 100%;
  margin: 4px 0;
  position: relative;
  transition: all 200ms ease-in-out;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 64em) {
  .news-section__category-item-col {
    width: 100%;
    padding: 0;
    margin-left: 0;
    border-left: 0;
    padding-bottom: 16px;
  }
}
.news-section__category-item-col a {
  border-top: 1px solid #c1c1c1;
  border-bottom: 0;
  padding-top: 16px;
  margin-bottom: 16px;
}
.news-section__category-item {
  display: flex;
  width: 100%;
  margin: 4px 0;
  position: relative;
  transition: all 200ms ease-in-out;
  overflow: hidden;
  border-left: 1px solid #c1c1c1;
  padding-left: 24px;
  margin-left: 24px;
  margin-bottom: 16px;
}
.news-section__category-item:first-child {
  border-left: 0;
  padding-left: 0px;
  margin-left: 0px;
}
.news-section__category-item:last-child {
  border-bottom: 0;
}
@media (max-width: 64em) {
  .news-section__category-item {
    width: 100%;
    padding: 0;
    margin-left: 0;
    border-left: 0;
    padding-bottom: 16px;
  }
}
.news-section__category-item.col-item img {
  width: 100%;
}
.news-section__category-item.col-item-text .wrap {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.news-section__category-item.col-item-text .wrap:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 39.9375em) {
  .news-section__category-item .wrap {
    height: 100%;
    flex-direction: column;
  }
}
.news-section__category-item-img {
  width: 216px;
  height: 186px;
}
@media (min-width: 40em) {
  .news-section__category-item-img {
    width: 164px;
    height: 164px;
  }
}
@media (max-width: 39.9375em) {
  .news-section__category-item-img {
    width: 120px;
    height: 120px;
  }
}
.news-section__category-item-img.large-img {
  width: 100%;
}
@media (max-width: 39.9375em) {
  .news-section__category-item-img.large-img {
    height: 186px;
  }
}
.news-section__category-item-img img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}
.news-section__category-item-img-large {
  width: 252px;
  height: 200px;
}
.news-section__category-item-img-large img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}
.news-section__category-item-img-small {
  width: 132px;
  height: 132px;
}
@media (max-width: 39.9375em) {
  .news-section__category-item-img-small {
    width: 120px;
    height: 120px;
  }
}
.news-section__category-item-img-small img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}
.news-section__category-item-box {
  width: 100%;
  padding-right: 16px;
  line-height: 1.6;
}
.news-section__category-item-box.img-box {
  width: calc(100% - 216px);
}
@media (min-width: 40em) {
  .news-section__category-item-box.img-box {
    width: calc(100% - 164px);
  }
}
@media (max-width: 39.9375em) {
  .news-section__category-item-box.img-box {
    width: calc(100% - 120px);
  }
}
@media (max-width: 39.9375em) {
  .news-section__category-item-box {
    padding-left: 0;
  }
}
.news-section__category-item-box h5 {
  font-size: 18px;
  font-weight: bold;
  font-family: "GheaArkmenik";
  line-height: 26px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section__category-item-box .number {
  font-size: 24px;
  line-height: 26px;
  font-family: "Georgia";
  margin-right: 4px;
  color: #000000;
}
.news-section__category-item-box span {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
}
.news-section__category-item-box p {
  color: #363636;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
  line-height: 26px;
}
.news-section__category-item-box p:first-of-type {
  margin-top: 0;
}
.news-section__category-item-box-large {
  width: 100%;
  padding-right: 16px;
  line-height: 1.6;
}
.news-section__category-item-box-large.img-box {
  width: calc(100% - 252px);
}
@media (max-width: 39.9375em) {
  .news-section__category-item-box-large {
    padding-left: 0;
  }
}
.news-section__category-item-box-large h5 {
  font-size: 18px;
  font-weight: bold;
  font-family: "GheaArkmenik";
  line-height: 26px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section__category-item-box-large .number-big {
  font-size: 40px;
  line-height: 44px;
  font-family: "Georgia";
  margin-right: 4px;
  color: #000000;
}
.news-section__category-item-box-large span {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
}
.news-section__category-item-box-large p {
  color: #363636;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
  line-height: 26px;
}
.news-section__category-item-box-large p:first-of-type {
  margin-top: 0;
}
.news-section__category-item-box-small {
  width: calc(100% - 132px);
  padding-right: 16px;
  line-height: 1.6;
}
@media (max-width: 39.9375em) {
  .news-section__category-item-box-small {
    padding-left: 0;
  }
}
.news-section__category-item-box-small h5 {
  font-size: 18px;
  font-weight: bold;
  font-family: "GheaArkmenik";
  line-height: 26px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section__category-item-box-small span {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
}
.news-section__category-item-box-small p {
  color: #363636;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
}
.news-section__category-item-box-small p:first-of-type {
  margin-top: 0;
}
.news-section__filter-item {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
  transition: all 200ms ease-in-out;
  overflow: hidden;
}
.news-section__filter-item:last-child {
  border-bottom: 0;
}
.news-section__filter-item a .wrap-context p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "GheaArkmenikDemiBold";
}
.news-section__filter-item-img {
  width: 120px;
  height: 120px;
}
.news-section__filter-item-img img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}
.news-section__filter-item-box {
  width: calc(100% - 132px);
  margin-right: 16px;
  overflow: hidden;
}
.news-section__filter-item-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section__filter-item-box span {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
}

.main_slider_item {
  position: relative;
  height: 424px;
}
@media (max-width: 64em) {
  .main_slider_item {
    height: 100%;
    flex-direction: column;
    margin-top: 16px;
  }
}
.main_slider_item .slide-btn {
  position: absolute;
  left: 0;
  top: 8px;
}

@media (max-width: 64em) {
  .nerrow-row {
    border-bottom: 1px solid #c1c1c1;
  }
}
.nerrow-row a {
  width: 100%;
}
.nerrow-row .news-section__category-item-box h5 {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "GheaArkmenik";
}
.nerrow-row .news-section__category-item-box.img-box {
  width: calc(100% - 120px);
}
.nerrow-row .news-section__category-item-img {
  width: 120px;
  height: 120px;
}

.wrap-newsblog {
  max-height: 1000px;
  overflow-x: auto;
  cursor: pointer;
  position: relative;
  padding-right: 16px;
  margin-bottom: 16px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 64em) {
  .wrap-newsblog {
    max-height: 100%;
    overflow: hidden;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.wrap-newsblog::-webkit-scrollbar {
  width: 4px;
}
.wrap-newsblog::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px transparent;
  border-radius: 10px;
}
.wrap-newsblog::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px;
  transition: background-color 200ms ease-in-out;
}
.wrap-newsblog::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

.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 p {
  font-weight: normal;
  line-height: 32px !important;
  margin-bottom: 16px;
  font-size: 16px;
}
.category-block iframe {
  width: 100%;
  height: 402px;
}
.category-block__sub-title {
  color: #000000;
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  font-family: "GheaArkmenik";
}
@media (max-width: 64em) {
  .category-block__sub-title {
    margin-bottom: 64px;
    display: block;
    word-wrap: break-word;
  }
}
.category-block__item {
  margin-bottom: 15px;
}
.category-block__item-img {
  width: 100%;
  height: 400px;
  margin-left: 24px;
}
@media (max-width: 64em) {
  .category-block__item-img {
    margin-left: 0;
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 39.9375em) {
  .category-block__item-img {
    height: 240px;
    margin-bottom: 16px;
  }
}
.category-block__item-img img {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
}
.category-block__item-box {
  width: 100%;
  line-height: 1.4;
  margin-bottom: 10px;
}
.category-block__item-box span {
  color: #8E8E8E;
  font-size: 14px;
  margin-bottom: 8px;
}
.category-block__title-txt a {
  color: #ED6F3D;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}
.category-block__title-txt a i,
.category-block__title-txt a svg {
  margin-right: 8px;
}
.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;
  object-fit: cover;
  object-position: center;
}
.category-block__views {
  color: #ED6F3D;
  cursor: pointer;
}
.category-block__views i {
  margin-right: 8px;
  font-size: 16px;
}
.category-block__info {
  position: relative;
}
.category-block .social-block {
  position: absolute;
  bottom: 24px;
  width: 100%;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 8px;
  color: #c1c1c1;
}
@media (max-width: 64em) {
  .category-block .social-block {
    bottom: 0;
  }
}
.category-block .social-block__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.category-block .social-block p {
  margin-bottom: 0;
}

.photo-gallery {
  border-top: 1px solid #c1c1c1;
  padding-top: 16px;
  margin-top: 16px;
  min-height: 464px;
}
.photo-gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  position: relative;
}
@media (max-width: 64em) {
  .photo-gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-gallery__row__item {
    margin-bottom: 16px;
  }
}
@media (max-width: 39.9375em) {
  .photo-gallery__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.photo-gallery__img-box {
  width: 100%;
  height: 314px;
  overflow: hidden;
}
.photo-gallery__item {
  overflow: hidden;
}
@media (max-width: 64em) {
  .photo-gallery__item {
    margin-bottom: 16px;
  }
}
.photo-gallery__item h5 {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "GheaArkmenikDemiBold";
}
.photo-gallery__item h5 a {
  color: #000000;
}
.photo-gallery__item span {
  color: #8E8E8E;
  font-size: 12px;
  line-height: 24px;
  margin-top: 4px;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease-in-out 0.8s;
  overflow: hidden;
}
.photo-gallery__item:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
.photo-gallery.dark-mode .photo-gallery__item h5,
.photo-gallery.dark-mode .photo-gallery__item h5 a {
  color: #ffffff;
}

.event-gallery {
  border-top: 1px solid #c1c1c1;
  padding-top: 16px;
  margin-top: 16px;
  min-height: 484px;
}
.event-gallery.dark-mode .event-gallery__item h5,
.event-gallery.dark-mode .event-gallery__item h5 a,
.event-gallery.dark-mode .photo-gallery__item h5,
.event-gallery.dark-mode .photo-gallery__item h5 a {
  color: #ffffff;
}
.event-gallery__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  position: relative;
}
@media (max-width: 64em) {
  .event-gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 39.9375em) {
  .event-gallery__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 64em) {
  .event-gallery__item {
    margin-bottom: 16px;
  }
}
.event-gallery__item h5 {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "GheaArkmenik";
}
.event-gallery__item span {
  color: #c1c1c1;
  font-size: 12px;
  line-height: 24px;
  margin-top: 4px;
}

.society-block.dark-mode .news-section__category-item-box h5,
.society-block.dark-mode .news-section__category-item-box p,
.society-block.dark-mode .news-section__slider-info-item .a-title {
  color: #ffffff;
}
.society-block.border {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.society-block__row {
  min-height: 232px;
}
@media (max-width: 64em) {
  .society-block__row {
    flex-direction: column;
  }
  .society-block__row .category-row {
    flex-direction: column;
  }
  .society-block__row .category-row .news-section__category-item-box {
    order: 2;
  }
  .society-block__row .category-row .news-section__category-item-img {
    margin-bottom: 24px;
    width: 100%;
  }
}
@media (max-width: 64em) and (max-width: 64em) {
  .society-block__row .category-row .news-section__category-item-img {
    height: 146px;
  }
}
@media (max-width: 64em) {
  .society-block__row .category-row .news-section__category-item-img img {
    width: 100%;
  }
}
.society-block__bottom {
  border-top: 1px solid #c1c1c1;
  padding-top: 16px;
  margin-top: 16px;
  min-height: 424px;
}
.society-block__bottom.no-border {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.society-block__bottom.dark-mode .news-section__category-item-box h5,
.society-block__bottom.dark-mode .news-section__slider-info-item p,
.society-block__bottom.dark-mode .news-section__slider-info-item .a-title {
  color: #ffffff;
}
@media (max-width: 64em) {
  .society-block__bottom .society-row {
    flex-direction: column;
  }
}
.society-block__bottom .society-col .main_slider_item {
  margin-bottom: 24px;
}
.society-block__bottom .society-col .society-block-col {
  margin-left: 0;
}
@media (max-width: 64em) {
  .society-block__bottom .society-col .society-block-col {
    flex-direction: column;
  }
}
.society-block__bottom .society-col .social-absolute {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 30px;
}
.society-block__bottom .society-col .news-section__category-item {
  margin-right: 16px;
  border-bottom: 0 !important;
}
.society-block__bottom .society-col .news-section__category-item:last-child {
  margin-right: 0;
}
@media (max-width: 64em) {
  .society-block__bottom .society-col .news-section__category-item {
    margin-right: 0;
  }
}
.society-block__bottom .society-col .news-section__category-item-box {
  width: calc(100% - 140px);
}
.society-block__bottom .society-col .news-section__category-item-img {
  width: 140px;
  height: 120px;
}
.society-block__bottom .society-col .news-section__category-item-box h5 {
  -webkit-line-clamp: 2;
}
.society-block .society-block-col {
  margin-left: 24px;
  margin-left: 24px;
  justify-content: center;
}
@media (max-width: 64em) {
  .society-block .society-block-col {
    margin-left: 0;
  }
}
.society-block .society-block-col .news-section__category-item {
  border-bottom: 1px solid #c1c1c1;
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 32px;
  width: 100%;
}
@media (max-width: 64em) {
  .society-block .society-block-col .news-section__category-item {
    padding-bottom: 32px;
  }
}
.society-block .society-block-col .news-section__category-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 16px;
}
.society-block .tv-nav {
  display: none;
  width: 32px;
  height: 32px;
}
@media (max-width: 64em) {
  .society-block .tv-nav {
    display: block;
  }
}
.society-block .tv-nav i,
.society-block .tv-nav svg {
  font-size: 24px;
}

.about-block p {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 16px;
  font-family: "FedraSansArmBook";
}
.about-block p:last-child {
  margin-bottom: 0;
}
.about-block p a {
  color: #ED6F3D;
}

.about-banner {
  position: relative;
  border-top: 1px solid #c1c1c1;
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  height: 310px;
}
@media (max-width: 64em) {
  .about-banner {
    height: 264px;
  }
}
@media (max-width: 39.9375em) {
  .about-banner {
    height: 100%;
  }
}
.about-banner .mobile {
  display: none;
}
@media (max-width: 39.9375em) {
  .about-banner .desktop {
    display: none;
  }
  .about-banner .mobile {
    display: block;
  }
}
.about-banner .desktop,
.about-banner .mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-banner .contact-row {
  position: absolute;
  bottom: 16px;
  left: 50px;
}
@media (max-width: 64em) {
  .about-banner .contact-row {
    left: 32px;
  }
}
@media (max-width: 39.9375em) {
  .about-banner .contact-row {
    flex-direction: column;
    left: 0px;
    padding-bottom: 9px;
  }
}
.about-banner .contact-row div {
  margin-right: 16px;
  font-size: 12px;
  color: #ffffff;
}
@media (max-width: 39.9375em) {
  .about-banner .contact-row div {
    margin-right: 0;
    margin-left: 16px;
    margin-top: 16px;
    width: 100%;
  }
}
.about-banner .contact-row div img {
  width: 16px;
  margin-right: 8px;
}

.about-telegram {
  background: #F5F5F5;
  padding: 24px 44px;
  color: #000000;
  margin: 16px 0;
  position: relative;
}
@media (max-width: 39.9375em) {
  .about-telegram {
    padding: 24px;
    flex-direction: column;
    overflow: hidden;
  }
}
.about-telegram h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 16px;
  width: 224px;
  line-height: 46px;
  font-family: "FedraSansArmBold";
}
@media (max-width: 39.9375em) {
  .about-telegram h1 {
    width: 100%;
  }
}
.about-telegram .btn {
  max-width: 184px;
}
.about-telegram .about-row-text {
  margin-right: 24px;
}
@media (max-width: 39.9375em) {
  .about-telegram .about-row-text {
    margin-right: 0;
    margin-bottom: 88px;
  }
}
@media (max-width: 64em) {
  .about-telegram img {
    width: 124px;
  }
}
@media (max-width: 39.9375em) {
  .about-telegram img {
    width: 50%;
    position: absolute;
    bottom: -16%;
    left: 25%;
  }
}

.main_slider_item-col .category-block__sub-title {
  display: block;
}
@media (max-width: 64em) {
  .main_slider_item-col .category-block__sub-title {
    margin-bottom: 0;
  }
}
.main_slider_item-col .category-block__item-img {
  height: 424px;
  margin-left: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 64em) {
  .main_slider_item-col .category-block__item-img {
    height: 394px;
  }
}
@media (max-width: 39.9375em) {
  .main_slider_item-col .category-block__item-img {
    height: 218px;
  }
}
.main_slider_item-col .category-block__item-img img {
  width: 100%;
  height: 424px;
  padding: 0 84px;
}
@media (max-width: 64em) {
  .main_slider_item-col .category-block__item-img img {
    padding: 0;
    height: 394px;
  }
}
@media (max-width: 39.9375em) {
  .main_slider_item-col .category-block__item-img img {
    height: 218px;
  }
}
.main_slider_item-col .social-block {
  position: relative;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #c1c1c1;
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 8px;
  color: #c1c1c1;
  margin-bottom: 16px;
}
.main_slider_item-col .social-block__row {
  justify-content: flex-end;
}

.search-result-block {
  margin-bottom: 15px;
}
.search-result-block form {
  margin-bottom: 15px;
}
@media (max-width: 39.9375em) {
  .search-result-block__container {
    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;
  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;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  border-bottom-right-radius: 0px;
  padding: 0 16px 0 32px;
  -webkit-appearance: none;
}
.search-result-block__filter select {
  background: #ED6F3D;
  color: #ffffff;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 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;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 0 16px 0 32px;
  font-size: 12px;
  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;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 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: flex;
  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;
  transition: all 200ms ease-in-out;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}
.search-result-block__select-category ul li.selected:not(.init) {
  background: #28221A;
  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: flex;
  align-items: 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: 0.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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  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;
  transition: background-color 200ms ease-in-out;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  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;
  transform: translateY(-45%);
  left: 8px;
}
.owl-carousel .owl-prev i {
  color: #ffffff;
  font-size: 16px;
}
.owl-carousel .owl-prev:hover {
  opacity: 0.9;
}
.owl-carousel .owl-next {
  position: absolute;
  top: 45%;
  width: 32px;
  height: 32px;
  transform: translateY(-45%);
  right: 8px;
}
.owl-carousel .owl-next i {
  color: #ffffff;
  font-size: 16px;
}
.owl-carousel:hover {
  opacity: 0.9;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: 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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.audio-player .ui-slider-horizontal .ui-slider-handle {
  background-color: #ED6F3D;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: none;
  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;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

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