@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=Open+Sans:300,regular,500,600,700,800&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
.pinup-nav-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pinup-nav-menu li {
  margin: 5px;
}

.pinup-nav-menu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.pinup-nav-menu a:hover {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  box-shadow: 0 0 10px rgba(255, 65, 108, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pinup-nav-menu {

    align-items: center;
  }

  .pinup-nav-menu a {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .pinup-nav-menu a {
    display: block;
    padding: 4px 12px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
}

.footer__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
}
.footer__icons img {
  height: 30px;
  max-height: 30px;
}
/* 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: "Open Sans", sans-serif;
  font-weight: 400;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.lock {
  overflow-y: hidden;
}

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

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 #f74b45;
  padding: 5px;
}
table tr th {
  background-color: #00cfa6;
  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;
  background: #16100d;
  color: #fff;
  padding: 15px 0;
  border-bottom: 2px solid #00cfa6;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  flex: 0 0 120px;
}
.header .auth {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .auth .btn {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
.header .auth .btn-1 {
  background-color: #36af79;
}
.header .auth .btn-1:hover {
  background-color: #dd3333;
}
.header .auth .btn-2 {
  background-color: #dd3333;
}
.header .auth .btn-2:hover {
  background-color: #36af79;
}
.header .nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav ul li {
  font-weight: 500;
}
.header .nav ul li a {
  position: relative;
  padding-bottom: 3px;
}
.header .nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background-color: #f74b45;
  transform: translate(0, 3px);
  opacity: 0;
  transition: 0.3s;
}
.header .nav ul li a:hover {
  text-shadow: 0.1px 0 #fff;
}
.header .nav ul li a:hover::before {
  transform: translate(0, 0);
  opacity: 1;
}
.header .burger {
  display: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 85px 0 50px;
}
.main .first-screen {
  background-color: #171c25;
  padding: 50px 0;
}
.main .first-screen .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.main .first-screen .flex__item {
  flex: 0 0 50%;
}
.main .first-screen .flex .item-1 {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .first-screen .flex .item-1 .title {
  text-align: left;
  font-size: 50px;
  font-weight: 700;
  margin: 0;
}
.main .first-screen .flex .item-2 {
  display: flex;
  justify-content: center;
}
.main .first-screen .flex .item-3 {
  display: none;
}
.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 .content {
  padding: 40px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {

  display: flex;
  margin: 0 auto;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  color: #fff;
  background-color: #16100d;
}
.footer .container {
  width: 100%;
}
.footer .flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer .flex .list-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 100px;
}
.footer .flex .list-wrapper .list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .flex .list-wrapper .list li a {
  position: relative;
}
.footer .flex .list-wrapper .list li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background-color: #f74b45;
  transform: translate(0, 3px);
  opacity: 0;
  transition: 0.3s;
}
.footer .flex .list-wrapper .list li a:hover {
  text-shadow: 0.1px 0 #fff;
}
.footer .flex .list-wrapper .list li a:hover::before {
  transform: translate(0, 0);
  opacity: 1;
}

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

#scroll {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
    position: relative;
  }
  .header .logo {
    flex: auto;
    position: relative;
    z-index: 3;
  }
  .header .auth {
    position: relative;
    z-index: 3;
  }
  .header .auth .btn {
    padding: 10px;
    width: 130px;
  }
  .header .nav {
    display: none;
  }
  .header .nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #16100d;
  }
  .header .nav.active ul {
    flex-direction: column;
  }
  .header .nav.active ul li {
    font-size: 24px;
  }
  .header .burger {
    display: block;
    position: absolute;
    top: 15px;
    left: 20px;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header .burger::after, .header .burger::before {
    content: "";
  }
  .header .burger::after, .header .burger::before,
  .header .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #29ca8e;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
  }
  .header .burger::before {
    top: 0;
  }
  .header .burger::after {
    bottom: 0;
  }
  .header .burger span {
    top: 9px;
  }
  .header .burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header .burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header .burger.active span {
    transform: scale(0);
  }
  .main {
    padding: 170px 0 30px;
  }
  .main .first-screen {
    padding: 30px 0 50px;
  }
  .main .first-screen .flex {
    flex-direction: column;
    gap: 30px;
  }
  .main .first-screen .flex .item-1 .title {
    font-size: 32px;
  }
  .main .first-screen .flex .item-1 .subtitle {
    display: none;
  }
  .main .first-screen .flex .item-3 {
    display: block;
    color: #fff;
  }
  .main .cards .card {
    width: 100%;
  }
  .main .content {
    padding: 30px 0 0 0;
  }
}
@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;
  }
  .container {
    max-width: 100%;
  }
  .main .content img {
    max-width: 100%;
    
  }
  .footer .flex {
    flex-direction: column;
  }
  .footer .flex .list-wrapper {
    gap: 20px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 1px 0 1px #39ffa4, 0 1px 1px #39ffa4, -1px 0 1px #39ffa4, 0 -1px 1px #39ffa4;
  }
  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);
  }
}