* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: inherit;
}

@font-face {
  font-family: "MG Glaho Drunk";
  src: url("../fonts/mg_glaho_drunk.ttf");
}
@font-face {
  font-family: "Noto Sans Georgian";
  src: url("../fonts/Noto Sans Georgian.woff2");
}
:root {
  --clr-primary: rgb(0, 4, 103);
  --clr-red: #a00a16;
  --border-vol: 1px solid rgba(0, 4, 103, 0.4);
  --sz-font-title-main: 64px;
  --sz-font-title-sub: 36px;
  --sz-font-title-sub2: 24px;
  --sz-font-title-article: 36px;
  --lh-font-title-main: 75px;
  --lh-font-title-sub: 38px;
  --lh-font-title-sub2: 30px;
  --lh-font-article: 44px;
}

body {
  font-family: "MG Glaho Drunk", sans-serif;
  background-image: url("../img/bg.png");
  background-repeat: repeat;
  background-attachment: fixed;
  height: 100vh;
}
body img {
  user-select: none;
}

.desktop-only {
  display: block;
}

.mob-only {
  display: none;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.border-on {
  border: var(--border-vol);
}

.text-fixed {
  color: rgba(0, 4, 103, 0.5);
}

.clr-normal {
  color: #000467;
}

header,
.container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.site-intro {
  margin-bottom: 30px;
  font-size: 1.7em;
  padding-left: 20px;
}

input[type=range] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

[data-should-append] {
  min-height: 43px;
}

header {
  margin-top: 40px;
}

footer {
  background-color: #004b91;
  padding: 10px;
  color: #fff;
}
footer .footer_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
}
footer .footfbicon {
  display: block;
  width: 40px;
  height: 22px;
  background-image: url("../img/fb.png");
  width: 40px;
  height: 22px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.container {
  min-height: 100vh;
  font-weight: 400;
  color: var(--clr-primary);
}
.container img {
  width: 100%;
}
.container .player__play {
  height: 44px;
}
.container .player__play img {
  width: 44px;
  height: 44px;
}
.container .title {
  text-align: center;
  margin-bottom: 68px;
}
.container .title__main {
  font-size: var(--sz-font-title-main);
  line-height: var(--lh-font-title-main);
  margin-top: -10px;
  margin-bottom: 90px;
}
.container .title__intro {
  font-size: var(--lh-font-title-sub);
  line-height: var(--lh-font-title-sub);
  margin-bottom: 32px;
}
.container .title__intro-sub {
  font-size: var(--sz-font-title-sub2);
  line-height: var(--lh-font-title-sub2);
  margin-bottom: unset;
}
.container .article-parent {
  display: flex;
  position: relative;
  margin-bottom: 60px;
}
.container .article-parent .article__content {
  position: relative;
}
.container .article-parent .article__content .text-fixed {
  top: 0;
  position: absolute;
  z-index: -1;
  filter: opacity(0.5);
}
.container .article-parent:nth-child(even) .article__content--img {
  float: left;
}
.container .article-parent:nth-child(odd) .article__content--img {
  float: right;
}
.container .article-parent aside {
  display: unset;
  width: 60px;
}
.container .article-parent aside .player {
  z-index: 22;
  position: sticky;
  top: 25px;
  margin-top: 95px;
}
.container .article {
  flex: 1;
  padding-left: 20px;
  min-height: 1000px;
  height: 100%;
}
.container .article .stars {
  font-size: var(--sz-font-title-article);
  line-height: var(--lh-font-article);
  margin-bottom: 15px;
}
.container .article .stars::before, .container .article .stars::after {
  content: "*";
  display: inline-block;
}
.container .article__title {
  font-size: var(--sz-font-title-article);
  line-height: var(--lh-font-article);
  margin-bottom: 15px;
  min-height: 44px;
}
.container .article__start-audio {
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: var(--clr-red);
  font-family: "Noto Sans Georgian";
  margin-bottom: 34px;
}
.container .article__content--text {
  font-size: var(--sz-font-title-article);
  line-height: 58px;
  line-height: 2;
  margin-bottom: 30px;
}
.container .article__content--img {
  margin-left: 5px;
  width: max-content;
}
.container .article__content--img img {
  max-width: 400px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.player {
  background: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: 44px;
}
.player:hover {
  width: unset;
}
.player:hover .player-right {
  background: #fff;
  padding: 6px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
}
.player-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.player .icon {
  cursor: pointer;
  display: flex;
}
.player__play {
  height: 60px;
}
.player__volume {
  border-radius: 14px;
  padding: 3px 5px;
  display: flex;
  margin-right: 14px;
  accent-color: var(--clr-primary);
}
.player__volume .player__volume--range {
  margin-right: 10px;
}
.player__volume .vol-on img {
  margin-right: 8px;
}
.player__volume--range {
  width: 86px;
}
.player__progress {
  width: 255px;
  accent-color: var(--clr-primary);
  margin-right: 14px;
}
.player__progress input {
  flex: 1;
}

.workers {
  display: flex;
  margin-bottom: 30px;
  font-size: var(--sz-font-title-sub2);
  line-height: var(--lh-font-title-sub2);
}
.workers ul {
  display: flex;
  list-style: none;
  margin-left: 20px;
}
.workers ul li {
  margin-right: 10px;
}

@media (max-width: 768px) {
  :root {
    --sz-font-title-main: 24px;
    --sz-font-title-sub: 16px;
    --sz-font-title-sub2: 14px;
    --sz-font-title-article: 16px;
    --lh-font-title-main: 30px;
    --lh-font-title-sub: 22px;
    --lh-font-title-sub2: 22px;
    --lh-font-article: 20px;
  }

  .desktop-only {
    display: none;
  }

  .mob-only {
    display: block;
  }

  header {
    margin: 10px 10px 17px 0;
  }
  header img {
    margin-left: 10px;
    width: 120px;
    height: 20px;
  }

  body {
    background-size: 190%;
  }

  main {
    padding: 0 15px;
  }

  .container .title {
    margin-bottom: unset;
  }
  .container .article__content--text {
    min-height: unset;
  }
  .container .title__main {
    margin-bottom: 22px;
  }
  .container .title__intro {
    margin-bottom: 30px;
  }
  .container .player__play {
    height: 44px;
  }
  .container .player__play img {
    width: 44px;
    height: 44px;
  }
  .container .player__progress {
    margin-right: unset;
  }
  .container .player-right {
    flex: 1;
  }
  .container .player__volume--range {
    width: 56px;
    margin-right: 30px;
  }
  .container .article-parent {
    display: block;
    margin-bottom: 30px;
  }
  .container .article-parent aside {
    width: 44px;
  }
  .container .article-parent aside .player {
    margin-top: 70px;
    max-width: 500px;
  }
  .container .article__content--img {
    float: unset;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .container .text-fixed .article__content--img {
    visibility: hidden;
  }
  .container .article__start-audio {
    font-size: 16px;
    line-height: 22px;
    padding-left: 40px;
  }
  .container .player__progress {
    width: 100%;
  }

  .workers {
    display: block;
    text-align: center;
  }
  .workers ul {
    flex-direction: column;
    margin: 0;
    margin-top: 20px;
  }

  .footer_in > p {
    width: max-content;
  }

  .container .article-parent .article__content .text-fixed {
    top: -5px;
  }

  .site-intro {
    font-size: 1.1em;
  }
}
@media (min-width: 1440px) {
  body {
    background-size: 100%;
  }
}
