* {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

ul {
  margin-inline-start: 0;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

h1 {
  display: block;
  font-size: unset;
  margin-block-start: unset;
  margin-block-end: unset;
  margin-inline-start: unset;
  margin-inline-end: unset;
  font-weight: unset;
  unicode-bidi: unset;
}

a {
  text-decoration: none;
  color: unset;
}

header {
  background: #cccccc url("Images/background1.png") no-repeat;
  background-position: top right;
  height: 98px;
  flex-shrink: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  min-height: 0;
}

.container--flex {
  position: static;
  display: flex;
  flex-direction: row;
  max-width: 900px;
  flex: 1;
  min-height: 0;
}

.header-main {
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.header__title {
  box-sizing: border-box;
  padding-top: 15px;
  font-size: 21px;
  font-weight: normal;
  font-family: "Segoe UI", sans-serif;
  padding-left: 90px;
}

.line {
  width: 1px;
  height: 100%;
  border-left: 2px solid #d9d9d9;
  position: relative;
  flex-shrink: 0;
}

.line::after {
  content: url(Images/romb.svg);
  position: absolute;
  width: 11px;
  height: 11px;
  bottom: 0px;
  left: calc(50% - 2px);
  transform: translateX(-50%);
}

.nav-list {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding-left: 15px;
  padding-right: 30px;
  padding-top: 0;
  list-style: none;
  font-weight: bold;
  font-weight: 400;
  font-size: 20px;
  color: #9d9d9d;
  flex-shrink: 0;
}

.nav-list__item {
  position: relative;
  cursor: pointer;
}

.nav-list__item--active {
  color: #000;
}

.active {
  font-size: 32px;
  color: #000;
}

.nav-pointer {
  position: absolute;
  content: url(Images/selected.svg);
  right: 0;
  transform: translateX(5px);
}

.release-cards {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 6.5px;
  transform: translateX(-7px);
  z-index: 5;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.release-cards__item {
  padding-bottom: 40px;
  scroll-behavior: smooth;
  scroll-snap-align: start;
  width: 100%;
}

.release-header {
  padding-bottom: 25px;
}

.release-version {
  position: relative;
  padding-left: 15px;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.release-version:hover {
}

a.release-version::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("Images/save.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.release-version--nolink::after {
  content: " ";
}

.release-date {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: #9d9d9d;
  padding-left: 15px;
  padding-bottom: 5px;
}

.release-date::after {
  position: absolute;
  content: url(Images/romb.svg);
  width: 12px;
  height: 12px;
  left: -7px;
  z-index: 100;
}

h3 {
  font-weight: 700;
  font-size: 15px;
  color: #008f86;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 15px;
}

.release-text {
  padding-left: 30px;
  font-size: 14px;
  line-height: 190%;
}

ol {
  padding-left: 35px;
}

ul {
  padding-left: 45px;
  list-style-type: disc;
}

.para-comment {
  font-style: italic;
}

.image-wrapper {
  position: relative;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.image {
  width: 60%;
  cursor: zoom-in;
  transition: all 0.5s ease-in-out;
}

.image:hover {
  scale: 1.25;
  background-color: white;
  padding: 5px;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
  filter: drop-shadow(0 0 0.25rem #9d9d9d);
  z-index: 100;
}

@media (max-width: 760px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav-list {
    font-size: 16px;
  }
}

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: background-color 0.5s ease, opacity 0.15s ease;
}

.preloader-wrapper.hidden {
  opacity: 0;
}

.preloader {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  margin: 30px auto;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #008f86;
  animation: preloader-5-spin 2s linear infinite;
}

.preloader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #54686f;
  animation: preloader-5-spin 3s linear infinite;
}

.preloader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9f0412;
  animation: preloader-5-spin 3.5s linear infinite;
}

@keyframes preloader-5-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h2 {
  margin-top: 0px;
}