@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Roboto:300,regular,500,700,900&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #333;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body::before {
  background: #f8fded url("../img/bg.webp") 50% 50% repeat;
  background-size: 1920px auto;
  opacity: 0.4;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: url("../img/dd-bg.svg") 50% 100% repeat-y;
  animation: background-move 12s linear infinite;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-attachment: fixed;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #6dbfaf;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 20px 0;
  transition: background 0.5s ease;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .auth {
  display: flex;
  gap: 20px;
}
.header .container .auth .btn {
  border-radius: 10px;
  width: 150px;
  display: flex;
  justify-content: center;
  padding: 15px 0;
  color: #fff;
  transition: all 0.5s 0s;
  border: 1.5px solid transparent;
}
.header .container .auth .btn-1 {
  background-color: #ff2400;
  animation: glowing1 1500ms infinite;
}
.header .container .auth .btn-1:hover {
  border: 1.5px solid #ff2400;
  background-color: #f8fded;
  color: #333;
}
.header .container .auth .btn-2 {
  background-color: #1380e7;
  animation: glowing2 1500ms infinite;
}
.header .container .auth .btn-2:hover {
  border: 1.5px solid #1380e7;
  background-color: #f8fded;
  color: #333;
}

.date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.date .updated {
  display: flex;
  flex-direction: column;
}
.date time {
  font-weight: 600;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
}
.main .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 60px 0;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main .cards .card {
  position: relative;
  border: 1px solid transparent;
  width: 456px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1rem 10px 1rem 27px;
  background: #0d1016;
  border: 3px solid #0d1016;
  border-radius: 1.2rem;
  display: flex;
  gap: 20px;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease-in-out;
}
.main .cards .card::before {
  content: "";
  position: absolute;
  border-radius: 1.2rem;
  padding: 3px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(98.86deg, #00cfa6 0%, rgba(0, 207, 166, 0.2) 100%);
  z-index: 0;
}
.main .cards .card__checkbox {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  cursor: pointer;
  border-radius: 50%;
  background-color: #1b1f28;
}
.main .cards .card__checkbox .circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: transparent;
  box-shadow: -1px 1px 2px 0px rgba(13, 16, 22, 0.4) inset;
  position: relative;
}
.main .cards .card__checkbox .circle::before {
  content: "";
  position: absolute;
  border-radius: 0.25rem;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(141.95deg, #01cfa6 25.7%, #007e65 100%);
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  z-index: 0;
}
.main .cards .card__checkbox .circle.active {
  border-width: 0;
  background: #00cfa6;
  box-shadow: 1px 1px 2px 0px rgba(13, 16, 22, 0.4) inset;
}
.main .cards .card__checkbox .circle.active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  padding: 0 !important;
}
.main .cards .card__checkbox .circle.active::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  z-index: 2;
  border: 2px solid #ffffff;
  background: linear-gradient(144.73deg, #e3e3e3 15.19%, #ffffff 56.91%);
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1803921569);
}
.main .cards .card__img {
  display: flex;
  justify-content: center;
  width: 130px;
  height: 95px;
  position: relative;
}
.main .cards .card__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .cards .card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.main .cards .card__text .title {
  font-size: 1.75rem;
  line-height: 2.0625rem;
  font-weight: 400;
  font-weight: 700;
  color: #fff;
}
.main .cards .card__text p {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #80858f;
}
.main .cards .card.active {
  position: relative;
  border: 3px solid transparent;
}
.main .cards .card.active::before {
  content: "";
  position: absolute;
  border-radius: 0.25rem;
  padding: 3px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(98.86deg, #00cfa6 0%, rgba(0, 207, 166, 0.2) 100%);
  z-index: 0;
}
.main .main__title {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main .main__title img {
  height: 230px;
}
.main .main__title .title {
  font-size: 60px;
  color: #ff2400;
  font-weight: 800;
  max-width: 70%;
}
.main__content {
  padding: 30px 0;
  background-color: #f8fded;
}
.main__content .content p {
  margin: 15px 0;
}
.main__content .content img {
  max-width: 500px;
  display: flex;
  margin: 0 auto;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  z-index: 1;
  background-color: #6dbfaf;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 1199px) {
  .main .cards .card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .wrapper {
    background: url("../img/smd-bg.svg") repeat-y 100% 100%;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 10px;
  }
  .main > .container {
    min-height: 700px;
  }
  .main .flex {
    flex-direction: column;
    gap: 50px;
  }
  .main .main__title img {
    height: 150px;
  }
  .main .main__title .title {
    font-size: 45px;
    max-width: 100%;
    text-align: center;
  }
  .main__content {
    padding: 20px 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 1px 0 1px #473e12, 0 1px 1px #39ffa4, -1px 0 1px #473e12, 0 -1px 1px #ffdf39;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes background-move {
  0% {
    background-position-y: 100%;
  }
  100% {
    background-position-y: 0;
  }
}
@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing2 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #1380e7;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}