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

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

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

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

a {
  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,
p {
  margin: 0;
  font-weight: normal;
}

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

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

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

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

#topList,
#topList * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: inherit;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
#topList {
  width: 90%;
  margin-bottom: 16px;
}

#topList li {
  display: flex;
  justify-content: space-between;
}
.topList__person {
  width: 40%;
  display: grid;
  grid-template-columns: 25px max-content 1fr;
  align-items: center;
}
.topList__person--name {
  line-height: 1;
}

.topList__person--ava img {
  width: 50px;
  height: 50px;
  margin-left: 14px !important;
  margin-right: 8px !important;
  border-radius: 50%;
}
.topList__progress {
  display: flex;
  align-items: center;
  width: 50%;
}

.progressBar {
  display: block;
  height: 25px;
  margin: 0 20px !important;
  background-color: #ff9900;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: progress-bar-stripes 2s linear infinite;
  transition: 800ms ease-out;
  width: 40%;
}
@media screen and (max-width: 800px) {
  #topList li {
    flex-direction: column;
    margin-bottom: 12px !important;
  }
  .topList__progress {
    margin-top: 2px !important;
    margin-left: 19px !important;
  }
  .topList__person,
  .topList__progress {
    width: 100%;
  }
}

#calculator,
#calculator * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}
#calculator {
  width: 100%;
  margin-bottom: 16px;
}
.sliderValues {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#slider {
  position: relative;
  appearance: none;
  width: 100%;
  height: 20px;
  background: #ff9900;
  border-radius: 10px;
  outline: none;
  margin-top: 8px;
  z-index: 3;
}
#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #9c6000;
  z-index: 4;
}
.sliderValues span {
  position: relative;
}
.sliderValues span::after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 6px;
  background: #000;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}
.currentValue__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -6px;
  margin-bottom: 14px !important;
}
#currentValue {
  text-align: center;
  display: inline-block;
  border: 2px solid #ff9900;
  width: 25%;
  padding: 6px 0;
  margin: 0 auto;
  border-top: none;
  white-space: nowrap;
}
#calculator p {
  text-align: center;
  margin-bottom: 4px;
}

.mainComments {
  margin-bottom: 24px;
}
.mainComments h3 {
  color: #75868e;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}
.commentsHeader {
  font-size: 16px;
  color: #122e5b;
  display: flex;
  border-bottom: 1px solid #d6deeb;
  width: 100%;
  margin-bottom: 24px;
}
.commentsHeader a {
  padding: 8px 12px;
}
.comment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.commentAva {
  box-shadow: 0 0.125rem 0.25rem #0000001a;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 48px;
  height: 48px;
  background: #f0f2f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commentAva span {
  color: #b2b9be;
  font-weight: 600;
  font-size: 19px;
}
.commentAuthor {
  font-size: 16px;
  color: #122e5b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.commentAuthor::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #75868e;
  display: block;
  margin-right: 4px;
}
.commentHeader {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.commentHeader span {
  font-size: 12px;
  color: #75868e;
}
.commentContent p {
  font-size: 16px;
  color: #2b3135;
  margin: 0;
}
.commentFooter {
  gap: 24px;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.commentReply {
  font-size: 14px;
  color: #75868e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.commentReply img {
  width: 16px;
  height: 16px;
  margin: 0;
}
.commentOptions {
  font-size: 14px;
  color: #75868e;
  display: flex;
  align-items: center;
  gap: 4px;
}
.commentOptions img {
  width: 8px;
  height: 8px;
  margin: 0;
}
.commentLikes {
  display: flex;
  align-items: center;
}
.commentLikes span {
  padding: 8px;
  font-size: 14px;
}
.comLikes {
  color: #00691d;
  font-weight: 600;
}
.comDislikes {
  color: #c11b1b;
  font-weight: 600;
}
.comDivider {
  background: #b2b9be;
  height: 18px;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .comment {
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }
  .commentAva {
    width: 32px;
    height: 32px;
  }
  .commentAuthor {
    font-size: 14px;
  }
  .commentHeader span {
    font-size: 10px;
  }
  .commentContent p {
    font-size: 14px;
  }
  .commentLikes span,
  .commentOptions,
  .commentReply {
    font-size: 12px;
  }
}

.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;
}

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

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

.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;
}

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

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;
}
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;
}

/* 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 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;
}
.copyright-text {
  list-style: 1.5;
  font-size: 15px;
}
article img {
  width: 100%;
  margin-bottom: 16px;
}
article p a,
article h2 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;
  }
  .logobig {
    width: 160px;
  }
  nav a {
    font-size: 14px;
  }
  .accedi-txt {
    display: none;
  }

  .logo {
    font-size: 24px;
  }
  .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;
  }
  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;
  }
}

@media (max-width: 663px) {
  nav {
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    display: none;
    padding-left: 5px;
  }
}
.container {
  max-width: 1020px;
}
.sidebar {
  border: none;
}
@media (max-width: 768px) {
  main .container {
    padding: 0px 15px;
  }
  .header-top-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  .logo img {
    max-width: 180px;
  }
  .header-bottom nav {
    overflow-x: auto;
    white-space: nowrap;
  }
  .header-bottom nav a {
    font-size: 12px;
    padding: 8px 12px;
  }
  h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  h2 {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }
  .maincontent-wrapper {
    flex-direction: column;
  }
  article {
    width: 100% !important;
  }
  .sidebar {
    margin-top: 30px;
    width: 100% !important;
  }
  #calculator {
    padding: 15px;
  }
  .sliderValues {
    flex-wrap: wrap;
    gap: 5px;
  }
  .sliderValues span {
    font-size: 12px;
  }
  #topList li {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .topList__person {
    width: 100%;
    margin-bottom: 10px;
  }
  .topList__progress {
    width: 100%;
  }
  .comment {
    flex-direction: column;
    align-items: flex-start;
  }
  .commentContent {
    margin-top: 10px;
    width: 100%;
    margin-left: 0px !important;
  }
  .footer-wrapper,
  .footwr-links-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    margin-bottom: 20px;
  }
  .podcast-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 20px !important;
  }
  h2 {
    font-size: 18px !important;
  }
  .logo img {
    max-width: 150px;
  }
  .header-bottom nav a {
    font-size: 11px;
    padding: 6px 10px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding: 50vh;
}

.form-wrapper {
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
}