/*Boder Classes*/
.bd-top {
  border-top: 1px solid #eee;
}

.bd-bottom {
  border-bottom: 1px solid #eee;
}

.bd-left {
  border-left: 1px solid #eee;
}

.bd-right {
  border-right: 1px solid #eee;
}

/* Margin Class */
.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}


.padding-20 {
  padding: 20px 0;
}
.padding-30 {
  padding: 30px 0;
}
.padding-40 {
  padding: 40px 0;
}
.padding-50 {
  padding: 50px 0;
}
.padding-60 {
  padding: 60px 0;
}
.padding-70 {
  padding: 70px 0;
}
.padding-80 {
  padding: 80px 0;
}
.padding-90 {
  padding: 90px 0;
}

/*Transition Effect*/
a,
a:hover,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*Scrollbar Style*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: poSyne;
  background-color: var(--primary-color);
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

-webkit-::selection {
  background-color: var(--primary-color);
  color: #fff;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}

:root {
  --bs-accordion-btn-active-icon-white:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}

.scroll-to-top {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/*===================================================
  Video Section
====================================================*/
.thumb-carousel-wrap {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  margin-top: -110px;
}

.carousel-post {
  position: relative;
}

.carousel-post .post-text {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 200px;
}

.carousel-post .post-text .header {
  font-size: 36px;
  line-height: 1;
  color: var(--white-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.carousel-post .post-text .header span {
  width: 100%;
  height: 100%;
  border-bottom: 1px dashed var(--white-color);
}

.carousel-post .post-text .header span:nth-child(2) {
  display: inline-block;
  height: auto;
  border-bottom: none;
  text-align: center;
  white-space: nowrap;
}

.carousel-post .post-content {
  position: absolute;
  left: 350px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-post .post-content .title {
  /* font-size: 60px; */
  font-size: 40px;
  color: var(--white-color);
  max-width: 700px;
  line-height: 1.3;
}

.carousel-post .post-content .title a {
  color: var(--white-color);
  background: linear-gradient(var(--white-color) 0%, var(--white-color) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.carousel-post .post-content .title a:hover {
  background-size: 100% 2px;
}

.carousel-post .post-content .post-list {
  margin-top: 20px;
}

.carousel-post .post-content .post-list li:not(:last-of-type):after,
.carousel-post .post-content .post-list li a,
.carousel-post .post-content .post-list li {
  color: var(--white-color);
  font-weight: 200;
}

.carousel-post .post-content .post-list li a {
  font-weight: 500;
}

.carousel-post .video-btn {
  position: absolute;
  right: 350px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-post .video-btn a {
  background-color: var(--primary-color);
  font-size: 50px;
  color: var(--white-color);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.watch-section .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  bottom: 140px;
  right: 300px;
  z-index: 1;
}

.watch-section .swiper-arrow .swiper-nav {
  color: var(--white-color);
}

/* Carousel Thumb Area */

.carousel-thumb-post {
  position: relative;
}

.carousel-thumb-post .carousel-thumb img {
  width: 100%;
  /* border-radius: 7px; */
  border-radius: 0;
}

.carousel-thumb-post .thumb-content {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.carousel-thumb-post .thumb-content .thumb-video {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white-color);
  font-size: 20px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.thumb-carousel-wrap
  .swiper-slide.swiper-slide-thumb-active
  .thumb-content
  .thumb-video,
.carousel-thumb-post .thumb-content .thumb-video:hover {
  background-color: var(--primary-color);
}

.carousel-thumb-post .thumb-content .thumb-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
}

.carousel-thumb-post .thumb-content .thumb-title a {
  color: var(--white-color);
}

.carousel-thumb-post .thumb-time {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 5px 8px;
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (max-width: 1600px) {
  .carousel-post .post-content {
    left: 300px;
  }

  .carousel-post .video-btn {
    right: 300px;
  }

  .carousel-post .post-content .title {
    font-size: 50px;
  }
}

@media (max-width: 1400px) {
  .carousel-post .post-content .title {
    font-size: 45px;
  }

  .carousel-post .post-content {
    left: 200px;
  }

  .carousel-post .video-btn {
    right: 200px;
  }
}

@media (max-width: 1350px) {
  .carousel-thumb-post .thumb-content {
    bottom: 15px;
    left: 15px;
  }

  .carousel-thumb-post .thumb-content .thumb-title {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .carousel-post .post-content .title {
    font-size: 35px;
  }

  .carousel-post .post-content {
    left: 200px;
  }

  .carousel-post .video-btn {
    right: 200px;
  }
}

@media (max-width: 1100px) {
  .carousel-post .post-content .title {
    font-size: 30px;
    max-width: 400px;
  }

  .carousel-post .post-content {
    left: 150px;
  }

  .carousel-post .video-btn {
    right: 150px;
  }

  .thumb-carousel-wrap {
    margin-top: -70px;
  }

  .carousel-post .post-text {
    top: 50px;
  }

  .carousel-post .video-btn a {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 992px) {
  .carousel-post .post-text {
    top: 25px;
    right: 125px;
    left: 125px;
  }

  .carousel-post .post-text .header {
    font-size: 26px;
  }

  .thumb-carousel-wrap {
    margin-top: -40px;
  }

  .watch-section .swiper-arrow {
    right: 200px;
    bottom: 60px;
  }
}

@media (max-width: 767px) {
  .carousel-post {
    height: 500px;
  }

  .carousel-post .post-img {
    height: 500px;
  }

  .carousel-post .post-img img {
    height: 100%;
    object-fit: cover;
  }

  .carousel-post .post-content {
    left: 20px;
    top: 45%;
  }

  .carousel-post .post-text {
    left: 115px;
  }

  .carousel-post .post-text .header {
    flex-wrap: wrap;
  }

  .carousel-post .post-text .header span {
    display: none;
  }

  .carousel-post .video-btn {
    top: 78%;
    right: auto;
    left: 20px;
  }

  .carousel-thumb-post {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

/*===================================================
  Video Post Area
====================================================*/

.video-post-area {
  background-color: #131313;
}

.video-post-area .section-heading .section-title {
  color: var(--white-color);
  font-weight: 500;
}

.video-post-area .section-heading .section-title span {
  background-color: #131313;
}

.video-post-area .top-area .right-btn {
  background-color: #131313;
}

.video-post-area .top-area .right-btn .default-btn {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.video-post-area .top-area .right-btn .default-btn:hover {
  border: 1px solid var(--primary-color);
}

.video-post-wrap {
  position: relative;
  height: 100%;
}

.video-post-wrap .video-thumb {
  height: 100%;
  /* border-radius: 5px; */
  overflow: hidden;
}

.video-post-wrap .video-thumb img {
  height: 100%;
  object-fit: cover;
}

.video-post-wrap .video-btn a {
  background-color: #ed3410;
  color: var(--white-color);
  font-size: 40px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-post-wrap .video-btn a:hover {
  background-color: var(--white-color);
  color: #ed3410;
}

.video-post-wrap .post-card {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

.video-post-wrap .post-card .post-content .title {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 100%;
  margin-bottom: 10px;
}

.video-post-list .list-post-card .post-content .title a,
.video-post-wrap .post-card .post-content .title a {
  color: var(--white-color);
  background: linear-gradient(var(--white-color) 0%, var(--white-color) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.video-post-list .list-post-card .post-content .title a:hover,
.video-post-wrap .post-card .post-content .title a:hover {
  background-size: 100% 2px;
}

.video-post-wrap .post-card .post-content .post-list li a,
.video-post-wrap .post-card .post-content .post-list li {
  color: var(--white-color);
}

.video-post-list .list-post-card:not(:last-of-type) {
  margin-bottom: 34px;
  padding-bottom: 0;
  border: none;
}

.video-post-list .list-post-card .post-content .title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 7px;
}

.video-post-list .list-post-card .post-content .title a {
  color: var(--white-color);
}

.video-post-list .list-post-card .post-content .post-list li {
  color: #999999;
}

.video-post-list .list-post-card .post-content .post-list li span a {
  color: var(--white-color);
}

@media (max-width: 992px) {
  .video-post-wrap {
    margin-bottom: 40px;
  }

  .video-post-wrap .post-card {
    bottom: 30px;
    left: 40px;
  }

  .video-post-wrap .post-card .post-content .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .video-post-wrap .video-thumb img {
    height: 500px;
    object-fit: cover;
  }

  .video-post-wrap .post-card .post-content .title {
    font-size: 24px;
  }
}

/*===================================================
  Video Section
====================================================*/
.video-section {
  background-color: #131313;
}

.video-section .section-heading .section-title {
  text-align: center;
}

.video-section .section-heading .section-title span {
  background-color: #131313;
  padding: 0 40px;
  color: var(--white-color);
}

.video-section .video-container {
  max-width: 1840px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.video-post {
  /* border-radius: 10px; */
  overflow: hidden;
}

.video-post .post-thumb {
  position: relative;
  margin-bottom: 0;
}

.video-post .post-thumb .video-btn a {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 30px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-post .post-thumb .video-btn a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.video-post .post-thumb img {
  height: 300px;
}

.video-post .post-content {
  background-color: var(--white-color);
  padding: 30px;
}

.video-post .post-content .title {
  font-size: 24px;
  margin: 0 0 10px 0;
  max-width: 100%;
}

@media (max-width: 992px) {
  .video-post .post-content .title {
    font-size: 18px;
  }
}

/*** New CSS ***/

.theme-slide-template-four .carousel-post img {
  height: 796px !important;
  object-fit: cover;
  width: 100% !important;
}

.theme-slide-template-four .carousel-thumb img {
  height: 233px !important;
  object-fit: cover;
  width: 100% !important;
}

.new-grid-bottom-unique .post-list-grid-style-template-two.style-1 {
  padding-bottom: 0 !important;
}

.theme-slide-template-four .carousel-post .post-content .post-list li {
  color: var(--white-color) !important;
}

.custom-grid-any .post-list-style-template-three .travel-card-2.border-line {
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.post-list-style-template-four .post-img img {
  height: 70px !important;
  object-fit: cover;
}

.post-list-grid-style-template-video .post-img img {
  height: 70px !important;
}

.post-list-grid-style-illustration-three .post-thumb-2 img {
  height: 300px !important;
  width: 100% !important;
  object-fit: cover;
}

.sports-slider .carousel-card .post-img img {
  width: 100% !important;
}

.sports-slider .post-card ul.post-list li {
  color: #fff !important;
}

.theme-slide-template-four .carousel-post .post-img,
.theme-slide-template-four .carousel-thumb,
.post-list-grid-style-template-video .video-thumb,
.sports-slider .carousel-card .post-img {
  position: relative;
}

.theme-slide-template-four .carousel-post .post-img:before,
.theme-slide-template-four .carousel-thumb:before,
.sports-slider .carousel-card .post-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgb(0 0 0 / 70%); */
  background: rgb(0 0 0 / 50%);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 9;
}

.theme-slide-template-four .carousel-thumb:before {
  background: rgb(0 0 0 / 50%);
}

.theme-slide-template-four .carousel-post .post-text,
.theme-slide-template-four .carousel-post .video-btn,
.theme-slide-template-four .carousel-post .post-content,
.theme-slide-template-four .thumb-title,
.theme-slide-template-four .thumb-video,
.theme-slide-template-four .thumb-time,
.post-list-grid-style-template-video .post-card,
.sports-slider .post-content {
  z-index: 9;
}

.bg-varag {
  background-color: var(--varag-color);
}

.top-bar {
  background-color: var(--varag-color);
}

.bottom-header .site-logo a img {
  max-width: 150px;
}

@media (max-width: 992px) {
  .site-logo {
    max-width: 170px;
  }
}

.post-area-wrap {
  display: grid;
  grid-template-columns: 1fr 645px 1fr;
  grid-gap: 15px;
}

.post-carousel-wrap .post-card-wrap {
  display: flex;
  justify-content: space-between;
}
.post-carousel-wrap .post-card-wrap .post-card {
  margin-bottom: 0;
  max-width: 315px;
}
.post-card .post-thumb:last-child,
.post-carousel-wrap .post-card-wrap .post-card .post-thumb {
  margin-bottom: 0;
}
.post-carousel {
  height: 510px;
  /* margin-bottom: 25px; */
}
.post-carousel-card .post-carousel-content .title {
  font-size: 26px;
  max-width: 540px;
}
.post-carousel-card.card-2 .post-carousel-thumb:before {
  background: linear-gradient(
    180deg,
    rgba(99, 92, 92, 0) 0,
    hsl(0deg 0% 13.88% / 99%)
  );
  filter: none;
}

.post-carousel-card .post-carousel-thumb:before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    hsl(0deg 0% 7% / 100%)
  );
  filter: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.tab-wrap {
  padding: 15px 15px 0 15px;
}

.tab-wrap .nav-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tab-wrap .nav-item .nav-link,
.tab-wrap .nav-item .nav-link.active {
  width: 100%;
}

.list-post-card .post-content .title {
  font-size: 13px;
  font-weight: 400;
}

.editor-post-card .post-content .title,
.editor-post-card .post-content p {
  max-width: 430px;
}

.banner-sidebar {
  margin-bottom: 20px;
}

.list-post-area.list-2 .list-post-card .post-content .title {
  font-size: 16px;
  font-weight: 500;
}

h3.categorie-title {
  margin-bottom: 60px;
}

.news-post .news-post-btn {
  border: 1px solid var(--varag-color);
  color: var(--varag-color);
}
.news-post .news-post-btn:hover {
  background-color: var(--varag-color);
}

[data-theme="dark"] .news-post .news-post-btn {
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
}
[data-theme="dark"] .news-post .news-post-btn:hover {
  background-color: var(--accent-yellow);
  color: var(--white-color);
}

.news-post .post-content h3.title {
  line-height: 1.2;
}
.news-post p {
  font-size: 14px;
}

/* .watch-section .carousel-post .post-img img {
  filter: brightness(50%);
} */

/* Single page news */
.page-header-content ul li a:hover {
  color: var(--varag-color);
}

blockquote span:before {
  background-color: var(--varag-color);
}

.post-layout-content .layout-img-wrap img {
  /* border-radius: 6px; */
}
.post-layout-content .news-link-box {
  /* border-radius: 6px; */
  padding: 20px 30px;
  box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.post-layout-content .news-link-box p {
  margin-bottom: 0;
}

.post-layout-content .news-link-box p a {
  font-family: var(--body-font);
  color: var(--varag-color);
  font-style: italic;
  font-weight: 500;
}
.about-section p a,
.post-layout-content p a {
  color: var(--varag-color);
}

[data-theme="dark"] .about-section p a,
[data-theme="dark"] .post-layout-content p a {
  color: var(--varag-yellow);
}

.content-list-2 li {
  align-items: flex-start;
}
.content-list-2 li i {
  color: var(--varag-color);
}

.article-wrap .article-item .article-thumb a:hover {
  color: var(--varag-color);
}

.categorie-wrap.sticky {
  position: sticky;
  top: 100px;
}

.categorie-wrap .categorie-list li:before {
  background-color: var(--varag-color);
}

.about-content h3.title {
  font-size: 32px;
}

.page-header-content {
  padding: 10px 0;
}
.page-header-content ul li a {
  font-size: 14px;
}

.mid-header-wrap .mid-header-left ul li a {
  font-size: 26px;
}
/* .mid-header-wrap .mid-header-left ul li a.varag {
  border: 1px solid #004471;
  color: #004471;
}

.mid-header-wrap .mid-header-left ul li a.radio {
  border: 1px solid #f1af00;
  color: #f1af00;
} */

/* .mid-header-wrap .mid-header-left ul li a.varag:hover,
.mid-header-wrap .mid-header-left ul li a.radio:hover {
  background-color: #ffffff;
} */


/* соцсети в футере */

ul.footer-social-items {
  display: flex;
  grid-gap: 10px;
}

ul.mobile-menu-social-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
}

ul.footer-social-items li a {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #004471;
  border-radius: 50%;
}





ul.footer-social-items li a.varag {
  border: 1px solid #004471;
  color: #004471;
}
ul.footer-social-items li a.radio {
  border: 1px solid #ff9900;
}
ul.footer-social-items li a.instagram {
  border: 1px solid #e1306c;
  color: #e1306c;
  font-size: 26px;
}

ul.footer-social-items li a.telegram {
  border: 1px solid #24A1DE;
  color: #24A1DE;
  font-size: 26px;
}
ul.footer-social-items li a.telegram:hover {
  background-color: #24A1DE;
  color: var(--white-color);
}
ul.footer-social-items li a.vk {
  border: 1px solid #0077FF;
  color: #0077FF;
  font-size: 26px;
}

ul.footer-social-items li a.vk:hover {
  background-color: #0077FF;
  color: var(--white-color);
}

ul.footer-social-items li a.odnoklassniki {
  border: 1px solid #FF7700;
  color: #FF7700;
  font-size: 26px;
}

ul.footer-social-items li a.odnoklassniki:hover {
  background-color: #FF7700;
  color: var(--white-color);
}
ul.footer-social-items li a.viber {
  border: 1px solid #7360f2;
  color: #7360f2;
  font-size: 26px;
}

ul.footer-social-items li a.viber:hover {
  background-color: #7360f2;
  color: var(--white-color);
}

ul.footer-social-items li a.varag:hover {
  background-color: #00253d;
}
ul.footer-social-items li a.radio:hover {
  background-color: #493311;
}
ul.footer-social-items li a.instagram:hover {
  background-color: #e1306c;
  color: var(--white-color);
}


.mid-header-wrap .mid-header-left ul li a.viber {
    border: 1px solid #7360f2;
    color: #7360f2;
}


.mid-header-wrap .mid-header-left ul li a.viber:hover {
    background-color: #7360f2;
    color: var(--white-color);
}

ul.mobile-menu-social-items li a {
  padding: 2px;
}
ul.mobile-menu-social-items li a img {
  width: auto;
  height: 50px;
}
.mobile-navigation-menu ul li > a.instagram {
  font-size: 42px;
  color: #e1306c;
}

.mobile-navigation-menu ul li > a.odnoklassniki {
  color: #FF7700;
  font-size: 42px;
  border: 2px solid #FF7700;
  border-radius: 50%;
}
.mobile-navigation-menu ul li > a.viber {
  color: #7360f2;
  font-size: 42px;
  border: 2px solid #7360f2;
  border-radius: 50%;
}

.mobile-navigation-menu ul li > a.vk {
  color: #0077FF;
  font-size: 42px;
  border: 2px solid #0077FF;
  border-radius: 50%;
}

.mobile-navigation-menu ul li > a.telegram {
  color: #24A1DE;
  font-size: 42px;
  border: 2px solid #24A1DE;
  border-radius: 50%;
}



/* footer */
.footer-item h3.footer-header {
  font-size: 26px;
}
.copyright-wrap p {
  font-size: 12px;
  line-height: 16px;
}

.footer-item .contact-list > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  line-height: 25px;
}

.footer-item img.logo-footer {
  margin-bottom: 30px;
}
.footer-content ul.footer-menu li {
  margin-bottom: 15px;
}
.footer-content ul.footer-menu li a {
  color: var(--white-color);
}


.post-layout-content .layout-thumb img {
  /* border-radius: 6px; */
}

.trending-area {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
}

.post-area-right-2 {
  order: 1;
}
.post-carousel-wrap {
  order: 2;
}
.post-area-right-2.tab-wrap {
  order: 3;
}

.post-layout-content p iframe {
  max-width: 100%;
}


.header-icons-light {
  display: none;
}
[data-theme="dark"] .header-icons-light {
  display: block;
}
[data-theme="dark"] .header-icons-dark {
  display: none;
} 


.site-logo a.logo img {
  height: auto;
}



[data-theme="dark"] h1,
[data-theme="dark"] h1 > a,
[data-theme="dark"] h2,
[data-theme="dark"] h2 a,
[data-theme="dark"] h3,
[data-theme="dark"] h3 a,
[data-theme="dark"] h4,
[data-theme="dark"] h4 a,
[data-theme="dark"] h5,
[data-theme="dark"] h5 a {
  color: var(--white-color);
}




.hero-post-area.area-2 .post-area-wrap {
  display: grid;
  grid-template-columns: 620px repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}

.poppost-card-1 { grid-area: 1 / 1 / 7 / 2; }
.poppost-card-2 { grid-area: 1 / 2 / 4 / 3; }
.poppost-card-3 { grid-area: 4 / 2 / 7 / 3; }
.poppost-card-4 { grid-area: 1 / 3 / 2 / 4; }
.poppost-card-5 { grid-area: 2 / 3 / 3 / 4; }
.poppost-card-6 { grid-area: 3 / 3 / 4 / 4; }
.poppost-card-7 { grid-area: 4 / 3 / 5 / 4; }
.poppost-card-8 { grid-area: 5 / 3 / 6 / 4; }
.poppost-card-9 { grid-area: 6 / 3 / 7 / 4; }


.post-area-wrap.wrap-2 .list-post-card .post-img {
  width: 120px;
  height: 90px;
  /* border-radius: 5px; */
  border-radius: 0;
  object-fit: cover;
}
.post-area-wrap.wrap-2 .list-post-card {
  grid-template-columns: 120px 1fr;
}

.post-area-wrap.wrap-2 .list-post-card .post-content span {
    font-size: 13px;
    line-height: 1;
}
.post-area-wrap.wrap-2 .list-post-card .post-content .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    max-width: inherit;
    width: 100%;
}

.top-area .right-btn .default-btn {
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
}


[data-theme="dark"] .post-layout-content,
[data-theme="dark"] .post-content {
  color: var(--dark-grey-1);
}

[data-theme="dark"] .bg-grey-2, [data-theme="dark"] .hero-post-area.area-2 .section-heading .section-title span, [data-theme="dark"] .top-area .right-btn {
    background-color: var(--theme-bg-dark-2);
}
[data-theme="dark"] .recent-post-area .top-area .right-btn, [data-theme="dark"] .top-area .right-btn {
    background-color: var(--theme-bg-dark-2);
}


.post-layout-content img {
    height: auto;
}


.post-area-wrap.wrap-2 .list-post-card .post-img a img {
    object-position: center -15px;
}


.gazet-container {
  display: flex;
  
}


.categorie-wrap .categorie-list li:after {
    background-color: var(--bg-dark);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    visibility: visible;
    opacity: 0.4;
    z-index: -2;
    transition: all 0.3s ease-in-out;
}



.article-wrap .article-item .article-thumb a {
  font-size: 16px;
}
 .adminpanel {
    bottom: 10px;
    left: 10px;
    position: fixed;
    z-index: 99;
}
.adminpanel-create {
    bottom: 80px;
    left: 10px;
    position: fixed;
    z-index: 99;
}
.adminpanel-create a,
.adminpanel a {
    background: rgba(0,0,0,.502);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    text-decoration: none;
}




.top-bar {
  background-color: #FFCC00;
}
.top-bar-wrap .top-bar-left ul li a,
.top-bar-right .date {
  color: var(--heading-color);
}


.site-logo-stycky a.logo img {
  height: auto;
  max-width: 120px;
}


.trending-item .trending-thumb {
  max-width: 100%;
}
.trending-area .banner-item {
  padding-bottom: 10px;
}

/* футер */

img.logo-footer {
  max-width: 350px;
}



/* страница новости */

.post-layout-content > ul {
  margin-left: 40px;
  padding-bottom: 10px;
}

.post-layout-content ul {
  margin-bottom: 10px;
}

.post-layout-content ol ul li {
  /* margin-left: 10px; */
}

.post-layout-content ul.ya-share2__list {
  /* list-style: initial; */
  margin-bottom: 0;
  margin-bottom: 10px;
}





@media (max-width: 480px) {
  .logo-center {
    width: 100%;
    text-align: center;
  }
  img.logo-footer {
    max-width: 300px;
    
  }
}

.tab-wrap .nav-item .tab1.active {
  background-color: #FFCC00;
  color: var(--heading-color);
}
.tab-wrap .nav-item .tab2.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/* breadcrumbs */

.breadcrumb {
  margin-bottom: 0;
}
ul.breadcrumb li {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
ul.breadcrumb li a {
  font-weight: 400;
  color: var(--varag-color-2);
}

/* пагинация */


.pagination-list li.btn-pagination-first,
.pagination-list li.btn-pagination-last {
  height: 40px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  
}
.pagination-list li.btn-pagination-first.disable,
.pagination-list li.btn-pagination-last.disable {
  height: 40px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  transition: all 0.3s ease-in-out;
  
}
.pagination-list li.btn-pagination-first a,
.pagination-list li.btn-pagination-last a {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* секция видео */

.carousel-thumb-post .thumb-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}



span.read-allnews-btn {
  display: flex;
  margin: 20px 0 0 0;
  justify-content: center;
}


.post-layout-content p video {
  max-width: 100%;
}


.editor-blog-area {
    padding-bottom: 0;
}


/* оформление каталога */

.pokat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pokat-links--item {
  border: 1px var(--varag-color) dashed;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  transition: all 0.5s;
}
.pokat-links--item:hover {
  border: 1px var(--varag-yellow) dashed;
  
}
.pokat-links--item a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  
}
.pokat-links--item a:hover {
  color: var(--varag-color);
}


.pokat-links--bg {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px; */
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  
}

.pokat-links--bg > .pokat-links--item {
  /* width: 32%; */
  text-align: center;
  border: none;
  height: 65px;
  background-size: cover;
} 
.pokat-links--bg > .pokat-links--item a {
  color: var(--white-color);
  padding: 10px 0;
  font-weight: 600;
  height: 100%;
  align-content: center;
  display: block;
  backdrop-filter: brightness(60%);
  border-radius: 6px;
}
.pokat-links--bg > .pokat-links--item a:hover {
  color: var(--varag-yellow);
}

.news-post.catalog-post-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-gap: 20px;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--border-2);
  border-radius: 5px;
}

.news-post.catalog-post-item .post-thumb {
  height: 180px;
}

.news-post.catalog-post-item .post-content .title {
  margin: 0;
  font-size: 20px;
}
.catalog-post-item .post-content {
  display: flex;
  flex-direction: column;
  
}

.catalog-gen-container {
  /* display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap; */
  columns: 400px;
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px; */
}

.catalog-gen-container .subcat-container {
  display: grid;
  grid-template-columns: 55px 1fr;
  grid-gap: 30px 20px;
  box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0 12px -5px rgba(0, 0, 0, 0.3);
  padding: 15px;
  /* width: 49%; */
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
}

.subcat-items h3.subcat-title {
    margin-top: 10px;
}

.subcat-items h3.subcat-title a:hover {
  color: var(--varag-color);
}

.subcat-items span.subcat-item-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.subcat-items span.subcat-item-title i {
  font-size: 20px;
  color: var(--varag-color);
}
.subcat-items span.subcat-item-title a {
  display: block;
  margin-left: 10px;
  font-weight: 500;
}
.subcat-items span.subcat-item-title a:hover {
  color: var(--varag-color);
}


.trending-post-wrap .list-post-area.list-2 .list-post-card .post-img {
  width: 130px;
  height: 130px;
}


@media (max-width: 460px) {
  .news-post.catalog-post-item {
    display: flex;
    flex-direction: column;
    gap: 30px 20px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
  }
}

/* сайдбар */

.trending-post-wrap .list-post-area.list-2 .list-post-card.list-post-card-catalog {
    grid-template-columns: 95px 1fr;
}

.trending-post-wrap .list-post-area.list-2 .list-post-card-catalog .post-img {
  width: 95px;
  height: 75px;
}

.trending-post-wrap .list-post-area.list-2 .list-post-card.list-post-card-noimg {
    grid-template-columns: 1fr;
}


.trending-post-wrap .list-post-area.list-2 .list-post-card.list-post-card-noimg .post-content .title {
  position: relative;
  padding-left: 15px;
}

.trending-post-wrap .list-post-area.list-2 .list-post-card.list-post-card-noimg .post-content .title:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--varag-color);
}
/* .trending-post-wrap .list-post-area.list-2 .list-post-card.list-post-card-noimg .post-content .title a {
  padding-left: 10px;
} */

.search-cat-form form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.search-cat-form input {
  height: 50px;
  border-radius: 6px;
  padding: 0 15px;
  border: 1px var(--grey-color-2) solid;
  width: 100%;
}

.search-cat-form button {
  padding: 10px 15px;
  border-radius: 6px;
  color: var(--white-color) ;
  background-color: var(--varag-color);
}
.search-cat-form button:hover {
  background-color: var(--blue-color-2);
}







/* СТРАНИЦА КОМПАНИИ */

.cat-page-header-contacts-container {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.cat-page-header-contact {
  display: flex;
  flex-direction: column;
  
}

.cat-page-header-contact:first-child {
    max-width: 50%;
}

.cat-page-header-contact span a {
  color: var(--varag-color);;
}
.cat-page-header-contact img {
  width: 125px;
  height: auto;
  margin-bottom: 15px;
}
.cat-page-header-contact ul {
  display: flex;
    align-items: center;
    column-gap: 6px;
}
.cat-page-header-contact ul a {
  height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
}
.cat-page-header-contact ul li a.instagram {
     border: 1px solid #e1306c;
    color: #e1306c;
}
.cat-page-header-contact ul li a.instagram:hover {
     border: 1px solid #e1306c;
     background-color: #e1306c;
    color: #fff;
}
.cat-page-header-contact ul li a.vk {
      border: 1px solid #0077FF;
    color: #0077FF;
}
.cat-page-header-contact ul li a.vk:hover {
      border: 1px solid #0077FF;
      background-color: #0077FF;
    color: #fff;
}
.cat-page-header-contact ul li a.odnoklassniki {
  border: 1px solid #FF7700;
    color: #FF7700;
}
.cat-page-header-contact ul li a.odnoklassniki:hover {
  border: 1px solid #FF7700;
  background-color: #FF7700;
    color: #fff;
}

.cat-page-header-bg {
  background-image: url(../img/techload/catalogicons/pubbg.jpg);
  height: 655px;
  background-size: cover;
}

.cat-page-header-bg-logo {
  display: flex;
  justify-content: center;
}
.cat-page-header-bg-logo img {
  margin-top: 30px;
  width: 200px;
  max-height: 200px;
  height: auto;
  object-fit: contain;
  
}

.cat-page-header-bg,
.cat-page-header-bg h4,
.cat-page-header-bg .single-card .post-content .title,
.cat-page-header-bg h3.title,
.cat-page-header-bg .single-card .post-content p {
      color: var(--white-color);
}

.cat-page-header-bg .cat-page-header-contact span a {
  color: var(--varag-yellow);
  font-weight: 500;
}


.cat-page-header-contact span.worktime {
  white-space: pre-line;
}




@media (max-width: 460px) {
  .cat-page-header-contacts-container {
    flex-wrap: wrap;
  }
  .cat-page-header-contact:first-child {
    max-width:100%;
}
  .catalog-gen-container .subcat-container {
    width: 100%;
  }
  .pokat-links--bg > .pokat-links--item a {
    font-size: 14px;
    line-height: 20px;
  }
  .cat-page-header-bg {
    height: auto;
    padding-bottom: 30px;
  }
  .cat-page-header-bg-logo {
    margin-bottom: 30px;
  }
  .cat-page-header-contacts-container {
    gap: 20px;
  }
  .mob-margin {
    display: block;
    margin-bottom: 30px;
  }
  
}





/* кнопки в шапке сайта */

.mid-header-left.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
  }
[data-theme="dark"] .mid-header-left.header-btn span a {
  color: var(--white-color);
}  

@media (max-width: 460px) {
  .mid-header-left.header-btn {
    display: none;
  }
  
  
}


/* кнопки в мобильном меню */
.mob-nav-button {
    display: flex;
    justify-content: space-around;
    
}
.mob-nav-button.top-btn {
    display: flex;
    justify-content: flex-start;
    margin-left: 38px;
}
.mob-nav-button span {
  display: block;
  /* margin-left: 20px; */
  border-radius: 6px;
  border: 1px var(--varag-color) solid;
}


.mob-nav-button span a {
  display: block;
  color: var(--varag-color);
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  /* font-family: var(--title-font); */
  text-transform: uppercase;
}
    
.mob-nav-info {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.mob-nav-info span a {
  color: var(--varag-color);
  font-weight: 500;
}


.mobile-navigation-menu ul li.active a {
  color: var(--varag-color);
}










/* темная тема */
[data-theme="dark"] .mobile-navigation-menu ul.mob-nav-menu-wrapper li a {
    color: var(--white-color);
}
[data-theme="dark"] .mobile-navigation-menu ul li.active a {
    color: var(--varag-yellow);
}


 /* Контейнер, который будет содержать триггер и скрытый блок */
.dropdown-container {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

/* Стиль для триггера (три точки) */
.showmenu {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    padding: 5px;
}

/* Скрытый блок (изначально невидим) */
.hidden-block {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 10px;
  background-color: var(--grey-color-3);
  border: 1px solid var(--grey-color-3);
  min-width: 200px;
  z-index: 10;
  transition: 
      opacity 0.5s ease,
      visibility 0.5s ease;
}

/* Показываем блок при наведении на .showmenu или на сам блок */
.dropdown-container:hover .hidden-block {
  opacity: 1;
  visibility: visible;
}
.showmenu:before {
  background-color: var(--primary-color);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
}
.showmenu:hover {
  color: var(--primary-color);
}
.showmenu:hover:before {
  transform: scaleX(1);
}
ul.main-menu.hidden-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
ul.main-menu.hidden-menu li {
  margin-bottom: 17px;
  padding-left: 10px;
  
}
ul.main-menu.hidden-menu li a {
  width: 100%;
}


















.mid-header-left.header-btn span {
  border: 1px #FFCC00 solid;
  border-radius: 6px;
  height: 35px;
}  
.mid-header-left.header-btn span a {
  display: block;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 600;
  /* font-family: var(--title-font); */
  text-transform: uppercase;
}

span.header-btn-menu.header-btn-menu-blue {
  border: 1px var(--varag-color) solid;
}
span.header-btn-menu.header-btn-menu-yellow {
  border: 1px var(--varag-yellow) solid;
}
span.header-btn-menu {
  display: block;
  margin-left: 20px;
  border-radius: 6px;
  height: 35px;
}
span.header-btn-menu.btn-left {
  display: block;
  margin-left: 0;
  margin-right: 10px;
  border-radius: 6px;
  height: 35px;
}

span.header-btn-menu a {
  display: block;
  color: var(--varag-color);
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 600;
  /* font-family: var(--title-font); */
  text-transform: uppercase;
}



.catalog-post-item .post-thumb img {
    width: 300px;
    height: auto;
    /* border-radius: 5px; */
    border-radius: 0;
}

a.catalog-post-item-linkwrapper {
  display: block;
}




@media (max-width: 1220px) {
  span.header-btn-menu {
    margin-left: 0;
  }
  span.header-btn-menu a {
    display: block;
    color: var(--varag-color);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .dropdown-container {
    margin-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  span.header-btn-menu {
    margin-left: 0;
  }
  span.header-btn-menu a {
    display: block;
    color: var(--varag-color);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .dropdown-container {
    margin-left: 0;
  }
}


/* END оформление каталога */


/* Accordion */





.accordion {
  --bs-accordion-active-bg: var(--varag-color-2);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-white);
    background-color: var(--bs-accordion-active-bg);
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button:not(.collapsed):after {
    background-image: var(--bs-accordion-btn-active-icon-white);
}

.accordion-button {
  font-size: 20px;
  font-weight: 500;
}

.accordion-flush .accordion-item .accordion-button {
  height: 60px;
  background-color: var(--varag-color-2);
}


.accordion-flush .accordion-item .accordion-button.collapsed {
  height: 60px;
  background-color: var(--grey-color-3);
}
.accordion-body {
    border: 1px solid var(--varag-color-2);
}



/* Accordion END */


/* 404 page */

.error-content img {
  max-width: 40%;
}


/* виджет погоды */
#ww_66e81dbeafcd4 .ww-box[max-width~="768px"] .ww_col1 {
  padding: 0 !important;
}

#ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .ww_col1 {
  flex-wrap: nowrap !important;
}
#ww_66e81dbeafcd4 .current-temp,
#ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-temp,
#ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-name {
  margin-bottom: 15px !important;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--body-font), sans-serif;
  height: 27px !important;
}

#ww_66e81dbeafcd4 .current-temp {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 13px !important;
  
  font-family: var(--body-font), sans-serif !important;
  height: 27px !important;
}
#ww_66e81dbeafcd4 .current-temp span {
  top: 0 !important;
}
#ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-temp,
#ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-temp,
#ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-temp,
#ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-name,
#ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-name,
#ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-name {
  line-height: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#ww_66e81dbeafcd4 .ww_source {
  display: none !important;
}
@media (max-width: 460px) {
  #ww_66e81dbeafcd4 .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-name {
    font-size: 10px !important;
  }
  #ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-name,
  #ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-name,
  #ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-name {
    line-height: 12px !important;
  }
}

@media (max-width: 320px) {
  #ww_66e81dbeafcd4 .ww-box {
    min-width: 50px !important;
  }
  #ww_66e81dbeafcd4 .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="329px"] .current-name {
    font-size: 8px !important;
  }
  #ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-temp,
  #ww_66e81dbeafcd4 .ww-box[max-width~="200px"] .current-name,
  #ww_66e81dbeafcd4 .ww-box[max-width~="180px"] .current-name,
  #ww_66e81dbeafcd4 .ww-box[max-width~="128px"] .current-name {
    line-height: 8px !important;
  }
}



/* END виджет погоды */
@media (max-width: 1399px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
  }
  .bottom-header .site-logo a img {
    max-width: 120px;
  }
  .main-menu {
    column-gap: 15px;
  }
  .hero-post-area {
    padding: 0 0 90px;
  }
}

@media (max-width: 1366px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
  }
  .bottom-header .site-logo a img {
    max-width: 120px;
  }
  .main-menu {
    column-gap: 15px;
  }
  .hero-post-area {
    padding: 0 0 90px;
  }
}

@media (max-width: 1200px) {
  .sec-allnews-container {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
  }
  .news-post:last-of-type {
    margin-bottom: 20px;
  }
  .navigation-menu {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1180px) {
  .post-area-wrap {
    display: flex;
    flex-direction: column;
  }
  .post-card-wrap {
    display: flex;
    justify-content: space-between;
  }


  .hero-post-area.area-2 .post-area-wrap {
    display: flex;
  }
  .post-area-right {
    grid-template-columns: 2fr 1fr;
}
.categorie-thumb img {
  height: auto;
}
  .navigation-menu {
    padding: 0;
    column-gap: 15px;
  }
  .bottom-header .site-logo a img {
    display: none;
  }
  [data-theme="dark"] .bottom-header .site-logo .dark,
  [data-theme="dark"] .bottom-header .site-logo .light {
    display: none;
  }
  .main-menu {
    column-gap: 15px;
  }
  .main-menu li a {
    font-size: 12px;
  }
  .post-area-right-2 {
    order: 2;
  }
  .post-carousel-wrap {
    order: 1;
  }
  .post-area-right-2.tab-wrap {
    order: 3;
  }
  
  .no-wrap-text {
    /* white-space: nowrap; */
    overflow: hidden;
    min-width: 80px;
  }
  .navigation-inner {
      grid-column-gap: 10px;
  }
}
/* @media (max-width: 1024px) {
  .navigation-menu {
    padding: 0;
  }
  .main-menu {
    column-gap: 15px;
  }
  .main-menu li a {
    font-size: 12px;
  }
  .bottom-header .site-logo a img {
    display: none;
  }
  
} */



@media (max-width: 992px) {

  /* перенос пунктов меню в sticky меню при прокрутке, если не скрывать логотип */
  /* .main-menu, .main-menu li {
    display: flex;
    align-items: center;
    height: 62%; 
    flex-wrap: wrap;
  } */
  
  #mobile-menu-close {
    z-index: 99;
  }
  .post-area-wrap {
    display: flex;
    flex-direction: column;
  }
  .post-card-wrap {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
  }
  .post-area-right {
    grid-template-columns: 1fr;
  }

  .mobile-menu-icon .line-menu {
    background-color: var(--primary-color);
  }

  .list-post-area.video-post-list {
    margin-top: 60px;
  }

  .recent-post-area.post-list-grid-style-template-one .news-post .post-thumb img,
  .post-list-style-template-two .news-post .post-thumb img {
    width: 100% !important;
  }
  .categorie-thumb img {
    height: auto;
  }
  h3.categorie-title {
    margin-bottom: 20px;
  }
  .hero-post-area.area-2 .post-area-wrap {
    display: flex;
    flex-wrap: wrap;
      
  }
  
  .hero-post-area.area-2 .post-area-wrap .post-carousel-card {
    margin-bottom: 30px;
  }
  .hero-post-area.area-2 .post-area-wrap .post-card {
    margin-bottom: 65px;
  }
  
  .hero-post-area.area-2 .post-area-wrap .post-card
  .hero-post-area.area-2 .post-area-wrap .list-post-card:not(:last-of-type) {
      padding-bottom: 10px;
      margin-bottom: 10px;
  }
  
  .list-post-card:not(:last-of-type) {
    padding-bottom: 15px;
    /* margin-top: 15px; */
  }
  .hero-post-area.area-2 .post-area-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .hero-post-area.area-2 .post-area-wrap .post-card,
  .hero-post-area.area-2 .post-area-wrap .list-post-card {
    max-width: 45%;
  }
  .post-card .post-content .title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 0;
    max-width: 100%;
    width: 100%;
  }
 .section1-sidebar {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-column-gap: 10px;
  }
  

  
  [data-theme="dark"] .mobile-navigation-menu {
    background-color: var(--dark-color);
  }
  
  [data-theme="dark"] #mobile-menu-close {
    color: var(--white-color);
  }
  .post-area-right-2 {
    order: 2;
  }
  .post-carousel-wrap {
    order: 1;
  }
  .post-area-right-2.tab-wrap {
    order: 3;
  }
  .post-card .post-thumb img {
    height: auto;
  }
  span.read-allnews-btn {
    margin: 20px 0 20px 0;
  }
  
  .mobile-navigation-menu {
    background-color: var(--white-color);
    border-right: 1px solid #eee;
    position: fixed;
    left: -100%;
    top: 0;
    /* width: 400px; */
    width: 100%;
    height: 100vh;
    padding: 60px 0 50px;
    box-shadow: var(--shadow-sm);
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    overflow-y: scroll;
    z-index: 1000;
  }
  .mid-header-left.header-btn span a {
    padding: 3px 10px;
    font-size: 11px;
  }
  .site-logo {
    max-width: 220px;
  }
}




@media (max-width: 768px) {
  .post-area-wrap {
    display: flex;
    flex-direction: column;
  }
  .post-card-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 10px;
  }
  
  .theme-subscribe-style-one .subscribe-content .subscribe-form .default-btn {
    border: 0px solid;
    top: 2px;
    right: 2px;
    transform: none;
    padding: 19px 28px 19px 60px;
  }

  .theme-subscribe-style-one .subscribe-form .lab.la-telegram-plane {
    right: 118px;
    top: 19px;
  }

  .recent-post-area.post-list-grid-style-template-one
    .news-post
    .post-thumb
    img,
  .post-list-style-template-two .news-post .post-thumb img {
    width: 100% !important;
  }

  section.news-area.theme-slide-template-three {
    display: none;
  }

  ul.wp-block-latest-posts li {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .section-heading .section-title {
    font-size: 22px;
    line-height: 36px;
  }
  .post-area-right-2 {
    order: 2;
  }
  .post-carousel-wrap {
    order: 1;
  }
  .post-area-right-2.tab-wrap {
    order: 3;
  }
  .post-card .post-thumb img {
    height: auto;
  }
  .post-card .post-content .title {
    line-height: 32px;
  }
  .mid-header-left.header-btn span a {
    padding: 3px 10px;
    font-size: 11px;
  }
  .site-logo {
    max-width: 220px;
  }
}



@media (max-width: 460px) {

  /* HEADER  */
  .accordion-button {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }

  .mid-header-wrap {
    padding: 10px 0;
  }
  .bottom-header .site-logo a img {
    max-width: 180px;
  }
  .site-logo {
    max-width: 250px;
  }
  
  .site-logo a.logo img {
    height: auto;
  }
  
  .header-right {
    height: 50px;
  }
  .bottom-header .sidebar-icon span {
    height: 2px;
  }
  .header-right .toggle-switch {
    width: 50px;
    height: 60px;
}
  .header-right .toggle-switch .slider:before {
    width: 18px;
    height: 18px;
    box-shadow: inset 8px -1px 0 0 var(--dark-color);
  }


  .trending-area .col-6 {
    /* padding-left: 0; */
    /* padding-left: 10px; */
    /* padding-right: 0; */
    display: flex;
    padding: 5px;
  }
  .trending-area {
    padding: 0 6px;
  }
  .hero-post-area {
    padding-top: 5px;
  }
  .about-content h3.title {
    font-size: 30px;
  }

  .top-bar-wrap .top-bar-left ul li a {
    font-size: 10px;
  }
  .post-area-wrap {
    display: flex;
    flex-direction: column;
  }
  .post-carousel-card .post-carousel-content .title {
    font-size: 20px;
    padding: 0 10px;
  }
  .post-area-right-2 {
    order: 2;
  }
  .post-carousel-wrap {
    order: 1;
  }
  .post-area-right-2.tab-wrap {
    order: 3;
  }
  .post-area-right-2 .post-card-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 5px;
  }
  .post-area-right-2 .post-card {
    width: 49%;
  }
  .post-card-wrap .post-card:not(:last-of-type) {
    margin-bottom: 0;
  }
  .post-area-right-2 .post-card-wrap .post-card:last-of-type {
    /* width: 100%; */
  }
  .post-carousel-wrap .post-card-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-gap: 5px;
  }
  .post-card .post-thumb img {
    width: 100%;
    height: auto;
  }
  .tab-wrap {
    padding: 15px 20px 25px 20px;
  }

  .article-wrap {
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
  }

  .article-wrap .article-item.left-article {
    margin-bottom: 40px;
  }
  .article-wrap .article-item .article-thumb img {
    max-width: 70px;
  }
  .article-wrap .article-item .article-thumb {
    grid-template-columns: 70px 1fr;
  }
  .article-wrap .article-item.right-article .article-thumb {
    grid-template-columns: 1fr 70px;
  }
  .article-wrap .article-item.right-article .article-thumb h3 {
    grid-row-start: 1;
  }

  .section-heading {
    /* margin-bottom: 110px; */
    margin-bottom: 30px;
  }
  .editor-post-card {
    margin-bottom: 30px;
  }
  
  .editor-post-card .post-content {
    padding: 20px;
    position: relative;
    top: 0;
    transform: translateY(-10%);
  }

  .section-heading.mb-50 {
    margin-bottom: 50px;
  }
  .section-heading.mb-40 {
    margin-bottom: 40px;
  }
  .section-heading.mb-30 {
    margin-bottom: 30px;
  }
  .section-heading.mb-20 {
    margin-bottom: 20px;
  }
  .top-area .right-btn {
    line-height: 13px;
  }
  .top-area .right-btn .default-btn {
    padding: 10px 10px;
    font-size: 13px;
  }
  .section-heading .section-title {
    font-size: 22px;
  }

  .categorie-content {
    bottom: 20px;
  }
  .categorie-thumb img {
    height: auto;
  }
  h3.categorie-title {
    margin-bottom: 20px;
  }

  .hero-post-area.area-2 .post-area-wrap .post-card, .hero-post-area.area-2 .post-area-wrap .list-post-card {
      max-width: 100%;
  }
  .section1-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
  }
  .post-carousel {
    height: auto;
    /* height: 350px; */
    /* margin-bottom: 25px; */
  }
  .hero-post-area.area-2 .post-area-wrap .post-card {
      margin-bottom: 40px;
  }
  
  .hero-post-area {
    padding: 0 0 40px;
}
  
  
  .sec-allnews-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 5px;
  }
  .gazet-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  
  .post-card .post-content .title {
    line-height: 32px;
  }
  .editor-blog-area {
    padding-bottom: 20px;
  }
  .hero-post-area.area-2 {
    padding: 20px 0;
  }
  
  /* рекламные баннеры */
  
  .trending-area .banner-item {
    padding: 5px;
  }
  
  a.read-allnews-btn {
    font-size: 16px;
    line-height: 1;
    padding: 17px 25px;
  }

  span.read-allnews-btn {
    margin: 20px 0 20px 0;
  }
  
  
  
  
  .header-right .search-icon {
    margin-left: 25px;
  }
  .banner-sidebar.banner-sidebar--first {
    margin-top: 20px;
  }
  
  /* каталог */
  .pokat-links--bg {
    grid-template-columns: repeat(2, 1fr);
  }
  .subcat-icon img {
    width: 45px;
    height: auto;
  }
  .catalog-gen-container .subcat-container {
    grid-template-columns: 45px 1fr;
    padding: 10px 15px;
  }
  .news-post.catalog-post-item .post-thumb {
    height: auto;
  }
  .error-content img {
    max-width: 100%;
  }
}


@media (max-width: 390px) {
  .bottom-header .site-logo a img {
    max-width: 155px;
  }
  .post-card .post-content .title {
    line-height: 32px;
  }
  
  h3.categorie-title {
    margin-bottom: 15px;
    line-height: 20px;
    padding: 0 5px;
  }
  .categorie-content .categorie-title a {
    font-size: 17px;
  }
  .error-content img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .post-card .post-content .title {
    line-height: 32px;
  }
  .section-heading .section-title {
    font-size: 22px;
    line-height: 36px;
  }

  .custom-grid-any .post-list-style-template-three .travel-card-2.border-line {
    padding-bottom: 45px;
    margin-bottom: 45px;
    display: block;
  }

  .custom-grid-any .post-list-style-template-three .post-thumb,
  .travel-card-2 .post-thumb img {
    width: 100% !important;
    height: 180px !important;
    margin-top: 20px !important;
  }
  
  h3.categorie-title {
    margin-bottom: 15px;
    line-height: 20px;
    padding: 0 5px;
  }
  
  .categorie-content .categorie-title a {
    font-size: 16px;
  }
  .categorie-content .categorie-btn {
    padding: 10px;
  }
  .mob-nav-button span a {
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
  }
  .pokat-links--bg {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .subcat-items h3.subcat-title {
    font-size: 20px;
  }
  .error-content img {
    max-width: 100%;
  }
}


@media (max-width: 360px) {
  .top-bar-wrap .top-bar-left ul li a {
      font-size: 8px;
  }
  
  h3.categorie-title {
    margin-bottom: 15px;
    line-height: 20px;
  }
  
  .categorie-content .categorie-title a {
    font-size: 15px;
  }
  .categorie-content .categorie-btn {
    padding: 5px 10px;
  }
  .error-content img {
    max-width: 100%;
  }
  
}
@media (max-width: 320px) {
  
  
  .top-bar-wrap .top-bar-left ul li a {
      font-size: 8px;
  }
  .bottom-header .site-logo a img {
    max-width: 92px;
  }
  .nav-tabs .nav-link span {
    font-size: 11px;
  }
  .editor-post-card {
      margin-bottom: 10px;
  }
  .editor-post-card .post-content {
    top: 250%;
  }
  .section-heading {
    margin-bottom: 0;
  }
  .post-carousel-card .post-carousel-content .title {
    font-size: 14px;
    font-weight: 500;
    margin: 20px auto 5px;
  }
  
  .categorie-content {
    max-width: 92%;
  }
  h3.categorie-title {
    margin-bottom: 15px;
  } 
  .categorie-content .categorie-title a {
    font-size: 16px;
  }
  .categorie-content .categorie-btn {
    padding: 5px;
  }
  .footer-item img.logo-footer {
    max-width: 260px;
  }
  .mob-nav-button span a {
    padding: 3px 5px;
    font-size: 12px;
    font-weight: 500;
  }
  .subcat-items h3.subcat-title {
    font-size: 18px;
  }
  .error-content img {
    max-width: 100%;
  }
}

