/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}


body {
    /* font-family: -apple-system,BlinkMacSystemFont,Roboto; */
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.5px;
    word-spacing: 1.2px;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    color: #fff;
}

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

h1 {
    font-size: 1.6em;
    margin: 0.3em 0;
    font-weight: 500;
}

h2 {
    font-weight: 500;
}

p {
    font-size: 1em;
    padding: 1em 0;
    line-height: 1.5em;
}
.background-color-1 {
    background-color: color(srgb 0.0039 0.0039 0.0039);
}

.background-color-2 {
    background-color: color(srgb 0.1138 0.1136 0.1223);
}

.link-1 {
    color: #fff;
}

.link-1:hover {
    color: white;
}

ul {
    margin-left: 30px;
}

ul li {
    line-height: 1.5em;
}

ol {
    margin-left: 30px;
}

ol li {
    line-height: 1.5em;
}

.breadcrumbs ol {
    list-style-type: none;
    padding: 0 0 15px 20px;
    margin: 0;
}

.breadcrumbs ol span {
    font-size: 1.2em;
}

.breadcrumbs li {
    display: inline;
}

.breadcrumbs li:last-child {
    rgb(232, 232, 232)
}

.breadcrumbs li:not(:last-child)::after {
  display: inline-block;
  margin: 0 .25rem;
  content: ">";
}

.download-button {
    padding: 0.5em;
    background-color: color(srgb 0.0232 0.32 0);
    border-radius: 5px;
    display: block;
    width: 13em;
    text-align: center;
}

.download-button:hover {
    background-color: color(srgb 0.0275 0.375 0.0019);
}

.button-1 {
    font-size: 1.2em;
    border: 1px solid rgb(82, 82, 82);
    border-radius: 10px;
    padding: 5px 10px;
}

.button-1:hover {
    border: 1px solid rgb(163, 163, 163);
    background-color: color(srgb 0.1356 0.1356 0.145);
}

.top-nav {
    display: flex;
    height: 44px;
    padding: 0 20px 5px 0;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
    position: relative;
    margin: auto 0;
    z-index: 3;
}

.top-nav .checkbox {
    position: absolute;
    width: 42px;
    height: 45px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 4;
    display: none;
}

.hamburger-lines {
    height: 33px;
    width: 42px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    }

.hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #cacaca;
}

.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

input[name="hamburger"]:checked ~ .menu {
    display: block;
    font-size: 1.5em;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.83);
    padding-top: 50px;
    text-align: center;
}

input[name="hamburger"]:checked ~ .menu li {
    display: block;
    padding: 0.5em 0;
}

input[name="hamburger"]:checked ~ .hamburger .hamburger-lines .line1 {
  transform: rotate(45deg);
}


input[name="hamburger"]:checked ~ .hamburger .hamburger-lines .line2 {
  transform: scaleY(0);
}


input[name="hamburger"]:checked ~ .hamburger .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.top-nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.top-nav ul a {
    text-decoration: none;
    font-size: 1.2em;
    text-align: center;
    padding: 15px;
    color: #cccccd;
}

.top-nav ul a:hover {
   color: #e5e5ec;
}

.top-nav .search {
    width: 25px;
    height: 25px;
    fill: #cccccd;
}

.footer {
    margin-top: 2em;
    text-align: center;
    height: 100%;
}

.footer > div {
    max-width: 1100px;
    margin: auto;
}

.footer > div > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer > div > div a {
    padding-left: 1em;
}

.wrapper {
    max-width: 1100px;
    margin: auto;
}

.block {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.pagination {
    list-style-type: none;
    padding: 0;
    margin: 1em 0;
}


.pagination li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
}

.pagination a {
    color: #d1d1d1;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid rgb(82, 82, 82);
    border-radius: 12px;
    display: inline-block;
}

.pagination a:hover {
    border: 1px solid rgb(163, 163, 163);
    background-color: color(srgb 0.1356 0.1356 0.145);
}

.pagination a:hover {
    text-decoration: none;
    color: #fff;
    border-color: #c4c2c2;
}

.pagination a.current {
    text-decoration: none;
    color: #fff;
    border-color: #c4c2c2;
}

.pagination a.points {
    border: none;
    padding: 8px 0;
}

.pagination a.points:hover {
    color: #d1d1d1;
}


@media (max-width: 900px) {
    .top-nav .checkbox {
        display: block;
    }

    .top-nav ul {
        display: none;
    }

    .top-nav .hamburger {
        display: block;
        margin: 0 auto;
    }

    .top-nav .hamburger-box {
        display:block
    }

    .footer > div > div {
        display: block;
    }

    .footer > div > div a {
        padding-left: 0;
        display: block;
        margin-bottom: 1em;
    }
}
