@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */
:root {
  --typeColorFirst1: #ffffff;
  --typeColorFirst2: #F9F7F2;
  --typeColorThird1: #444444;
  --typeColorThird2: #70757a;
  --typeColorThird3: #d7e1e2;
  --typeColorThird4: #d9d9d9;
  --typeColorThird5: #f6f6f6;
  --typeColorSecond2: #232323;
  --typeColorSecond1: #161616;
  --brend: #E6FF2B;
  --brendSec: #0B4650;
  --brendThird: #f09135;
  --bgSec: #F9F7F2;
  --label1: #67ac5b;
  --label3: #8d8ed3;
  --label2: #4297b8;
  --label5: #4153af;
  --label6: #eeaa46;
  --blocks-indent: 28px;
  --font-family-m: "Manrope";
  --radius-def: 24px;
  --black: #010101;
}

@media (max-width: 1480px) {
  :root {
    --products-in-col: 5;
  }
}
@media (max-width: 1279px) {
  :root {
    --header-height: 64px;
    --container-indent: 30px;
    --products-in-col: 4;
  }
}
@media (max-width: 1024px) {
  :root {
    --products-in-col: 3;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 50px;
    --products-indent-h: 20px;
    --products-indent-w: 10px;
    --products-in-col: 2;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
@media (max-width: 1279px) {
  .header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgSec);
    height: 100%;
    padding: 56px 16px;
    display: none;
    flex-direction: column-reverse;
    justify-content: flex-end;
    background-color: var(--bgSec);
    height: 100%;
  }
}
.header-wrap.active {
  display: flex;
}

.header-top-in {
  height: 80px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  .header-top-in {
    height: auto;
  }
}
.header-top .logo {
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .header-top .logo {
    display: none;
  }
}

.header-top-right {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1279px) {
  .header-top-right {
    width: 100%;
    padding: 0 50px;
  }
}
@media (max-width: 1279px) {
  .header-top-right nav {
    width: 100%;
    border-top: 1px solid var(--typeColorThird4);
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--typeColorThird4);
  }
}
.header-top-right nav > ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul {
    flex-wrap: wrap;
  }
}
.header-top-right nav > ul li {
  position: relative;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li {
    width: 100%;
    margin-bottom: 4px;
  }
}
.header-top-right nav > ul li > a, .header-top-right nav > ul li > span {
  display: block;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--black950);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 14px;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li > a, .header-top-right nav > ul li > span {
    font-size: 16px;
  }
}
.header-top-right nav > ul li a:hover:hover {
  color: var(--brendSec);
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li a span {
    display: inline-block;
    position: relative;
  }
  .header-top-right nav > ul li a span:after {
    content: "";
    width: 10px;
    height: 10px;
    background: url(/wp-content/themes/sports_radar/img/mob-menu-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    top: 5px;
    transform: translate(0, -50%);
    position: static;
    display: inline-block;
    margin-left: 5px;
    position: relative;
  }
}
.header-top-right nav > ul li.has-child > span, .header-top-right nav > ul li.has-child > a {
  padding-right: 32px;
  position: relative;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li.has-child > span, .header-top-right nav > ul li.has-child > a {
    padding-right: 12px;
  }
}
.header-top-right nav > ul li.has-child > span:after, .header-top-right nav > ul li.has-child > a:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  background: url(/wp-content/themes/sports_radar/img/menu-arr.svg);
  background-repeat: no-repeat;
  background-position: center center;
  right: 15px;
  top: 50%;
  margin-top: 1px;
  transform: translate(0, -50%) rotate(180deg);
	transition: .3s ease-out;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li.has-child > span:after, .header-top-right nav > ul li.has-child > a:after {
    position: static;
    display: inline-block;
    margin-left: 5px;
  }
}
.header-top-right nav > ul li.has-child.active ul {
  opacity: 1;
  visibility: visible;
  display: block;
}
.header-top-right nav > ul li ul {
  position: absolute;
  list-style: none;
  top: 100%;
  background: var(--typeColorFirst1);
  border-radius: 8px;
  /*box-shadow: 0px 0px 8px 2px rgba(237, 72, 1, 0.05);*/
  box-shadow: 4px 4px 4px 2px rgba(35, 35, 35, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li ul {
    background-color: transparent;
    box-shadow: none;
    padding-left: calc(50% - 16px);
    text-align: left;
    position: static;
    display: none;
  }
}
.header-top-right nav > ul li ul li a {
  white-space: nowrap;
  display: block;
  cursor: pointer;
  padding: 8px;
  font-size: 12px;
}
@media (max-width: 1279px) {
  .header-top-right nav > ul li ul li a {
    font-size: 14px;
    padding: 8px;
    font-weight: 400;
  }
}
.header-top-right nav > ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.header-top-right nav > ul li:hover.has-child > span:after, .header-top-right nav > ul li:hover.has-child > a:after {
  transform: translate(0, -50%) rotate(0deg);
}

main .search {
  width: 393px;
}
@media (max-width: 1279px) {
main .search {
    display: none;
  }
}
main .search input {
  height: 40px;
  border-radius: var(--radius-def);
  width: 100%;
  background-image: url(/wp-content/themes/sports_radar/img/search.svg);
  background-repeat: no-repeat;
  background-position: 18px center;
  padding: 0 20px 0 44px;
}

.header-optn {
  display: flex;
  align-items: center;
  gap: 16px;
}
.subs a:hover, 
.subs-form button:hover {
/*     color: var(--typeColorSecond2); */
    background-color: #822700;
}
@media (max-width: 1279px) {
  .header-optn {
    display: none;
  }
}

.lang {
  position: relative;
  font-weight: 500;
}
.lang:hover .drop-lang {
  opacity: 1;
  visibility: visible;
}

.act-lang {
  height: 38px;
  width: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--typeColorThird4);
  border-radius: var(--radius-def);
  gap: 4px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 14px;
}
.act-lang span {
    margin-right: 16px;
}
.act-lang span:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    background: url(/wp-content/themes/sports_radar/img/menu-arr.svg);
    background-repeat: no-repeat;
    background-position: center center;
    right: 15px;
    top: 50%;
    margin-top: 1px;
    transform: translate(0, -50%) rotate(180deg);
    transition: .3s ease;
}
.lang:hover span:after {
    transform: translate(0, -50%) rotate(0deg);
}
.act-lang i {
  display: block;
  line-height: 1;
}
.act-lang i img {
  vertical-align: top;
}
.drop-lang {
  position: absolute;
  top: 100%;
  width: 100%;
  padding-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9;
}
.drop-lang ul {
  background: var(--typeColorFirst1);
  /*box-shadow: 0px 0px 8px 2px rgba(237, 72, 1, 0.05);*/
  box-shadow: 4px 4px 4px 2px rgba(35, 35, 35, 0.05);
  border-radius: var(--radius-def);
  list-style: none;
  padding: 0;
  margin: 0;
}
.drop-lang ul li a {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  border-radius: var(--radius-def);
  gap: 4px;
  text-decoration: none;
  color: var(--black950);
  padding: 8px 14px;
  font-size: 14px;
}
.drop-lang ul li a:hover {
	color: var(--brend);
}
.drop-lang ul li a i {
  display: block;
  line-height: 1;
}
.drop-lang ul li a i img {
  vertical-align: top;
}

.header-bot {
  background-color: var(--brend);
}
@media (max-width: 1279px) {
  .header-bot {
    background-color: transparent;
    height: calc(100% - 180px);
    overflow: auto;
  }
}
.header-bot-in {
  height: 58px;
  align-items: center;
}
@media (max-width: 1279px) {
  .header-bot-in {
    height: auto;
    display: flex;
  }
}
.header-bot-in .coop {
  float: left;
  height: 58px;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .header-bot-in .coop {
    display: none;
  }
}
.header-bot-menu {
  padding: 0 142px;
}
@media (max-width: 1279px) {
  .header-bot-menu {
    width: 100%;
    padding: 0 50px;
  }
}
.header-bot-menu nav {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1279px) {
  .header-bot-menu nav {
    height: auto;
    width: 100%;
    border-top: 1px solid var(--typeColorThird4);
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.header-bot-menu nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}
@media (max-width: 1279px) {
  .header-bot-menu nav ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 1279px) {
  .header-bot-menu nav ul li {
    width: 100%;
  }
}
.header-bot-menu nav ul li a {
  text-decoration: none;
  color: var(--black);
  display: block;
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  border-radius: var(--radius-def);
  transition: .3s ease-out;
}
.header-bot-menu nav ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 27px;
}
.header-bot-menu nav ul li.menu-item-has-children > a:after {
  content: '';
  display: block;
  background: url(../img/menu-arrow.svg);
  transform: translateY(-50%) rotate(-90deg);
  width: 6px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 12px;
}
.header-bot-menu nav ul li.menu-item-has-children .sub-menu {
  position: absolute;
  list-style: none;
  top: 100%;
  background: var(--typeColorFirst1);
  border-radius: 8px;
  /*box-shadow: 0px 0px 8px 2px rgba(237, 72, 1, 0.05);*/
  box-shadow: 4px 4px 4px 2px rgba(35, 35, 35, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.header-bot-menu nav ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-bot-menu nav ul li.menu-item-has-children > a:hover:after {
  background: url(../img/menu-arrow-hover.svg);
}
@media (max-width: 1279px) {
	.header-bot-menu nav ul li a {
		font-size: 16px;
	}
}
.header-bot-menu nav ul li a:hover {
    background-color: var(--brendSec);
    color: var(--typeColorFirst1);
}
@media (max-width: 1279px) {
  .header-bot-menu nav ul li a {
    color: var(--typeColorSecond1);
  }
  .header-bot-menu nav ul li a:hover {
    color: var(--brend);
  }
  .header-bot-menu nav ul li a:after {
    content: "";
    width: 10px;
    height: 10px;
    background: url(/wp-content/themes/sports_radar/img/mob-menu-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    top: 5px;
    transform: translate(0, -50%);
    position: static;
    display: inline-block;
    margin-left: 5px;
    position: relative;
  }
  .header-bot-menu nav ul li.menu-item-has-children .sub-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: flex;
    gap: 16px;
  }
  .header-bot-menu nav ul li.menu-item-has-children > a {
    display: none;
  }
}

.header-mob {
  display: none;
}
@media (max-width: 1279px) {
  .header-mob {
    display: block;
    padding: 12px 0;
  }
  .header-mob .coop {
    margin-bottom: 12px;
  }
  .header-mob .coop .btn.prim-sec {
    background-color: var(--typeColorFirst1);
  }
  .header-mob .lang .act-lang {
    height: 32px;
    width: 100%;
    background-color: #fff;
    border: none;
  }
  .header-mob .lang .act-lang span {
    position: relative;
    padding-right: 16px;
  }
  .header-mob .lang .act-lang span:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    background: url(/wp-content/themes/sports_radar/img/menu-arr.svg);
    background-repeat: no-repeat;
    background-position: center center;
    right: 0;
    top: 50%;
    margin-top: 1px;
    transform: translate(0, -50%) rotate(180deg);
  }
}

.header-soc {
  display: none;
}
@media (max-width: 1279px) {
  .header-soc {
    border-top: 1px solid var(--typeColorThird4);
    padding-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
  }
}
.header-soc a {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--typeColorThird4);
  align-items: center;
  justify-content: center;
}
.header-soc a > img {
	filter: brightness(0.3);
    transition: filter 0.3s;
}
.header-soc a:hover img {
    filter: brightness(1);
}

.mobile-header {
  display: none;
}
@media (max-width: 1279px) {
  .mobile-header {
    display: block;
  }
}

.mobile-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.logo {
  width: 180px;
}

.mobile-header-bot {
  background-color: var(--brend);
  display: flex;
  padding: 14px 16px;
  justify-content: space-between;
}
.mobile-header-bot .search {
  display: block;
  max-width: calc(100% - 72px);
  width: 100%;
}
.mobile-header-bot .open-menu {
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.close-menu {
  display: none;
}
@media (max-width: 1279px) {
  .close-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* FOOTER */
footer {
  padding: 64px 0;
  background-color: var(--black);
  color: var(--typeColorFirst1);
}
@media (max-width: 1279px) {
  footer {
    padding: 32px 16px;
  }
}
footer .footer-in .footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}
footer .footer-in .footer-top .footer-top-left {
  /* width: 325px; */
}
@media (max-width: 1279px) {
  footer .footer-in .footer-top {
    flex-direction: column;
  }
  footer .footer-in .footer-top .footer-top-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
footer .footer-in .footer-top .footer-logo {
  margin-bottom: 32px;
}
@media (max-width: 1279px) {
  footer .footer-in .footer-top .footer-logo {
    text-align: center;
  }
  footer .footer-in .footer-top .footer-logo img {
    width: 228px;
  }
}
footer .footer-soc {
  margin-bottom: 32px;
}
.soc-link.footer-soc a img {
	filter: brightness(0) invert(0.8);
    transition: filter 0.3s;
}
@media (max-width: 1279px) {
  footer .footer-soc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
footer .footer-soc a {
  background-color: transparent;
}
footer .lang-footer {
  color: var(--typeColorSecond1);
  position: relative;
}
footer .lang-footer .act-lang {
  width: 100%;
  background-color: var(--typeColorFirst1);
}
footer .lang-footer .act-lang {
  justify-content: start;
}
footer .lang-footer .drop-lang ul li a {
  justify-content: start;
}
footer .footer-top-middle {
  width: 428px;
}
@media (max-width: 1279px) {
  footer .footer-top-middle {
    width: 100%;
    margin-bottom: 48px;
  }
}
footer .subs .subs-tit {
  margin-bottom: 16px;
}
footer .subs .subs-form form {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
footer .subs .subs-form form button {
  width: 135px;
	transition: .3s ease-out;
}
footer .footer-top-right {
  display: flex;
  gap: 48px;
}
@media (max-width: 1279px) {
  footer .footer-top-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer-menu {
  width: 180px;
  line-height: 1.3;
}
footer .footer-menu nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-menu nav ul li a {
  font-size: 14px;
  display: block;
  cursor: pointer;
  padding: 8px 0;
  color: var(--typeColorFirst1);
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  footer .footer-top-right {
    column-gap: 0;
  }
  footer .footer-menu {
    width: auto;
  }
  footer .footer-menu:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  footer .footer-menu nav ul li a {
    font-size: 12px;
  }
}
footer .footer-menu nav ul li a:hover {
  color: var(--brend);
}
footer .footer-menu-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
footer .footer-menu-title i {
  line-height: 1;
}
footer .footer-info {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--typeColorFirst1);
  /* margin-bottom: 32px; */
}
footer .footer-info p {
  font-size: 14px;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--typeColorThird4);
  padding-top: 24px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 1279px) {
  footer .footer-bottom {
    padding-top: 16px;
  }
}
@media (max-width: 1279px) {
  footer .footer-bottom .copy {
    margin-bottom: 16px;
    width: 100%;
  }
}
footer .footer-bottom nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer-bottom nav ul li {
  float: left;
}
footer .footer-bottom nav ul li a {
  color: var(--typeColorFirst1);
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-bottom nav ul li a:hover {
  color: var(--brend);
}

/* / FOOTER */
/* REPEAT */
input {
  padding: 0 16px;
  height: 38px;
  border-radius: 24px;
  border: none;
  width: 100%;
  background-color: var(--typeColorFirst2);
  border: none;
  outline: none;
  transition: all 0.3s;
}
input:focus {
  background-color: var(--bgSec);
}

.cat-label {
  position: absolute;
  padding: 3px 9px;
  color: var(--typeColorFirst1);
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  left: 11px;
  top: 11px;
  z-index: 1;
	text-decoration: none;
  transition: .3s ease-out;
  background: var(--brendSec);
}
/* .cat-label a {
    color: var(--typeColorFirst1);
    text-decoration: none;
    transition: .3s ease-out;
} */
.cat-label:hover {
	color: var(--typeColorSecond2);
    background-color: var(--bgSec);
}
/* .cat-label:hover a {
    color: var(--typeColorSecond2);
} */
@media (max-width: 1279px) {
  .cat-label {
    left: 8px;
    top: 8px;
  }
}

.label-post {
  margin-bottom: 12px;
}
.label-post .label {
  display: inline-block;
  padding: 3px 9px;
  color: var(--typeColorFirst1);
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
	text-decoration: none;
	transition: .3s ease-out;
  background: var(--brendSec);
}
.label-post .label:hover {
	color: var(--typeColorSecond2);
    background-color: var(--bgSec);
}

.type1 {
  background-color: var(--label1) !important;
}

.type2 {
  background-color: var(--label2) !important;
}

.type3 {
  background-color: var(--label3) !important;
}

.type4 {
  background-color: var(--brendSec) !important;
}

.type5 {
  background-color: var(--label5) !important;
}

.type6 {
  background-color: var(--label6) !important;
}

.authors {
  font-size: 14px;
}
.authors .author {
  display: flex;
  align-items: center;
  color: var(--typeColorThird2);
  gap: 8px;
  line-height: 1;
}
.authors .author a {
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}
.authors .author a:hover {
  color: var(--brendSec);
}
.authors .author .avatar img {
  overflow: hidden;
  border-radius: 50%;
}
.authors .author .avatar img:nth-child(2) {
  margin-left: -12px;
}
.authors .author .name:nth-child(3) {
  padding-left: 8px;
  position: relative;
}
.authors .author .name:nth-child(3):before {
  content: "|";
  position: absolute;
  left: -2px;
  top: 0px;
	width: 3px;
	background-color: #70757A;
}
.authors.two .author {
  display: flex;
}
.authors.two .author .avatar {
  flex: 0 0 auto;
}
.authors.two .author a {
  max-width: 50%;
  transition: all 0.3s;
}
.authors.two .author a:hover {
  flex: 0 0 auto;
  max-width: 100%;
}

.title-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 1279px) {
  .title-top {
    margin-bottom: 16px;
  }
}
.broad-wrap {
  padding: 32px 0 16px;
}
@media (max-width: 1279px) {
  .broad-wrap {
    padding: 32px 0px 16px;
  }
}

.breadcrumbs span img {
  margin: 9px 8px;
}
.breadcrumbs span span {
  font-size: 12px;
  color: var(--typeColorSecond2);
}
.breadcrumbs span span a {
  color: var(--typeColorThird2);
  font-size: 12px;
  transition: all 0.3s;
  text-decoration: none;
}
.breadcrumbs span span a:hover {
  color: var(--brendSec);
}
.breadcrumbs span span:last-child {
  color: var(--typeColorSecond2);
  font-weight: 500;
}

@media (max-width: 1279px) {
  .hide-on-mob {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hide-on-desc {
    display: none !important;
  }
}

/* / REPEAT */
/* news block */
.news-bl {
  border-bottom: 1px solid var(--typeColorThird4);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.news-bl:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .news-bl .one-right-post.block-with-cols {
    gap: 12px;
  }
}

/* news block */
/* sidebar */
@media (max-width: 1279px) {
  .sidebar {
    display: none;
  }
}

.one-side-bl {
  margin-bottom: 40px;
}
.one-side-bl:last-child {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .one-side-bl {
    margin-bottom: 24px;
  }
}

.side-title {
  padding-bottom: 12px;
  position: relative;
  border-bottom: 1px solid var(--typeColorThird4);
  margin-bottom: 16px;
}

.side-links.side-cats ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.side-links a {
  display: block;
  cursor: pointer;
  background-color: var(--bgSec);
  color: var(--typeColorSecond1);
  text-decoration: none;
  padding: 7px 8px;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
}
.side-links a:hover {
	background-color: var(--brend);
    color: var(--black);
}
.side-links.side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.side-posts .post-info {
  font-size: 12px;
}

.one-side-post {
  margin-bottom: 24px;
}
.one-side-post:last-child {
  margin-bottom: 0;
}
.one-side-post .descr {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.one-side-post .descr p {
  height: 38px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.soc-link {
  display: flex;
  gap: 8px;
}
.soc-link a {
  background-color: var(--bgSec);
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: all .4s ease-in-out;
}
.soc-link a:hover {
  background: var(--brend);
}
.sticky {
    position: sticky;
    top: 184px;
}
/* / sidebar */
/* text-part */
.text-part h1 {
  margin-bottom: 16px;
}
.text-part h2 {
  margin-bottom: 16px;
}
.text-part h3 {
  margin-bottom: 16px;
}
.text-part .wp-block-buttons {
	margin-bottom: 16px;
}
/* .text-part p:not(.schema-faq p) { */
.text-part > p {
  margin-bottom: 16px;
}
.text-part p + h1, .text-part p + h2, .text-part p + h3, .text-part blockquote + h2 {
  padding-top: 16px;
}
.text-part a {
  color: var(--black);
  text-decoration: underline;
}
.text-part a:hover {
  text-decoration: none;
  color: var(--brendSec);
}
.text-part a a:hover {
  text-decoration: none;
}
.text-part > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 16px;
  padding-left: 15px;
}
@media (max-width: 1279px) {
  .text-part > ul {
    font-size: 14px;
  }
}
.text-part > ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
.text-part > ul li:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--typeColorSecond1);
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
}
.text-part > ol {
	padding: 0;
    margin: 0;
    margin-left: 14px;
    margin-bottom: 16px;
}
.text-part > ol li {
	margin-bottom: 8px;
    position: relative;
}
.text-part blockquote {
	padding: 24px 16px 16px;
  font-size: 16px;
	margin: 0;
  margin-bottom: 16px;
  color: #0B4650;
  text-indent: 35px;
  border-top: 1px solid #0B4650;
  border-bottom: 1px solid #0B4650;
  margin-right: 32px;
  margin-left: 32px;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
	.text-part blockquote {
		flex-direction: column;
    margin-right: 0;
    margin-left: 0;
	}
}
.text-part .wp-block-quote:before {
	content: '';
    position: absolute;
    top: 15px;
    left: 16px;
    display: block;
    background-image: url(/wp-content/themes/sports_radar/img/blockquote.svg);
    width: 24px;
    height: 16px;
	flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.text-part blockquote > p {
	margin: 0;
	font-weight: 600;
}
.wp-block-pullquote blockquote {
  background: #0B4550;
  border-radius: 12px;
  margin-right: 0;
  margin-left: 0;
  border: 0;
  padding: 20px;
  color: #FFFFFF;
  text-align: left;
  text-indent: 0;
}
.wp-block-pullquote blockquote * {
  color: #FFFFFF !important;
}
.video-item iframe {
	width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
	border-radius: 16px;
}
/* / text-part */
/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 38, 38, 0.15);
  backdrop-filter: blur(2.5px);
}

.modal-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 24px;
  width: 440px;
  background: var(--typeColorFirst1);
  border-radius: 16px;
  position: relative;
}

.modal-close {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 24px;
  right: 24px;
}
.modal-close svg path {
  transition: all 0.3s;
}
.modal-close:hover svg path {
  stroke: var(--brend);
}

.modal-title {
  width: 100%;
}
.modal-body .subs-form {
	width: 100%;
}
.modal-body .subs-form button {
	margin: 16px auto;
}

.bt-coop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 1270px) {
  .bt-coop {
    flex-wrap: wrap;
  }
  .bt-coop .btn {
    width: 100%;
  }
}

/* / MODAL */
/* Cookies Popup - Start */
.cookie-consent {
    max-width: 450px;
    width: auto;
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--brend);
    color: var(--black);
    padding: 24px;
    border-radius: 16px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 999;
}
.cookie-consent.hidden {
    display: none;
}
.cookie-consent .close {
    position: absolute;
    display: flex;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.cookie-consent .close .line-1 {
    display: flex;
    width: 20px;
    height: 2px;
    position: absolute;
    background: var(--brendSec);
    transform: rotate(-45deg);
    transition: all .3s ease-out;
    cursor: pointer;
}
.cookie-consent .close .line-2 {
    display: flex;
    width: 20px;
    height: 2px;
    position: absolute;
    background: var(--brendSec);
    transform: rotate(45deg);
    transition: all .3s ease-out;
    cursor: pointer;
}
.cookie-consent .close:hover div {
    background: var(--black);
}
.cookie-consent span {
    line-height: 140%;
	padding-top: 8px;
}
.cookie-consent span a {
    color: var(--black);
    text-decoration: underline;
}
.cookie-consent span a:hover {
	color: var(--brendSec);
    text-decoration: none;
}
.cookie-consent .accept-cookie {
    width: fit-content;
	margin: 0 auto;
    transition: all .3s ease-in-out;
}
.btn.prim-def.accept-cookie:hover {
    color: var(--typeColorSecond2);
    background-color: var(--typeColorThird5);
}
/* Cookies Popup - End */
/* Page Single */
.single-wrap {
  padding-top: 0;
}
.single-wrap .container {
  max-width: 1200px;
}
@media (max-width: 1279px) {
  .single-wrap {
    padding-bottom: 0;
  }
}
.single-wrap h1 {
  margin-bottom: 32px;
}
.single-post-photo {
  margin-bottom: 32px;
}
.about-author {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid #0B4650;
}
@media (max-width: 1279px) {
  .about-author {
    margin-bottom: 24px;
    flex-direction: column
  }
}

.about-author-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: auto;
}
@media (max-width: 1279px) {
  .about-author-top {
    gap: 12px;
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  }
}

.one-author {
  display: flex;
  gap: 8px;
  width: 50%;
}
.one-author.one {
  width: 100%;
}
@media (max-width: 1279px) {
  .one-author {
    width: 100%;
  }
}
.one-author a {
  text-decoration: none;
  color: var(--typeColorSecond2);
  display: flex;
  cursor: pointer;
  gap: 8px;
  align-items: center;
}
.one-author a:hover {
  color: var(--brendSec);
}

.one-author-avat {
  width: 32px;
}
@media (max-width: 1279px) {
  /* .one-author-avat {
    width: 24px;
    height: 24px;
  } */
}
.one-author-avat img {
  border-radius: 50%;
}

.one-author-name {
  font-size: 14px;
  display: block;
}
@media (max-width: 1279px) {
  .one-author-name {
    margin-bottom: 0;
  }
}

.one-author-who {
  color: var(--typeColorThird2);
  font-size: 12px;
}

.about-author-info {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  position: relative;
  gap: 16px;
}
.about-author-info.two {
  flex-direction: column-reverse
}
@media (max-width: 1279px) {
  .about-author-info {
    gap: 8px;
    flex-direction: row-reverse;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--typeColorThird4);
    justify-content: space-between;
  }
}

.about-author-info-left {
  display: flex;
  justify-content: space-between;
  gap: 16px
}
@media (max-width: 1279px) {
  .about-author-info-left {
    align-items: center;
    justify-content: center;
  }
}
.about-author-info-left .time,
.about-author-info-left .watch {
  color: var(--typeColorThird2);
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* .about-author-info-left .time {
  border-right: 1px solid var(--typeColorThird4);
  padding-right: 9px;
  margin-right: 8px;
} */

.about-author-info-right {
  display: flex;
}
@media (max-width: 1279px) {
  .about-author-info-right {
    align-items: center;
    justify-content: center;
  }
}
.about-author-info-right .post-info {
  gap: inherit;
}
@media (max-width: 1279px) {
  .about-author-info-right .post-info {
    font-size: 14px;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 8px;
  }
}
.about-author-info-right .post-info .upd {
  border-left: 1px solid var(--typeColorThird4);
  padding-left: 16px;
  margin-left: 16px;
}
@media (max-width: 1279px) {
  .about-author-info-right .post-info .upd {
	  border-left: none;
	  padding-left: 0;
	  margin-left: 0;
	}
}

figcaption {
  color: var(--typeColorThird2);
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 1279px) {
  figcaption {
    margin-bottom: 24px;
    font-size: 12px;
  }
}

.single-body [class*=wp-block] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation-duration: 0.2s;
  box-sizing: border-box;
  overflow-wrap: break-word;
  position: relative;
  text-rendering: optimizeLegibility;
  transition: all 80ms ease-out;
  word-break: break-word;
}
.single-body :where(figure) {
  margin: 0 0 32px 0;
}
.single-body :where(figure) img,
.single-post-photo :where(figure) img {
  width: 100%;
  border-radius: 16px;
}
.single-post-photo figure {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 16px;
}
.single-post-photo figure:has(img) {
  /* aspect-ratio: 16 / 9; */
}
/* .single-body :where(figure) iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
} */
.single-body .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
/* List - Start */
.list-posts {
  background-color: var(--bgSec);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1279px) {
  .list-posts {
    padding: 12px;
  }
}

.list-posts-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  cursor: pointer;
}
.list-posts-title i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 1s;
  line-height: 1;
  display: block;
  vertical-align: top;
  height: 6px;
  margin-top: -4px;
  padding: 0 6px;
}
.list-posts-title.close i {
  transform: translate(0, -50%) rotate(-180deg);
}

.list-posts-wrap {
  overflow: hidden;
  transition: all 1s;
	opacity: 1;
  max-height: 650px;
}
.list-posts-wrap.scrollable {
  overflow-y: auto; /* Вертикальный скролл */
  max-height: 400px; /* Задайте разумное ограничение высоты */
}
.list-posts-wrap.close {
  max-height: 0px;
	transition: all 1s;
	opacity: 0;
}
.list-posts-wrap::-webkit-scrollbar {
  width: 6px;
}
.list-posts-wrap::-webkit-scrollbar-thumb {
  background-color: var(--typeColorThird4);
  border-radius: 8px;
}
.list-posts-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.list-posts-wrap nav {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--typeColorThird4);
}
.list-posts-wrap nav > ul {
  padding: 0;
  margin: 0;
}
.list-posts-wrap nav ul {
    list-style: none;
}
.list-posts-wrap nav ul > li a {
  color: var(--typeColorSecond2);
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.list-posts-wrap nav ul > li a:hover {
  color: var(--brend);
}
.list-posts-wrap nav ul > li > a {
  padding: 7px 12px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .list-posts-wrap nav ul > li > a {
    font-size: 14px;
    padding: 8px;
  }
}
.list-posts-wrap nav ul > li > a:hover, .list-posts-wrap nav ul > li > a.active {
  background-color: var(--typeColorFirst1);
}
.list-posts-wrap nav > ul > li ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 16px;
}
.list-posts-wrap nav ul > li ul li a {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1279px) {
  .list-posts-wrap nav ul > li ul li a {
    font-size: 12px;
  }
}
/* List - End */
/* FAQ - Start */
.faq, 
.faq-block__list, 
.schema-faq { 
    padding-top: 8px; 
}

.faq-item, 
.schema-faq-section { 
    background-color: var(--bgSec);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

@media (max-width: 1279px) {
    .faq-item, 
    .schema-faq-section { 
        padding: 12px; 
    }
}

.faq-item.active .faq-question i, 
.faq-item.active .faq-question i::before, 
.schema-faq-section.active .schema-faq-question::before { 
    transform: translate(0, -50%) rotate(0deg); 
}

.faq-question, 
.schema-faq-question { 
    position: relative;
    padding-right: 24px;
    cursor: pointer;
    font-weight: 700;
    display: block;
    width: 100%;
}

.faq-question i::before, 
.schema-faq-question::before { 
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(-180deg);
    transition: all 0.6s;
    line-height: 1;
    display: block;
    vertical-align: top;
    height: 8px;
    width: 14px;
    background-image: url('/wp-content/themes/sports_radar/img/acc-arrow.svg');
}

.faq-answer, 
.schema-faq-answer { 
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s;
}

.text-part p.schema-faq-answer, 
.schema-faq-section > p { 
    margin-bottom: 0; 
}

.faq-answer .faq-answer-in, 
.faq-answer > p, 
.schema-faq-section.active .schema-faq-answer { 
    padding: 16px 0 0 0;
    margin: 16px 0 0 0;
    border-top: 1px solid var(--typeColorThird4);
    font-size: 16px;
}

@media (max-width: 1279px) {
    .faq-answer .faq-answer-in, 
    .faq-answer > p, 
    .schema-faq-section.active .schema-faq-answer { 
        font-size: 12px;
        padding: 12px 0 0 0;
        margin-top: 12px;
    }
}

.faq-item.active .faq-answer, 
.schema-faq-section.active .schema-faq-answer { 
    max-height: 100px;
	opacity: 1;
}
/* / FAQ - End */
/* Page Single */
.author-body {
  background-color: var(--bgSec);
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 1279px) {
  .author-body {
    padding: 16px;
  }
}

.author-body-top {
  border-bottom: 1px solid var(--typeColorThird4);
  padding-bottom: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1279px) {
  .author-body-top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

.author-body-thumb {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(180deg, var(--brend) 0%, var(--brendSec) 100%);
  flex: 0 0 auto;
}
@media (max-width: 1279px) {
  .author-body-thumb {
    width: 68px;
    height: 68px;
  }
}
.author-body-thumb .logo-avat {
  position: absolute;
  bottom: 4px;
  right: 7px;
}
@media (max-width: 1279px) {
  .author-body-thumb .logo-avat {
    width: 15px;
    height: 15px;
    right: 3px;
    bottom: 2px;
  }
}
.author-body-thumb span {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: relative;
  background: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  top: 50%;
  left: 50%;
}
@media (max-width: 1279px) {
  .author-body-thumb span {
    width: 64px;
    height: 64px;
    border-width: 2px;
  }
}
.author-body-thumb span img {
  position: absolute;
  border-radius: 50%;
  position: relative;
  background: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.author-body-descr {
  width: 100%;
}
@media (max-width: 1279px) {
	.author-body-descr .one-author-who {
		text-align: center;
		width: 100%;
		display: block;
	}
}
.author-body-name {
/*   margin-bottom: 21px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
@media (max-width: 1279px) {
  .author-body-name {
    text-align: center;
    justify-content: center;
    margin-bottom: 4px;
  }
}

.author-body-soc {
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}
.author-body-soc a img {
	filter: brightness(0.3);
    transition: filter 0.3s;
}
.author-body-soc a:hover img {
	filter: brightness(1);
}
@media (max-width: 1279px) {
  .author-body-soc {
    justify-content: center;
    margin-bottom: 12px;
  }
}
.author-body-soc a {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 36px;
  height: 36px;
}

.other-auth-post-tit {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1279px) {
  .author-body-posts-in {
    gap: 32px;
  }
}
.author-body-posts-in .one-side-post {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .author-body-posts-in .one-side-post {
    position: relative;
  }
}
@media (max-width: 1279px) {
  .author-body-posts-in .one-side-post:after {
    position: absolute;
    content: "";
    height: 1px;
    right: 28px;
    left: 28px;
    bottom: -16px;
    background-color: var(--typeColorThird4);
  }
}
.author-body-posts-in .one-side-post:last-child:after {
  content: normal;
}
.wp-block-table {
  overflow: auto;
}
.wp-block-table table {
    border-collapse: collapse;
    width: 100%; 
    border: 1px solid #D9D9D9; 
    border-radius: 8px;
    overflow: hidden;
    background-color: #D9D9D9;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}


.wp-block-table table td,
.wp-block-table table th {
    border: 1px solid #D9D9D9;
    padding: 12px;
}

/* .wp-block-table table tr:first-child td */
.wp-block-table table thead th {
    background-color: #FCEDE7;
    font-size: 18px; 
    font-weight: 700; 
    line-height: 1.3;
    text-align: center; 
}


.wp-block-table table tbody td {
    background-color: #F9F7F2;
    font-weight: 400; 
}

.wp-block-table table:not(thead) tbody tr:first-child td {
  white-space: nowrap;
}


.wp-block-table table.has-fixed-layout {
    table-layout: fixed;
}


@media (max-width: 767px) {
    .wp-block-table table {
        font-size: 14px;
    }
}
.pros-cons-block {
	margin-bottom: 16px;
}
.pros-cons-block .pros-cons-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    overflow: hidden;
    background-color: #D9D9D9;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}

.pros-cons-block .pros-cons-table td,
.pros-cons-block .pros-cons-table th {
    border: 1px solid #D9D9D9;
    padding: 12px;
}

.pros-cons-block .pros-cons-table thead th {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.pros-cons-block .pros-cons-table thead th:first-child {
    background-color: #A0C09B;
}

.pros-cons-block .pros-cons-table thead th:last-child {
    background-color: #CF8A66;
}

.pros-cons-block .pros-cons-table .pros-cell {
    background-color: #EDF6EB;
	width: 50%;
}

.pros-cons-block .pros-cons-table .cons-cell {
    background-color: #FFF9F5;
	width: 50%;
}

@media (max-width: 767px) {
    .pros-cons-block .pros-cons-table {
        font-size: 14px;
    }
    
    .pros-cons-block .pros-cons-table thead th {
        font-size: 16px;
    }
}

.pros-cons-block .pros-cons-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.pros-cons-block .add-row-btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.pros-cons-block .add-row-btn:first-child {
    background-color: #A0C09B;
    border: 1px solid #A0C09B;
    color: white;
}

.pros-cons-block .add-row-btn:last-child {
    background-color: #CF8A66;
    border: 1px solid #CF8A66;
    color: white;
}

.pros-cons-block .remove-row-btn {
    opacity: 0.5;
    cursor: pointer;
    float: right;
    padding: 0 5px;
    background: none;
    border: none;
}

.pros-cons-block .remove-row-btn:hover {
    opacity: 1;
}


/* / Page Single */
/* Page Catalog */
.catalog-wrap {
	padding-top: 0;
}
.catalog-wrap h1 {
  margin-bottom: 16px;
}
.catalog-wrap .single-body {
  margin-bottom: 8px;
}
.catalog-wrap .title-top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--typeColorThird4);
}
.catalog-wrap .news-bl {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--typeColorThird4);
  margin-bottom: 16px;
}

.pagi-more {
  width: 100%;
}

.pagi-was-show {
  color: var(--typeColorThird2);
  text-align: right;
  margin-bottom: 8px;
}
@media (max-width: 1279px) {
  .pagi-was-show {
    margin-bottom: 16px;
  }
}

.pagi-show-more-bt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagi-show-more-bt .btn {
  width: 180px;
}
@media (max-width: 1279px) {
  .pagi-show-more-bt .btn {
    width: 100%;
  }
}

/* / Page Catalog */
/* Page TAGS */
@media (max-width: 1279px) {
  .tags-top {
    padding-bottom: 0;
    padding-top: 0;
  }
  .tags-top .left-part {
    position: relative;
    padding-bottom: 8px;
  }
  .tags-top .left-part:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--typeColorThird4);
  }
}

@media (max-width: 1279px) {
  .tags-page .title-top {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}
@media (max-width: 1279px) {
  .tags-page .search-tag {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 1279px) {
  .tags-page .search-tag .search {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1480px) {
  .tags-page .tag-content.block-with-cols {
    gap: 24px;
    --blocks-indent: 24px;
  }
}
@media (max-width: 1279px) {
  .tags-page .tag-content.block-with-cols {
    gap: 16px;
  }
}
.tags-page .alphabet {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  align-content: flex-start;
}
@media (max-width: 1480px) {
  .tags-page .alphabet {
    gap: 7px;
  }
}
.tags-page .alphabet.start {
  justify-content: start;
}
.tags-page .alphabet a {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background-color: var(--bgSec);
  color: var(--typeColorSecond2);
  font-weight: 800;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
}
.tags-page .alphabet a:hover {
  background-color: var(--brend);
  color: var(--typeColorFirst1);
}
.tags-page .alphabet a.active {
  background-color: var(--brend);
  color: var(--typeColorFirst1);
}

.tags-list {
  display: flex;
  gap: 10px;
  row-gap: 32px;
  flex-wrap: wrap;
  align-items: start;
}
@media (max-width: 1279px) {
  .tags-list {
    row-gap: 16px;
  }
}
.tags-list .symbol-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: calc(16.666% - 8.3333333333px);
}
@media (max-width: 1279px) {
  .tags-list .symbol-group {
    width: 100%;
  }
}
.tags-list .symbol-group > span {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--typeColorThird4);
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
}
.tags-list .tag-item a {
  display: flex;
  padding: 6px 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--bgSec);
  color: var(--typeColorSecond2);
  font-weight: 800;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
}
@media (max-width: 1279px) {
  .tags-list .tag-item a {
    font-size: 12px;
  }
}
.tags-list .tag-item a:hover {
  background-color: var(--brend);
  color: var(--typeColorFirst1);
}
.tags-list .clear-bt {
  justify-content: end;
}

/* / Page TAGS */
/* Page Team */
.page-top {
  background-color: var(--bgSec);
  padding-bottom: 40px;
}
@media (max-width: 1279px) {
  .page-top {
    padding: 0px 16px 32px;
  }
}

.page-top-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.page-top-wrap h1 {
  width: 620px;
}

.page-top-info-in {
  background-color: var(--typeColorFirst1);
  border-radius: 16px;
  padding: 16px 176px;
  text-align: center;
  margin-top: 32px;
  color: var(--typeColorSecond2);
  width: 100%;
}
@media (max-width: 1279px) {
  .page-top-info-in {
    padding: 12px;
    margin-top: 24px;
  }
}
.page-top-info-in a {
  color: var(--brend);
}
.page-top-info-in a:hover {
  text-decoration: none;
}
.page-top-info-in p {
  margin-bottom: 16px;
}
.page-top-info-in p:last-child {
  margin-bottom: 0;
}

.type-wrap .bl-bg-wrap {
  padding: 32px 0;
}
@media (max-width: 1279px) {
  .type-wrap .bl-bg-wrap {
    padding: 16px 0 32px;
    gap: 16px;
  }
}

.one-bl-bg {
  background-color: var(--bgSec);
  border-radius: 12px;
  padding: 16px;
}
.one-bl-bg h3 {
  margin-bottom: 16px;
}

.command-block {
  margin-top: 80px;
}
@media (max-width: 1279px) {
  .command-block {
    margin-top: 64px;
  }
}

.author-wrap {
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  .author-wrap.block-with-cols {
    gap: 24px;
  }
}
.author-wrap:last-child {
  margin-bottom: 0;
}
.author-wrap-in .author-body {
  padding: 16px;
}
.author-wrap-in .author-body-top {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
@media (max-width: 1279px) {
  .author-wrap-in .author-body-top {
    gap: 16px;
  }
}
/* .author-wrap-in .author-body-name {
  margin-bottom: 12px;
} */
@media (max-width: 1279px) {
  .author-wrap-in .author-body-thumb {
    width: 98px;
    height: 98px;
  }
}
@media (max-width: 1279px) {
  .author-wrap-in .author-body-thumb .logo-avat {
    width: 23px;
    height: 23px;
    right: 3px;
    bottom: 2px;
  }
}
@media (max-width: 1279px) {
  .author-wrap-in .author-body-thumb span {
    width: 92px;
    height: 92px;
    border-width: 2px;
  }
}
.write {
  display: flex;
/*   justify-content: space-between; */
  gap: 16px;
  align-items: center;
  padding-top: 38px;
}
@media (max-width: 1279px) {
  .write {
    flex-wrap: wrap;
    padding-top: 12px;
  }
}

.write-name {
  flex: 0 0 auto;
  font-size: 14px;
}
@media (max-width: 1279px) {
  .write-name {
    width: 100%;
    font-weight: 600;
  }
}

.write-tag {
/*   width: 100%; */
	width: fit-content;
}
@media (max-width: 768px) {
	.write-tag {
	  width: 100%;
	}
}
.write-tag a {
  display: flex;
  height: 30px;
	padding: 0 16px;
  border-radius: 8px;
  background-color: var(--typeColorFirst1);
  color: var(--typeColorSecond2);
  text-decoration: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
	transition: .3s ease-out;
}
.write-tag a:hover {
	background-color: var(--brend);
  color: var(--black);
}

.post-info-author {
  color: var(--typeColorSecond2);
  display: flex;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
}
@media (max-width: 1279px) {
  .post-info-author {
    font-size: 12px;
  }
}
.post-info-author > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-info-author.just-info {
  justify-content: space-between;
}

.author-body-soc-top {
  display: flex;
  gap: 8px;
}
.author-body-soc-top a img {
	filter: brightness(0.3);
    transition: filter 0.3s;

}
.author-body-soc-top a:hover img {
	filter: brightness(1);
}

@media (max-width: 1279px) {
  .author-body-soc-top {
    justify-content: center;
  }
}
.author-body-soc-top a {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 36px;
  height: 36px;
}
.author-body-about p:not(:last-child) {
  margin-bottom: 15px;
}
.page-single-author .author-body-name {
  margin-bottom: 16px;
}
.page-single-author .author-body-about {
	margin-bottom: 16px;
}
.page-single-author .author-body-about p:not(:last-child) {
  margin-bottom: 15px;
}
.page-single-author .author-body-top {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.page-single-author .write {
  padding-top: 0;
}
.page-single-author .write-tag {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-single-author .write-tag a {
  width: auto;
  padding-left: 19px;
  padding-right: 19px;
}

.page-inside {
  padding: 0;
}
@media (max-width: 1279px) {
  .page-inside {
    padding: 32px 16px;
  }
}
.page-inside .author-body {
  margin-bottom: 40px;
}
.page-inside .title-top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--typeColorThird4);
}
.page-inside .pagi-more {
  margin-bottom: 40px;
}
.page-inside .author-body-top .author-body-descr .author-body-name .hide-on-mob.h3 {
    margin-bottom: 0;
}
@media (max-width: 1279px) {
  .page-inside .author-body-top {
    justify-content: space-between;
    gap: 4px;
  }
  .page-inside .author-body-top .author-body-descr.mob {
    width: calc(100% - 16px - 98px);
  }
  .page-inside .author-body-top .author-body-descr.mob .post-info-author {
    width: 100%;
    flex-wrap: wrap;
  }
  .page-inside .author-body-top .author-body-descr.mob .author-body-name {
    flex-wrap: wrap;
    justify-content: start;
  }
  .page-inside .author-body-top .author-body-descr.mob .author-body-name .h3 {
    margin-bottom: 12px;
  }
}
@media (max-width: 1279px) {
  .page-inside .author-body-thumb {
    width: 98px;
    height: 98px;
  }
}
@media (max-width: 1279px) {
  .page-inside .author-body-thumb .logo-avat {
    width: 23px;
    height: 23px;
    right: 3px;
    bottom: 2px;
  }
}
@media (max-width: 1279px) {
  .page-inside .author-body-thumb span {
    width: 92px;
    height: 92px;
    border-width: 2px;
  }
}
.author-catalog {
  margin-bottom: 16px;
}
.author-catalog .one-right-post {
  gap: 24px;
}
.author-catalog .one-right-post .post-thumb {
  width: 400px;
  height: auto;
}
@media (max-width: 1279px) {
  .author-catalog .one-right-post .post-thumb {
    width: 100%;
  }
}
.author-catalog .one-right-post .post-thumb img {
  width: 100%;
}
.author-catalog .one-right-post .detal-right-info {
  width: calc(100% - 400px - 24px);
}
@media (max-width: 1279px) {
  .author-catalog .one-right-post .detal-right-info {
    width: 100%;
  }
}

/* / Page Team */
/* Page about */
.about-top {
  margin-bottom: 40px;
}

.author-wrap-about {
  margin-bottom: 24px;
}

.bl-info-special {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  .bl-info-special {
    width: 100% !important;
  }
}
.bl-info-special:nth-child(4) {
  width: calc(50% - var(--blocks-indent) / 2);
  gap: var(--blocks-indent);
}
.bl-info-special:nth-child(4) .one-special-info {
  width: 100%;
}
.bl-info-special .one-special-info {
  width: calc(50% - var(--blocks-indent) / 2);
}

.one-special-info {
  padding: 16px;
  border-radius: 12px;
  background-color: var(--bgSec);
  width: 100%;
  font-size: 16px;
}
.one-special-info a {
  color: var(--brend);
}

.about-command-block {
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .about-command-block {
    margin-top: 12px;
  }
}

/* / Page about */
/* Page contacts */
.cont-us-top {
  margin-bottom: 36px;
  position: relative;
}
@media (max-width: 1279px) {
  .cont-us-top {
    margin-bottom: 32px;
  }
}
@media (max-width: 1279px) {
  .cont-us-top.block-with-cols {
    gap: 24px;
  }
}
.cont-us-top:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: -16px;
  background-color: var(--typeColorThird4);
}

.bg-block {
  padding: 16px;
  border-radius: 12px;
  background-color: var(--bgSec);
  font-size: 16px;
  margin-bottom: 16px;
}
.bg-block.pad-24 {
  padding: 24px;
}
@media (max-width: 1279px) {
  .bg-block.pad-24 {
    padding: 12px;
  }
}
.bg-block + .bg-block {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .bg-block {
    font-size: 14px;
  }
}
.bg-block.big {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 1279px) {
  .bg-block.big {
    font-size: 16px;
  }
  .bg-block.big + p {
    text-align: center;
    margin-bottom: 0;
  }
}

.cont-type-full {
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  .cont-type-full {
    margin-bottom: 16px;
  }
}
.cont-type-full > div {
  gap: 16px;
}
.cont-type-full .one-cont {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cont-type-full .one-cont .one-cont-name {
  width: 190px;
}
@media (max-width: 1279px) {
  .cont-type-full .one-cont .one-cont-name {
    width: 100%;
    margin-bottom: 12px;
  }
}
@media (max-width: 1279px) {
  .cont-type-full .one-cont .one-cont-bt {
    width: 100%;
  }
}
.cont-type-full .one-cont .one-cont-bt .btn {
  background-color: var(--typeColorFirst1);
  font-weight: normal;
}
@media (max-width: 1279px) {
  .cont-type-full .one-cont .one-cont-bt .btn {
    width: 100%;
  }
}

.cont-soc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.cont-soc a img {
	filter: brightness(0.3);
    transition: filter 0.3s;
}
.cont-soc a:hover img {
	filter: brightness(1);
}
@media (max-width: 1279px) {
  .cont-soc {
    margin-bottom: 4px;
  }
  .cont-soc:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -16px;
    background-color: var(--typeColorThird4);
  }
}
.cont-soc a {
  display: flex;
  padding: 0 12px;
  border-radius: 24px;
  background-color: var(--bgSec);
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--typeColorSecond2);
  text-decoration: none;
}
@media (max-width: 1279px) {
  .adress.block-with-cols {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}
.adress p {
  margin-bottom: 16px;
}

/* / Page contacts */
h1 {
  font-family: var(--font-family-m);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

body {
  font-family: var(--font-family-m);
  margin: 138px 0 0 0;
  padding: 0;
}
@media (max-width: 1279px) {
  body {
    margin: 122px 0 0 0;
  }
}

html.opened-menu, html.opened-menu body {
  overflow: hidden;
  position: relative;
}

a {
  transition: all 0.3s;
}
a:hover {
  color: var(--brendSec);
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
body.home main {
	flex-direction: column-reverse;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  /*overflow: hidden;*/
  padding: 40px 0;
}
@media (max-width: 1279px) {
  section {
    padding: 32px 16px;
  }
}

.container {
  max-width: 1400px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 1480px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1279px) {
  .container {
    max-width: 1200px;
  }
}

.col-100 {
  width: 100%;
}

.col-75 {
  display: flex;
  flex-direction: column;
  width: calc(75% - var(--blocks-indent) / 2);
}
@media (max-width: 1279px) {
  .col-75 {
    width: 100%;
  }
}

.col-66 {
  display: flex;
  flex-direction: column;
  width: calc(67% - var(--blocks-indent) / 2);
}

.col-50 {
  display: flex;
  flex-direction: column;
  width: calc(50% - var(--blocks-indent) / 2);
}

.col-33 {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - var(--blocks-indent) * 2 / 3);
}

.col-33.c2 {
  width: calc(33.33% - var(--blocks-indent) / 2);
}

.col-25 {
  display: flex;
  flex-direction: column;
  width: calc(25% - var(--blocks-indent) * 3 / 4);
}

.col-25.c2 {
  width: calc(25% - var(--blocks-indent) / 2);
}

.col-25.c3 {
  width: calc(25% - var(--blocks-indent) * 2 / 3);
}

.col-20 {
  display: flex;
  flex-direction: column;
  width: calc(20% - var(--blocks-indent) * 4 / 5);
}

.col-20.c2 {
  width: calc(20% - var(--blocks-indent) / 2);
}

.col-20.c3 {
  width: calc(20% - var(--blocks-indent) * 2 / 3);
}

.col-20.c4 {
  width: calc(20% - var(--blocks-indent) * 3 / 4);
}

@media (max-width: 1279px) {
  .col-25 {
    width: calc(50% - var(--blocks-indent) / 2);
  }
  .col-25.c2,
  .col-25.c3 {
    width: 100%;
  }
  .col-66,
  .col-50,
  .col-33,
  .col-33.c2,
  .col-20 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .col-25 {
    width: 100%;
  }
}
.block-with-cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--blocks-indent);
}
.block-with-cols.start {
  justify-content: start;
}

/* Р Р°Р·РјРµСЂС‹ С‚РµРєСЃС‚РѕРІ - Start */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: var(--font-family-m);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a {
  color: var(--typeColorSecond2);
  text-decoration: none;
}

h1, .h1 {
  font-size: 28px;
}
@media (max-width: 1279px) {
  h1, .h1 {
    font-size: 24px;
  }
}

h2, .h2 {
  font-size: 22px;
}
@media (max-width: 1279px) {
  h2, .h2 {
    font-size: 20px;
  }
}

h3, .h3 {
  font-size: 20px;
}
@media (max-width: 1279px) {
  h3, .h3 {
    font-size: 16px;
  }
}

h4, .h4 {
  font-size: 16px;
}
@media (max-width: 1279px) {
  h4, .h4 {
    font-size: 14px;
  }
}

h5, .h5 {
  font-size: 20px;
}
@media (max-width: 1279px) {
  h5, .h5 {
    font-size: 24px;
  }
}

p {
  font-family: var(--font-family-m);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1279px) {
  p {
    font-size: 14px;
  }
}

.btn {
  border-radius: var(--radius-def);
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-decoration: none;
	transition: .3s ease-out;
}
.btn.prim-def {
  background-color: var(--brendSec);
  height: 38px;
  color: var(--typeColorFirst1);
  padding: 0 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  outline: none;
}
.btn.prim-def:hover {
	background-color: var(--brend);
  color: var(--black);
}
.btn.disabled {
  background-color: var(--typeColorThird4);
  cursor: not-allowed;
  color: var(--typeColorThird2) !important;
}
.btn.prim-sec {
  background-color: var(--bgSec);
  height: 33px;
  color: var(--black);
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
}
.btn.prim-sec img,
.btn.prim-sec svg {
  margin-left: 8px;
  margin-top: 2px;
  margin-right: 2px;
}
.btn.prim-sec svg path {
  transition: all 0.3s;
}
.btn.prim-sec:hover {
  color: var(--typeColorFirst1);
  background-color: var(--brendSec);
}
.btn.prim-third {
  height: 33px;
  color: var(--black);
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
}
.btn.prim-third img,
.btn.prim-third svg {
  margin-left: 8px;
  margin-top: 2px;
  margin-right: 2px;
}
.btn.prim-third svg path {
  transition: all 0.3s;
}
.btn.prim-third:hover {
  color: var(--brendSec);
}
.btn.prim-third:hover .hover-stroke path {
  stroke: var(--brendSec);
}
.btn.prim-third:hover .hover-fill path {
  fill: var(--brendSec);
}
.btn.prim-four {
  background-color: var(--bgSec);
  height: 33px;
  color: var(--typeColorSecond2);
  padding: 0 12px;
  font-weight: 600;
  font-size: 14px;
}
.btn.prim-four img,
.btn.prim-four svg {
  margin-top: 2px;
  margin-right: 6px;
}
.btn.prim-four svg path {
  transition: all 0.3s;
}
.btn.prim-four:hover {
  color: var(--brend);
  background: var(--brendSec);
}
.btn.prim-four:hover .hover-stroke path {
  stroke: var(--brend);
}
.btn.prim-four:hover .hover-fill path {
  fill: var(--brend);
}

/* Screen LEFT BIG (one big post in left part && 3 smaller in right part) */
.big-post .post-thumb {
  height: 386px;
  margin-bottom: 24px;
}
.big-post .post-thumb a:not(.tag) {
  height: 100%;
}
/* .big-post .post-thumb img {
  height: inherit;
  width: auto;
  max-width: unset;
} */
@media (max-width: 1480px) {
  .big-post .post-thumb {
    height: 330px;
  }
  .big-post .post-thumb img {
    max-width: 100%;
  }
}
@media (max-width: 1279px) {
  .big-post .post-thumb {
    height: auto;
    margin-bottom: 12px;
  }
}
.big-post .author {
  margin-bottom: 12px;
  font-size: 14px;
}
@media (max-width: 1279px) {
  .big-post .author {
    margin-bottom: 8px;
  }
}
.big-post .descr p {
  -webkit-line-clamp: 2;
  margin-bottom: 24px;
}
.big-post .descr h2 {
  margin-bottom: 16px;
  font-size: 28px;
}
@media (max-width: 1279px) {
  .big-post .descr h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.post-def .post-thumb {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.post-def .post-thumb img {
  border-radius: 12px;
	transition: .3s ease-out;
}
.post-def .post-thumb:hover img {
	transform: scale(1.03);
}
.post-def .descr h2 {
  margin-bottom: 12px;
}
.post-def .descr p {
  /* height: 44px; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 1279px) {
  .post-def .descr p {
    /* height: 36px; */
  }
}
.post-info {
  color: var(--typeColorThird2);
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 14px;
}
@media (max-width: 1279px) {
  .post-info {
    font-size: 12px;
  }
}
.post-info > div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-info.just-info {
  justify-content: space-between;
}

.right-posts {
  gap: 32px;
}
@media (max-width: 1279px) {
  .right-posts {
    gap: 24px;
  }
}
.right-posts .one-right-post {
  gap: 24px;
}
@media (max-width: 1279px) {
  .right-posts .one-right-post {
    gap: 16px;
  }
}
.right-posts .one-right-post .post-thumb {
  width: 292px;
  height: 165px;
  overflow: hidden;
}
@media (max-width: 1480px) {
  .right-posts .one-right-post .post-thumb {
    width: 282px;
    height: 160px;
  }
}
@media (max-width: 1279px) {
  .right-posts .one-right-post .post-thumb {
    width: calc(50% - 8px);
    height: auto;
  }
}
.right-posts .detal-right-info {
  width: 370px;
}
@media (max-width: 1480px) {
  .right-posts .detal-right-info {
    width: calc(100% - 282px - 24px);
  }
}
@media (max-width: 1279px) {
  .right-posts .detal-right-info {
    width: calc(50% - 8px);
  }
}
.right-posts .descr p {
  font-size: 14px;
}
@media (max-width: 1279px) {
  .right-posts .descr p {
    display: none;
  }
}
@media (max-width: 1279px) {
  .right-posts .upd,
  .right-posts .authors {
    display: none;
  }
}
.right-posts .authors {
  font-size: 12px;
}
.right-posts .post-info {
  font-size: 12px;
}

.one-right-post .post-thumb {
  height: 185px;
}
@media (max-width: 1480px) {
  .one-right-post .post-thumb {
    height: 165px;
  }
  .one-right-post .post-thumb img {
    min-height: 100%;
  }
}
@media (max-width: 1279px) {
  .one-right-post .post-thumb img {
    width: 100%;
  }
}
.one-right-post .descr p {
  /* height: 58px; */
  -webkit-line-clamp: 3;
}
.one-right-post .descr h4 {
  margin-bottom: 12px;
}
.one-right-post .author {
  margin-bottom: 8px;
}

.detal-right-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1279px) {
  .detal-right-info {
    gap: 8px;
  }
}

/* End Screen LEFT BIG */
/* Screen carousel */
.carousel {
  width: 100%;
}

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

.vertical-post .post-thumb {
  height: 185px;
  margin-bottom: 12px;
}
@media (max-width: 1480px) {
  .vertical-post .post-thumb {
    height: auto;
  }
}
@media (max-width: 1279px) {
  .vertical-post .post-thumb img {
    width: 100%;
  }
}
.vertical-post .author {
  margin-bottom: 8px;
  font-size: 12px;
}
.vertical-post .descr p {
  -webkit-line-clamp: 2;
  margin-bottom: 12px;
  height: 36px;
  margin-bottom: 16px;
  font-size: 14px;
}
.vertical-post .descr h2 {
  margin-bottom: 8px;
  height: 58px;
}
.descr h2 a:hover {
	color: var(--brendSec);
}
.vertical-post .post-info {
  justify-content: space-between;
  font-size: 12px;
}

.carous-el {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carous-el .swiper-pagination {
  position: static;
}
.carous-el .nav-car {
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
	transition: .3s ease-out;
}
.carous-el .nav-car:hover {
	background-color: var(--brend);
}
/* .carous-el .nav-car:hover img {
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease-out;
} */
.carous-el .swiper-button-nexts img {
  transform: rotate(180deg);
}
.carous-el .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #fff;
	transition: .3s ease-out;
}
.carous-el .swiper-pagination-bullet:hover {
	background-color: #ED4801;	
}
@media (max-width: 1279px) {
  .carous-el .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.carous-el .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--typeColorSecond2);
}

.post-thumb a {
  display: block;
}
/* Page 404 - Start */
.error-404 {
	height: calc(100vh - 138px);
	padding: 64px 0;
	background-color: var(--bgSec);	
}
.error-404 h1 {
	font-size: 240px;
	font-weight: 700;
	margin-bottom: 20px;
}
.error-404 p {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 24px;
}
.error-404 > span {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 48px;
}
.error-404 a {
	gap: 4px;
	height: 53px;
	background-color: var(--brend);
    color: var(--typeColorFirst1);
    padding: 0 24px;
    font-weight: 600;
    border: none;
    outline: none;
	transition: .3s ease-out;
}
.error-404 a:hover {
	background-color: #822700;
}
.error-404 a > span {
	font-size: 24px;
}
@media (max-width: 768px) {
  .error-404 h1 {
		font-size: 140px;
	}
	.error-404 p {
		font-size: 32px;
	}
	.error-404 > span {
		font-size: 16px;
	}
}
/* Page 404 - End */

/* / Screen carousel *//*# sourceMappingURL=style.css.map */

/* pros_cons style START */
figure.wp-block-table.pros_cons table {
  background: transparent;
}
figure.wp-block-table.pros_cons thead {
  border: 0;
}
figure.wp-block-table.pros_cons table tr td {
  background: rgba(255, 0, 0, 5%);
}

figure.wp-block-table.pros_cons table tr td:first-child {
  background: rgba(15, 206, 0, 5%);
}

figure.wp-block-table.pros_cons table:not(:has(thead)) tr:first-child td,
figure.wp-block-table.pros_cons table tr th {
  background: rgba(255, 0, 0, 25%);
  border-color: var(--typeColorThird4);
  color: #242632;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

figure.wp-block-table.pros_cons table tr td {
  border-color: var(--typeColorThird4);
}

figure.wp-block-table.pros_cons table:not(:has(thead)) tr:first-child td:first-child,
figure.wp-block-table.pros_cons table tr th:first-child {
  background: rgba(15, 206, 0, 25%);
}

/* pros_cons style END */

.bold {
  font-weight: 700;
}

.lower {
  text-transform: lowercase;
}

.share-block {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--typeColorThird4);
  padding-top: 20px;
  margin-top: 20px;
}

.copyright {
  font-size: 14px;
}

/* warning play start */
.warning-play {
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.warning-play .icon {
    width: 50px;
    padding-right: 5px;
    flex-shrink: 0;
}
.warning-play .icon svg path,
.warning-play .icon svg polygon {
    fill: var(--brend);
}
/* warning play end */

.placeholder {
  background: var(--bgSec);
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.inner-content {
  padding-left: 64px;
}

.post-grid {
  --post-grid-gap: 96px;
  gap: var(--post-grid-gap);
  row-gap: 32px;
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: max-content 1fr;
  grid-template-areas: 
  'content ads'
  'content sidebar';
  margin-top: 24px;
}
.post-grid .info-top {
  grid-area: ads;
  position: relative;
}
.post-grid .info-top__content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-grid .info-top__title {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  max-width: 80%;
}
.post-grid .info-top .btn {
  background: var(--brend);
  color: #010101;
  height: 36px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all .4s ease;
  margin-top: auto;
}
.post-grid .info-top .btn:hover {
  background: var(--bgSec);
}
.post-grid .info-top img {
  width: 100%;
}
.post-grid .col-75 {
  grid-area: content;
}
.post-grid .col-25 {
  grid-area: sidebar;
}
.post-grid .col-75,
.post-grid .col-25 {
  width: 100%;
}

.post-grid .broad-wrap {
  padding-top: 0;
}

@media (max-width: 1279px) {
  .post-grid {
    --post-grid-gap: 24px;
    display: flex;
    margin-bottom: 40px;
    margin-top: 0;
    row-gap: 16px;
  }
  .inner-content {
    padding-left: 0;
  }
  .post-grid .info-top {
    margin-right: -16px;
    margin-left: -16px;
    background: var(--bgSec);
    width: calc(100% + 32px);
    padding: 16px;
  }
  .post-grid .info-top__content {
    padding: 30px;
  }
}
.small-post-thumb {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}
.small-post-thumb .post-thumb {
  width: 140px;
  height: 112px;
}
.small-post-thumb .post-thumb a {
  height: 100%;
}
.small-post-thumb .post-thumb img {
  object-fit: cover;
}
.small-post-thumb .cat-label {
  position: static;
  margin-bottom: 8px;
  display: inline-block;
}
.small-post-thumb .detal-right-info {
  width: 100%;
}
.small-post-thumb .h3 {
  font-size: 16px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-bottom: 0 !important;
}

.side-posts:has(.small-post-thumb) {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

