html {
  height: 100%; }

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff; }

.main {
  min-width: 320px;
  flex: 1 0 auto; }

footer {
  flex: 0 0 auto; }

button, a {
  cursor: pointer;
  text-decoration: none; }
  button:hover:focus, a:hover:focus {
    text-decoration: none; }

button,
a,
input,
textarea,
select {
  outline: none;
  cursor: pointer; }

a:focus, a:hover {
  text-decoration: none; }

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; }

.nav-btn {
  background: transparent;
  border: none;
  font-size: 30px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #666666; }

.title-section {
  width: 100%;
  max-width: 276px;
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  border-bottom: 1px solid #000000;
  margin: 0 0 34px 0;
  padding-bottom: 7px; }

/* ---------------------------------------------------
    HEADER STYLE
----------------------------------------------------- */
header {
  margin-bottom: 30px;
  /* hide the blue outline */ }
  header .top-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px; }
    header .top-bar-header-left {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
    header .top-bar-header .logo-block .mob-logo {
      display: none; }
  header .search-input {
    width: 237px;
    height: 25px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0 16px;
    font-size: 10px;
    color: #666666; }
  header .search-btn {
    height: 25px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 16px;
    font-size: 10px;
    color: #666666; }
    header .search-btn:hover {
      color: #ffffff; }
  header .form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none; }
  header .header-social-block {
    display: inline-block; }
    header .header-social-block ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      header .header-social-block ul li {
        display: inline-block;
        width: 25px;
        height: 25px;
        line-height: 30px;
        text-align: center;
        border-radius: 20px;
        margin-right: 25px;
        border: 2px solid #666666; }
        header .header-social-block ul li a {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100%;
          font-size: 14px;
          position: relative;
          border: 0;
          padding: 0;
          color: #666666; }
        header .header-social-block ul li:hover {
          transition: all 0.3s;
          border: 2px solid #BEBE00; }
          header .header-social-block ul li:hover a {
            color: #BEBE00; }
  header .header-nav-container {
    padding: 8px 16px;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000; }
    header .header-nav-container nav .main-menu ul {
      padding-left: 0;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0; }
      header .header-nav-container nav .main-menu ul li {
        cursor: pointer;
        float: left;
        position: relative; }
      header .header-nav-container nav .main-menu ul li > ul {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 2; }
      header .header-nav-container nav .main-menu ul li:hover > ul {
        display: block; }
      header .header-nav-container nav .main-menu ul li > ul > li {
        position: relative;
        background: #ffffff;
        margin-bottom: 2px;
        width: 100%; }
      header .header-nav-container nav .main-menu ul li > ul > li > ul {
        display: none;
        position: absolute;
        left: 100%;
        top: 0; }
      header .header-nav-container nav .main-menu ul li > ul > li:hover > ul {
        display: block; }
    header .header-nav-container nav a {
      display: block;
      font-family: 'Noto Sans', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #000000;
      border: 2px solid transparent;
      padding: 0 14px;
      white-space: nowrap; }
      header .header-nav-container nav a:hover {
        color: #000000;
        border: 2px solid #BEBE00; }
    header .header-nav-container nav a.active {
      color: #000000;
      border: 2px solid #BEBE00; }

.right-fixed-block {
  display: none; }

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
  width: 100%;
  max-width: 415px;
  position: fixed;
  top: 0;
  left: -450px;
  height: 100vh;
  z-index: 999;
  background: #ffffff;
  color: #000000;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2); }

#sidebar.active {
  left: 0; }

#dismiss {
  width: 30px;
  height: 30px;
  position: relative;
  font-size: 25px;
  cursor: pointer;
  color: #222221;
  margin-left: 167px;
  margin-top: 50px; }
  #dismiss .nav-open, #dismiss .nav-close {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 32px;
    text-align: center;
    -webkit-transition: .5s all ease-out;
    transition: .5s all ease-out; }
  #dismiss .nav-open {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  #dismiss .nav-close {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }
  #dismiss:hover .nav-open {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  #dismiss:hover .nav-close {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(102, 102, 102, 0.4);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out; }

.overlay.active {
  display: block;
  opacity: 1; }

#sidebar .sidebar-header {
  padding: 20px;
  background: #6d7fcc; }

#sidebar .sidebar-menu ul {
  padding-left: 155px;
  padding-top: 80px;
  list-style: none; }
  #sidebar .sidebar-menu ul li {
    margin-bottom: 8px; }
    #sidebar .sidebar-menu ul li a {
      display: inline-block;
      font-family: 'Noto Sans', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #000000;
      padding: 0 15px;
      border: 2px solid transparent; }
      #sidebar .sidebar-menu ul li a:hover {
        color: #000000;
        border: 2px solid #BEBE00; }

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  color: #000000;
  border: 2px solid #BEBE00; }

a[data-toggle="collapse"] {
  position: relative; }

/*** Right sidebar ***/
aside {
  padding-left: 55px !important; }
  aside p {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    padding: 0 30px 24px 30px;
    background: rgba(229, 229, 229, 0.2);
    margin: 0; }
    aside p:first-child {
      padding-top: 27px; }
    aside p:last-child:after {
      display: none; }
    aside p:after {
      content: '';
      display: inline-block;
      height: 3px;
      width: calc(100% - 20px);
      background: #666666;
      position: relative;
      top: 6px; }

.calendar-block {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 51px;
  background: rgba(229, 229, 229, 0.2); }
  .calendar-block .datepicker .ui-widget.ui-widget-content {
    width: 100%;
    max-width: 320px;
    background: rgba(229, 229, 229, 0);
    border: unset;
    border-radius: 0; }
  .calendar-block .datepicker .ui-widget-header {
    background: transparent;
    border: unset; }
  .calendar-block .datepicker .ui-datepicker .ui-datepicker-title {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px; }
  .calendar-block .datepicker .ui-datepicker th {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 11px; }
  .calendar-block .datepicker .ui-state-default,
  .calendar-block .datepicker .ui-widget-content .ui-state-default {
    color: #454545;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    background: transparent;
    border: unset;
    position: relative;
    margin: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px; }
  .calendar-block .datepicker .selected .ui-state-default {
    color: #BEBE00;
    font-weight: 700; }
  .calendar-block .datepicker .ui-state-highlight,
  .calendar-block .datepicker .ui-widget-content .ui-state-highlight {
    border: unset;
    background: transparent;
    font-weight: normal;
    position: relative;
    cursor: pointer; }
  .calendar-block .datepicker .selected-start,
  .calendar-block .datepicker .selected-end {
    border: unset;
    background: transparent;
    font-weight: normal;
    color: #000000;
    position: relative;
    cursor: pointer; }
    .calendar-block .datepicker .selected-start:before,
    .calendar-block .datepicker .selected-end:before {
      content: '';
      display: block;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #BEBE00;
      position: absolute;
      left: -5px;
      top: -5px; }
  .calendar-block .calendar-btn-block {
    text-align: right;
    padding: 10px;
    margin-right: 24px; }
    .calendar-block .calendar-btn-block .calendar-btn {
      display: inline-block;
      text-align: center;
      white-space: nowrap;
      vertical-align: middle;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      transition: color .15s ease-in-out,
 background-color .15s ease-in-out,
 border-color .15s ease-in-out,
 box-shadow .15s ease-in-out;
      font-family: 'Noto Sans', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 13px;
      color: #222221;
      background: transparent;
      border: none;
      text-transform: uppercase;
      margin: 0 5px; }
  .calendar-block-input .calendar-content-input {
    display: none; }

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0; }

.info-post {
  margin-top: 5px;	
  margin-bottom: 0;
  display: inline-block; }
  .info-post .time, .info-post .month, .info-post .location {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-size: 13px; }
  .info-post .time {
    font-weight: 700; }
  .info-post .month, .info-post .location {
    font-weight: 400; }

.main-news {
  margin-bottom: 28px; }
  .main-news a:hover h4 {
    border-bottom: 1px solid #BEBE00; }
  .main-news h4 {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    border-bottom: 1px solid transparent;
    margin-bottom: -5px; }
  .main-news .article-post {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: left; }
  .main-news .shortenbox h1{
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
  }
.main-block {
  min-height: 150px;
  height: auto;
  margin-bottom: 25px; }

.subnews p {
  height: 187px;
  overflow: hidden;
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  padding: 9px 18px 0 18px;
  background: #E9E9E9;
  margin-bottom: 23px; }
  .subnews p:after {
    content: '';
    display: block;
    height: 1px;
    width: calc(100% - 72px);
    background: #000000;
    position: relative;
    top: 3px;
    padding: 0;
    margin: 0; }

.section-news-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 175px;
  background: #BEBE00;
  cursor: pointer; }
  .section-news-item-img a {
    display: block;
    height: 100%; }
  .section-news-item-img img {

  }
/*.section-news-item-img .portrait-img {
  max-width: 1000px !important;
  height: 100% !important;
  max-height: 100%;
  position: unset;
  width: auto;
  object-fit: contain; }
.section-news-item-img .landshaft-img {
  max-width: 1000px !important;
  height: auto !important;
  width: 100%;
  object-fit: contain; }*/
.section-news-item-img img {
  max-width: 1000px !important;
  height: 100% !important;
  /*width: 100%;*/
  object-fit: contain; }
  .section-news-item-img:hover img {
    opacity: .7; }

.pagination-block .pagination {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0; }
  .pagination-block .pagination .number-page-block {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 3px; }
    .pagination-block .pagination .number-page-block .page-item {
      margin: 0 10px; }
      .pagination-block .pagination .number-page-block .page-item .pagination-link-number {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px; }
  li.page-item.active {
	    border: solid 1px #ccc;
	    padding: 6px 12px;
   }
  .pagination-block .pagination li .pagination-link,
  .pagination-block .pagination li .pagination-link-number {
    border: 1px solid #000000;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px; }
  .pagination-block .pagination li .pagination-link {
    padding: 4px 25px; }
  .pagination-block .pagination li .pagination-link-number {
    padding: 4px 9px; }
  .pagination-block .pagination li .pagination-link:hover,
  .pagination-block .pagination li .pagination-link-number:hover {
    border: 1px solid #BEBE00; }

.single-post .title-section {
  max-width: unset; }

.single-post article p {
  text-align: justify;
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 38px; }

  .single-post article p img {
    /*max-width: 390px;*/
    max-width: 100%;
    width: 100%;
    height: auto;
    /*float: left;*/
    margin-right: 30px; }

.single-post article h1 {
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
}

.tag-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px; }
  .tag-block .title-tag,
  .tag-block .tag-link {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-size: 18px;
    margin-right: 5px; }
  .tag-block .title-tag {
    font-weight: 700; }
  .tag-block .tag-link {
    font-weight: 400; }
    .tag-block .tag-link:hover {
      color: #BEBE00; }

/* ---------------------------------------------------
    FOOTER STYLE
----------------------------------------------------- */
footer {
  padding-bottom: 44px; }
  footer .footer-container {
    border-top: 1px solid #000000;
    padding-top: 30px; }
  footer .social-link-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    footer .social-link-block .social-footer-link {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #000000;
      border-radius: 15px;
      padding: 0px 29px;
      min-width: 140px;
      position: relative;
      font-family: 'Noto Sans', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      margin-bottom: 25px; }
      footer .social-link-block .social-footer-link:last-child {
        margin-bottom: 0; }
      footer .social-link-block .social-footer-link i {
        transition: all 0.3s;
        position: absolute;
        left: 16px;
        color: #222221; }
      footer .social-link-block .social-footer-link:hover {
        color: #BEBE00;
        border: 1px solid #BEBE00; }
        footer .social-link-block .social-footer-link:hover i {
          transition: all 0.3s;
          color: #BEBE00; }
  footer .footer-nav-block ul {
    padding-left: 0;
    list-style: none; }
    footer .footer-nav-block ul li a {
      display: inline-block;
      font-family: 'Noto Sans', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #000000;
      padding: 0 15px; }
      footer .footer-nav-block ul li a:hover {
        color: #BEBE00; }
  footer .footer-info-block p {
    text-align: left;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-bottom: 37px; }
    footer .footer-info-block p:last-child {
      margin-bottom: 0; }

/* ---------------------------------------------------
    ADMIN STYLE
----------------------------------------------------- */
.edit-form .form-control-label.form-control {
  min-height: 40px; }

/*** Pagination Ajax ***/
.pagination-block.light-theme.simple-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 20px; }
  .pagination-block.light-theme.simple-pagination ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0; }
    .pagination-block.light-theme.simple-pagination ul li {
      margin: 0 5px; }
      .pagination-block.light-theme.simple-pagination ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 25px;
        padding: 5px 9px;
        border: 1px solid #000000;
        font-family: 'Noto Sans', sans-serif;
        color: #000000;
        font-style: normal;
        font-weight: 400;
        font-size: 14px; }
        .pagination-block.light-theme.simple-pagination ul li a:hover {
          color: #000000;
          background: unset;
          border: 1px solid #BEBE00; }
      .pagination-block.light-theme.simple-pagination ul li:first-child {
        position: absolute;
        left: 35px;
        margin-left: 0; }
      .pagination-block.light-theme.simple-pagination ul li:last-child {
        position: absolute;
        right: 0;
        margin-right: 0; }
    .pagination-block.light-theme.simple-pagination ul li.disabled {
      border: 1px solid #000000;
      font-family: 'Noto Sans', sans-serif;
      color: #000000;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      padding: 2px 25px; }
    .pagination-block.light-theme.simple-pagination ul li.active {
      color: #BEBE00;
      font-weight: 700;
      font-family: 'Noto Sans', sans-serif;
      font-style: normal;
      font-size: 18px; }
      .pagination-block.light-theme.simple-pagination ul li.active span {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 25px;
        padding: 5px 9px; }

/*** Media ***/
@media (max-width: 575.98px) {
  aside {
    padding-left: 15px !important; }
  /* ---------------------------------------------------
     HEADER STYLE
  ----------------------------------------------------- */
  header .top-bar-header {
    padding: 15px 0 5px 0; }
    header .top-bar-header-left .header-social-block {
      display: none; }
    header .top-bar-header .logo-block {
      margin: 0 24px;
      position: relative;
      right: 10px; }
      header .top-bar-header .logo-block .desktop-logo {
        display: none; }
      header .top-bar-header .logo-block .mob-logo {
        display: block; }
    header .top-bar-header-right {
      position: relative; }
      header .top-bar-header-right .search-desktop {
        display: none; }
      header .top-bar-header-right .right-fixed-block {
        display: block;
        position: absolute;
        top: -8px;
        right: 5px; }
        header .top-bar-header-right .right-fixed-block .search-fly-wrap {
          z-index: 9999;
          background: #fff;
          -webkit-border-bottom-left-radius: 5px;
          -moz-border-bottom-left-radius: 5px;
          -ms-border-bottom-left-radius: 5px;
          -o-border-bottom-left-radius: 5px;
          border-bottom-left-radius: 5px;
          -webkit-border-bottom-right-radius: 5px;
          -moz-border-bottom-right-radius: 5px;
          -ms-border-bottom-right-radius: 5px;
          -o-border-bottom-right-radius: 5px;
          border-bottom-right-radius: 5px;
          -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -o-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          display: none;
          overflow: hidden;
          padding: 10px;
          position: absolute;
          top: 50px;
          right: -5px;
          width: 300px;
          height: 50px; }
          header .top-bar-header-right .right-fixed-block .search-fly-wrap #searchformMob input {
            font-size: 10px;
            color: #666666;
            background: rgba(0, 0, 0, 0.05);
            border: 0;
            float: left;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            line-height: 100%;
            padding: 2px 5%;
            width: 100%;
            height: 30px; }
  header .header-nav-container {
    display: none; }
  /* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
  #sidebar {
    max-width: 330px;
    left: -335px; }
  #dismiss {
    margin-left: 15px;
    margin-top: 15px; }
  .overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(102, 102, 102, 0.4);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out; }
  .overlay.active {
    display: block;
    opacity: 1; }
  #sidebar .sidebar-menu ul {
    padding-left: 15px;
    padding-top: 15px; }
  /* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
  .main-block {
    height: auto; }
  .main-news h4 {
    margin-top: 20px; }
  .section-news-item-img {
    overflow: hidden;
    height: 150px;
    padding: 0; }
    .section-news-item-img a {
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      width: 100%;
      height: auto; }
      .section-news-item-img a img {
        position: unset;
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: contain; }
  .pagination-block .pagination .number-page-block {
    display: none; }
  .pagination-block.light-theme.simple-pagination {
    margin-left: 0 !important; }
    .pagination-block.light-theme.simple-pagination ul {
      padding: 0; }
      .pagination-block.light-theme.simple-pagination ul li:first-child {
        left: 0; }
  .subnews p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 150px; }
  .single-post article p img {
    display: block;
    float: unset;
    margin-bottom: 30px; }
  /* ---------------------------------------------------
    FOOTER STYLE
----------------------------------------------------- */
  footer .footer-nav-block {
    margin-top: 1rem;
    margin-bottom: 0; }
    footer .footer-nav-block ul {
      text-align: center; }
  footer .social-link-block {
    align-items: center;
    margin-bottom: 1rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 100%; }
  aside {
    padding-left: 15px !important; }
  /* ---------------------------------------------------
     HEADER STYLE
  ----------------------------------------------------- */
  header .top-bar-header {
    padding: 15px 0 5px 0;
    position: relative; }
    header .top-bar-header-left .header-social-block {
      display: block;
      position: absolute;
      right: 36px; }
    header .top-bar-header .logo-block {
      margin: 0 24px;
      position: relative;
      right: 10px; }
      header .top-bar-header .logo-block .desktop-logo {
        height: 60px;
        width: auto;
        position: relative;
        right: 30px; }
      header .top-bar-header .logo-block .mob-logo {
        display: none; }
    header .top-bar-header-right {
      position: relative; }
      header .top-bar-header-right .search-desktop {
        display: none; }
      header .top-bar-header-right .right-fixed-block {
        display: block;
        position: absolute;
        top: -10px;
        right: 5px; }
        header .top-bar-header-right .right-fixed-block .search-fly-wrap {
          z-index: 9999;
          background: #fff;
          -webkit-border-bottom-left-radius: 5px;
          -moz-border-bottom-left-radius: 5px;
          -ms-border-bottom-left-radius: 5px;
          -o-border-bottom-left-radius: 5px;
          border-bottom-left-radius: 5px;
          -webkit-border-bottom-right-radius: 5px;
          -moz-border-bottom-right-radius: 5px;
          -ms-border-bottom-right-radius: 5px;
          -o-border-bottom-right-radius: 5px;
          border-bottom-right-radius: 5px;
          -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -o-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          display: none;
          overflow: hidden;
          padding: 10px;
          position: absolute;
          top: 50px;
          right: -5px;
          width: 300px;
          height: 50px; }
          header .top-bar-header-right .right-fixed-block .search-fly-wrap #searchformMob input {
            font-size: 10px;
            color: #666666;
            background: rgba(0, 0, 0, 0.05);
            border: 0;
            float: left;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            line-height: 100%;
            padding: 2px 5%;
            width: 100%;
            height: 30px; }
  header .header-nav-container {
    display: none; }
  /* ---------------------------------------------------
      CONTENT STYLE
  ----------------------------------------------------- */
  .main-block {
    height: auto; }
  .section-news-item-img {
    overflow: hidden;
    height: 150px;
    padding: 0; }
    .section-news-item-img a {
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      width: 100%; }
      .section-news-item-img a img {
        position: unset;
        max-width: 100%;
        height: 100% !important;
        width: auto;
        object-fit: contain; }
  .subnews p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 150px; }
  .pagination-block.light-theme.simple-pagination {
    margin-left: 0 !important; }
    .pagination-block.light-theme.simple-pagination ul {
      padding: 0; }
      .pagination-block.light-theme.simple-pagination ul li:first-child {
        left: 0; }
  .single-post article p img {
    display: block;
    float: unset;
    margin-bottom: 30px; }
  /* ---------------------------------------------------
      FOOTER STYLE
  ----------------------------------------------------- */
  footer .social-link-block {
    height: 100%;
    align-items: center; }
    footer .social-link-block .social-footer-link {
      width: 100%; }
  footer .footer-nav-block {
    margin-top: 1rem;
    margin-bottom: 0; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  aside {
    padding-left: 15px !important; }
  /* ---------------------------------------------------
   HEADER STYLE
----------------------------------------------------- */
  header .top-bar-header {
    padding: 15px 0 5px 0;
    position: relative; }
    header .top-bar-header-left .header-social-block {
      display: block;
      position: absolute;
      right: 36px; }
    header .top-bar-header .logo-block {
      margin: 0 24px;
      position: relative;
      right: 10px; }
      header .top-bar-header .logo-block .desktop-logo {
        height: 60px;
        width: auto;
        position: relative;
        right: 30px; }
      header .top-bar-header .logo-block .mob-logo {
        display: none; }
    header .top-bar-header-right {
      position: relative; }
      header .top-bar-header-right .search-desktop {
        display: none; }
      header .top-bar-header-right .right-fixed-block {
        display: block;
        position: absolute;
        top: -10px;
        right: 5px; }
        header .top-bar-header-right .right-fixed-block .search-fly-wrap {
          z-index: 9999;
          background: #fff;
          -webkit-border-bottom-left-radius: 5px;
          -moz-border-bottom-left-radius: 5px;
          -ms-border-bottom-left-radius: 5px;
          -o-border-bottom-left-radius: 5px;
          border-bottom-left-radius: 5px;
          -webkit-border-bottom-right-radius: 5px;
          -moz-border-bottom-right-radius: 5px;
          -ms-border-bottom-right-radius: 5px;
          -o-border-bottom-right-radius: 5px;
          border-bottom-right-radius: 5px;
          -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          -o-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
          display: none;
          overflow: hidden;
          padding: 10px;
          position: absolute;
          top: 50px;
          right: -5px;
          width: 300px;
          height: 50px; }
          header .top-bar-header-right .right-fixed-block .search-fly-wrap #searchformMob input {
            font-size: 10px;
            color: #666666;
            background: rgba(0, 0, 0, 0.05);
            border: 0;
            float: left;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            line-height: 100%;
            padding: 2px 5%;
            width: 100%;
            height: 30px; }
  header .header-nav-container {
    display: none; }
  button#sidebarCollapse {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px; }
  /* ---------------------------------------------------
      CONTENT STYLE
  ----------------------------------------------------- */
  .subnews p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 150px; }
  .pagination-block.light-theme.simple-pagination {
    margin-left: 0 !important; }
    .pagination-block.light-theme.simple-pagination ul {
      padding: 0; }
      .pagination-block.light-theme.simple-pagination ul li:first-child {
        left: 0; }
  /* ---------------------------------------------------
    FOOTER STYLE
----------------------------------------------------- */
  footer {
    margin-top: 44px; }
    footer .social-link-block {
      flex-direction: row; }
      footer .social-link-block .social-footer-link {
        margin-left: 20px; }
        footer .social-link-block .social-footer-link:first-child {
          margin-left: 0; }
    footer .footer-nav-block {
      margin-bottom: 70px; }
      footer .footer-nav-block ul li {
        float: left; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  header.sticky {
    position: unset; }
  button#sidebarCollapse {
    display: none; }
  .subnews p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 215px; } }

@media (min-width: 1200px) {
  header.sticky {
    position: unset; }
  button#sidebarCollapse {
    display: none; } }

#headerTop .fixed-logo-block,
#headerTop .right-fixed-block {
  display: none; }

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999; }

#headerTop.header-nav-container.sticky .fixed-nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative; }
  #headerTop.header-nav-container.sticky .fixed-nav-container .fixed-logo-block {
    display: inline-block; }
    #headerTop.header-nav-container.sticky .fixed-nav-container .fixed-logo-block img {
      width: 40px;
      height: 40px; }
  #headerTop.header-nav-container.sticky .fixed-nav-container .right-fixed-block {
    display: block;
    position: absolute;
    right: 15px; }
    #headerTop.header-nav-container.sticky .fixed-nav-container .right-fixed-block .search-fly-wrap {
      background: #fff;
      -webkit-border-bottom-left-radius: 5px;
      -moz-border-bottom-left-radius: 5px;
      -ms-border-bottom-left-radius: 5px;
      -o-border-bottom-left-radius: 5px;
      border-bottom-left-radius: 5px;
      -webkit-border-bottom-right-radius: 5px;
      -moz-border-bottom-right-radius: 5px;
      -ms-border-bottom-right-radius: 5px;
      -o-border-bottom-right-radius: 5px;
      border-bottom-right-radius: 5px;
      -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
      -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
      -o-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
      box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
      display: none;
      overflow: hidden;
      padding: 10px;
      position: absolute;
      top: 41px;
      right: 0;
      width: 300px;
      height: 50px; }
      #headerTop.header-nav-container.sticky .fixed-nav-container .right-fixed-block .search-fly-wrap #searchform input {
        font-size: 10px;
        color: #666666;
        background: rgba(0, 0, 0, 0.05);
        border: 0;
        float: left;
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        line-height: 100%;
        padding: 2px 5%;
        width: 100%;
        height: 30px; }
      #headerTop.header-nav-container.sticky .fixed-nav-container .right-fixed-block .search-fly-wrap #searchform #searchsubmit {
        border: none;
        float: left; }

#goTop {
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 0;
  border-radius: 5px;
  transform: translateY(-50%);
  padding: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  opacity: 0;
  transition: opacity 0.4s linear; }

#goTop.is-visible {
  opacity: 1; }
article img {
  max-width: 100%;
  height: auto;
}

article a{
  color: #BEBE00;
}

.poll-block .title-section {
  max-width: 100%;
  margin: 0;
  font-size: 19px;
}

.poll-block .poll-option {
  padding: 10px 35px;
}

.vote-bnt {
  border: 1px solid #000000;
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  padding: 4px 25px;
  background-color: transparent;
  border-radius: 0;
}

.vote-bnt:hover {
  border: 1px solid #BEBE00;
}