@font-face {
  font-family: "GothamBold";
  src: url("../index/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaBoldCond";
  src: url("../index/HelveticaNeue-BoldCond.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "GothamBook";
  src: url("../index/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "TgLa7";
  src: url("../index/TgLa7.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NotoSerifItalic";
  src: url("/fonts/NotoSerif-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "HelveticaNeueCondensed";
  src: url("/fonts/HelveticaNeue-Condensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

a,
button {
  cursor: pointer;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "TgLa7", sans-serif;
  background-color: white;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width:1020px;
  width:100%;
  margin: 0 auto;
  padding: 0px 10px;
}

header {
  padding-bottom: 14px;
  color: white;
  background-color: #0b1440;
  overflow: hidden;
  box-shadow: 0px 12px 16px #00000089;
  height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.header-top {
  background-color: #0b1440;
  padding-bottom: 10px;
  transition: all 0.3s ease;
  z-index: 1000;
}
.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0b1440;
  z-index: 1000;
  box-shadow: 0px 12px 16px #00000089;
}

.person {
  display: none;
}
.header-bottom {
  transition: all 0.3s ease;
}

.header-bottom.hide {
  display: none;
}

/* Логотипы */
.logobig {
  display: block;
}

.logosmall {
  display: none;
}

.accedi-txt {
  color: white;
  text-transform: capitalize;
  border: 1px solid white;
  font-family: "GothamBold";
  border-radius: 8px;
  padding: 10px 30px !important;
  margin-left: 32px;
}

.left-header {
  display: flex;
  flex-direction: row;
  gap: 90px;
}

.menu-icon {
  display: flex;
  align-items: center;
  gap: 0.5px;
  flex-direction: column;
}
.icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon div {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text {
  font-weight: bold;
  font-size: 28px;
}

.logo .tg {
  background-color: #2f512a;
  padding: 5px 10px;
  font-size: 32px;
}

.logo .la7 {
  font-size: 32px;
}

.icons img {
  width: 24px;
  height: 24px;
}

.update-time {
  text-align: center;
  font-size: 14px;
  margin: 10px 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;

  font-family: "HelveticaBoldCond", sans-serif;
}
.update-time2 {
  display: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
  white-space: nowrap;

  line-height: 1.25;
}

nav a:not(:last-child) {
  border-right: 1px solid white;
  padding-right: 12px;
  /* margin-right: 12px; */
  line-height: 1;
}

/* main */
.pre-start {
  display: flex;
  align-items: flex-start;
}
.pre-start p {
  color: #be0000;
  margin-bottom: 12px;
  font-weight: 900;
}
.container-dot-live {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-top: 25px;
}
.dot {
  width: 4px;
  height: 4px;
  background-color: #be0000;
  border-radius: 50%;
  position: relative;
  opacity: 1;
}

.border {
  border: 1px solid #be0000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  animation: animatedDot 1.5s infinite ease-in-out;
}
@keyframes animatedDot {
  5% {
    width: 11px;
    height: 11px;
  }

  10% {
    width: 10px;
    height: 10px;
  }
  15% {
    width: 9px;
    height: 9px;
  }
  20% {
    width: 8px;
    height: 8px;
  }
  25% {
    width: 7px;
    height: 7px;
  }
  30% {
    width: 6px;
    height: 6px;
  }
  35% {
    width: 5px;
    height: 5px;
  }
  40% {
    width: 4px;
    height: 4px;
  }
  45% {
    width: 3px;
    height: 3px;
  }
  50% {
    width: 2px;
    height: 2px;
  }
  55% {
    width: 3px;
    height: 3px;
  }
  60% {
    width: 4px;
    height: 4px;
  }
  65% {
    width: 5px;
    height: 5px;
  }
  70% {
    width: 6px;
    height: 6px;
  }
  75% {
    width: 7px;
    height: 7px;
  }
  80% {
    width: 8px;
    height: 8px;
  }
  85% {
    width: 9px;
    height: 9px;
  }
  90% {
    width: 10px;
    height: 10px;
  }
  95% {
    width: 11px;
    height: 11px;
  }
}
.maincontent-wrapper {
  display: flex;
  flex-direction: row;
}
article {
  flex: 2.5;
  padding: 15px;
}
.sidebar {
  flex: 1.4;

  padding: 20px;
  border-right: 12px solid #ffcc00;
  margin-bottom: 50px;
}
h1 {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-family: "GothamBold", sans-serif;
  letter-spacing: -1px;
}
.author {
  color: green;
  font-weight: bold;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 26px;
  color: #045020;
  font-weight: 900;
}
.subtitle-text {
  padding: 0;
}
article p {
  padding: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
  font-family: "GothamBook", sans-serif;
}
h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}
.subtitle-text {
  margin-bottom: 24px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 14px;
}


/* aside */
.sidebat-title {
  margin-bottom: 10px;
  color: #fec42d;
  font-size: 19px;
}
.podcast {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid gray;
}

.podcast img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.podcast-title {
  font-weight: bold;
  margin-top: 5px;
  line-height: 1.6;
}

/* footer */
.footer {
  background-color: #dbe0e7;
  font-family: "GothamBook", sans-serif;
  color: #000;
  font-size: 0.9rem;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo {
}
.footer-logo img {
  height: 60px;
}
.footer-links {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: white;
}
.footwr-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  align-items: flex-start;
}
.footwr-links-wrapper a,
p {
  padding: 27px 0px 21px 20px;
}

.footer-column {
  flex: 1;

  margin-bottom: 40px;
}
.footer-column p {
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
}
.footer-bottom {
  padding-top: 15px;
  padding-bottom: 30px;
}
.footer-socials {
  padding-top: 20px;
}
.footer-socials i {
  margin-right: 15px;
}
.fab.fa-x-twitter,
.fab.fa-facebook-square,
.fab.fa-youtube,
.fab.fa-instagram,
.fab.fa-telegram:before {
  font-size: 30px;
  color: #7e8e96;
}
.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-twitter {
  width: 24px;
  height: 24px;
}
.copyright-text {
  list-style: 1.5;
  font-size: 15px;
}
article img, article video{
  width: 100%;
    margin-bottom: 16px;
}
article p a, article h2 a, article li p a, h1 a{
    font-family: TgLa7, sans-serif;
    font-weight: 900;
    text-decoration: underline;
}

@media (max-width: 768px) {
  .container{
    padding: 0 20px;
  }
  .pre-start{
    display: none;
  }
  article h1{
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -1px;
  }
  article p{
    font-size: 16px;
  }
  article * {
    -webkit-font-smoothing: antialiased;
  }
  /* header */

  .update-time2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .logo .tg {
    background-color: transparent;
  }
  .logobig {
    width: 160px;
  }
  nav a{
    font-size: 14px;
  }
  .accedi-txt {
    display: none;
  }

  .logo {
    font-size: 24px;
  }
  .update-time {
    display: none;
  }
  .person {
    display: block;
  }

  .container-dot-live {
    margin-top: 12px;
    margin-left: 0px;
  }

  nav {
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    padding-left: 5px;
  }

  /* main */
  h1 {
    font-size: 30px;
  }
  .pre-start p {
    font-size: 15px;
    padding-bottom: 0;
  }
  .author {
    padding: 0;
    font-size: 11px;
    margin-bottom: 1px;
  }
  .image-container img {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .caption {
    font-size: 18px;
    line-height: 1.2;
    padding: 0;
    font-family: "NotoSerifItalic";
  }
  main .container {
    padding: 0;
  }
  .sidebar {
    padding-top: 20px;
    flex: 1 1 100%;
    border: none;
    padding-bottom: 0;
    padding-left: 0;

    background-color: #fff1ce;
  }
  .podcast-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 10px;
  }

  .podcast {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    scroll-snap-align: start;
    border-bottom: none;
    margin-bottom: 0;
  }

  .podcast img {
    width: 300px;
    height: 180px;

    border-radius: 10px;
  }

  .podcast-title {
    margin-top: 10px;
    text-align: left;
    font-size: 16px;
    line-height: 1.1;
    padding: 0;
    font-weight: bold;
  }

  .sidebat-title {
    text-align: start;
    padding: 9px 43px 9px 24px;
    font-size: 20px;
    margin-bottom: 20px;
    background-color: #fec42d;
    color: white;
    display: inline-block;
    margin-left: -10px;
    margin-bottom: 20px;
  }

  .maincontent-wrapper {
    flex-direction: column;
 
  }

  /* footer */

  .footer-wrapper {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .footer-logo img {
    margin-left: -10px;
  }
  .footer-links {
    padding-top: 80px;
  }
  .footwr-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: start;
    /* padding: 10px 20px; */
    text-align: left;
  }
  .footwr-links-wrapper a,
  p {
    padding: 10px;
  }
  .footer-column {
    min-width: none;
    font-size: 11px;
  }

  .footer-column {
    margin-bottom: 0;
  }

  .footer-column p {
    margin: 6px 6px 6px 0px;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    overflow: hidden;
  }

  .footer-socials {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -330px;
  }
  
  .footer-socials a {
    padding: 5px;
  }

  .footer-socials i {
    font-size: 26px;
    color: #7e8e96;
  }

  .footer-bottom-wrapper {
    align-items: center;

    gap: 10px;
  }

  .footer-bottom img {
    width: 50px;
  }

  .copyright-text {
    font-size: 13px;
    line-height: 1.5;
  }
}


.customJS-styles__activation-message {
  color: white;
  font-weight: 700;
  font-size: 16px;
  background: #073e86c2;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 0px!important;
  margin-top: 0!important;
}

.customJS-styles__icon {
  color: red;
  font-size: 35px;
  text-align: center;
  margin-right: 7px;
}
