*,
*:before,
*:after {
   padding: 0;
   margin: 0;
   border: 0;
   box-sizing: border-box;
}

html,
body {
   height: 100%;
   font-family: 'Roboto', sans-serif;
   font-size: 14px;
   background-color: black;
}

::-webkit-scrollbar {
   display: none;
}

h2 {
   font-size: 16px;
   font-family: Roboto;
   font-weight: 500;
   line-height: 1;
   text-transform: uppercase;
   /* margin: 0; */
   margin-bottom: 3px;
}

h3 {
   font-size: 14px;
   font-family: Roboto;
   font-weight: 500;
   line-height: 1.1;
   text-transform: uppercase;
   /* margin: 0; */
   margin-bottom: 2px;
}

p {
   font-size: 13px;
   font-family: Roboto;
   font-weight: 300;
   margin: 0;
}

a {
   color: #fff;
   font-size: 13px;
   font-family: Roboto;
   font-weight: 300;
   margin: 0;
   text-decoration: none;
}

a:is(:link, :active, :visited).active {
   color: #59eaaf;
}

::selection {
   color: rgb(0, 0, 0);
   background-color: #59eaaf;
}

ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

#particles-js {
   width: 100%;
   height: 90%;
   position: absolute;
   background-color: black;
   z-index: 1;
}


.wrapper {
   /* height: 100vh; */
   overflow: hidden;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
}

.container {
   max-width: 1180px;
   margin: 0 auto;
   /* padding: 0px 5px; */
}

.main {
   flex: 1 1 auto;
   z-index: 49;
}

/* HEADER & BURGER MENU*/
.header {
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 50;
   background-color: black;
}

.header:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   /* background-color: rgb(0, 0, 0); */
   z-index: 2;
}

.header__body {
   position: relative;
   display: flex;
   justify-content: space-between;
   height: 100px;
   align-items: center;
   margin-top: 20px;
   padding: 0px 10px;
}

.header__burger {
   display: none;
}

.header__logo {
   width: 250px;
   flex: 0 0 0 200px;
   z-index: 3;
}

.header__logo img {
   max-width: 100%;
}

.header__list {
   display: flex;
   position: relative;
   z-index: 2;
   color: #fff;
}

.header__list a:hover {
   border-bottom: 1px solid #59eaaf;
   color: #59eaaf;
   transition: all 0.1s ease 0s;
}

.header__list li {
   list-style: none;
   margin: 0px 0px 0px 32px;
}

.header__link {
   color: #fff;
   font-size: 14px;
   font-family: Roboto;
   font-weight: 300;
   text-decoration: none;
}

.header__link-active {
   color: #59eaaf;
   font-size: 14px;
   font-family: Roboto;
   font-weight: 300;
   text-decoration: none;
}

/* SUBMENU */
.submenu {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

.direction {
   display: inline-flex;
   background-color: #0c0d14;

   color: #fff;
   font-family: Roboto;
   font-weight: 500;
   font-size: 10px;

   border-radius: 50px;
   padding: 10px 20px;
   margin: 5px 10px;
   position: relative;
   cursor: pointer;

}

.direction:hover {
   background-color: #2c2e3d;
   transition: all 0.1s ease 0s;

}

.direction__active {
   display: inline-flex;
   background-color: #2c2e3d;

   color: #fff;
   font-family: Roboto;
   font-weight: 500;
   font-size: 10px;

   border-radius: 50px;
   padding: 10px 20px;
   margin: 5px 10px;
   position: relative;
   cursor: pointer;
}


/* CONTENT */
/* SUBMENU */
.block {
   margin-top: 140px;
}

.block__row {
   display: flex;
   flex-wrap: nowrap;
   /* border: 20px solid #ece89d; */
   margin: 0px 0px 10px 0px;
}

.block__column {
   /* border: 20px solid #5e5373; */
   padding: 10px;
   flex-basis: 500px;
   flex-grow: 1;
}

.block__item {
   /* background-color: rgb(90, 183, 208); */
}


/* STYLE CARD */
.card-container {
   display: flex;
   height: 75px;
   width: 295px;
   /* background-color: #ece89d; */
   padding-left: 5px;
   padding-right: 5px;
   margin-top: 10px;

}

.card {
   width: 100%;
   height: 100%;
   border: 1px solid #1e1d26;
   background-color: #0c0d14;
   padding: 12px 15px;
   border-radius: 5px;
   color: #fff;
   position: relative;
}

.card:hover {
   border: 1px solid;
   border-color: #3f3e44;
   transition: all 0.1s ease 0s;
   cursor: pointer;
}

.card__item {
   /* display: flex; */
   align-items: center;
   flex-wrap: nowrap;
   /* background-color: #59eaaf; */
}

.item {
   display: flex;
}

.item__text {
   padding-left: 15px;
   flex-wrap: nowrap;
}

.item__text a {
   color: #949faa;
}


/* STYLE APPLICATION FORM */
.form {
   display: flex;
   height: 75px;
   width: 295px;
   border: 1px solid #1e1d26;
   background-color: #0c0d14;
   padding: 15px;
   margin: 0px 0px 20px 0px;
   border-radius: 5px;
   color: #6477d7;
   position: relative;
}

.form:hover {
   border: 1px solid;
   border-color: #3f3e44;
   transition: all 0.1s ease 0s;
   cursor: pointer;
}

.form__item {
   display: flex;
   align-items: center;
   flex-wrap: nowrap;
}

.application {
   display: flex;
}

.application__text {
   padding-left: 5px;
   flex-wrap: nowrap;
}

.link_block {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: 1;
}

.link__form {
   color: #6477d7;
}

.application__link {
   display: flex;
   align-items: center;
}

.icon-arrow {
   width: 30px;
   padding-left: 10px;
}


/* CATALOG CARDS */
.catalog__row {
   display: flex;
   flex-wrap: wrap;
   /* flex-wrap: nowrap; */
   /* border: 20px solid #ece89d; */
   /* margin: 0px 0px 10px 0px; */
}

.catalog__column {
   /* background-color: #c6b5e7; */
   /* flex-basis: 500px; */
   /* flex-grow: 1; */
}

.catalog__item {
   /* background-color: rgb(90, 183, 208); */
   display: flex;
   flex-wrap: wrap;
}


/* FOOTER */
.footer__block {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 30px 10px;
   /* background-color: #6477d7; */
}


.footer__icons {
   display: flex;
   align-items: center;
   padding-left: 20px;
   position: relative;
   padding: 0 5px;
}

.footer__icons a {
   font-size: 10px;
   font-weight: 500;
   color: #2d313f;
   text-transform: uppercase;
   padding-left: 5px;
}

.footer__icons a:hover {
   color: #5a5f73;
}

.footer__icons img {
   width: 32px;
}

.footer__p {
   font-size: 10px;
   line-height: 1.2;
   font-weight: 500;
   color: #2d313f;
   text-transform: uppercase;
}

.footer__powered a {
   font-size: 10px;
   line-height: 1.2;
   font-weight: 500;
   color: #2d313f;
   text-transform: uppercase;
}

.footer__powered a:hover {
   color: #5a5f73;
}


/* RESPONSIBLE*/
@media (max-width:1279px) {
   body.lock {
      overflow: hidden;
   }

   .header__burger {
      display: block;
      position: relative;
      width: 30px;
      height: 20px;
      position: relative;
      z-index: 4;
   }

   .header__burger span {
      background-color: #fff;
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
      top: 9px;
      transition: all 0.3s ease 0s;
   }

   .header__burger:before,
   .header__burger:after {
      content: '';
      background-color: #fff;
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
      transition: all 0.3s ease 0s;
   }

   .header__burger:before {
      top: 0;
   }

   .header__burger:after {
      bottom: 0;
   }

   .header__burger.active span {
      transform: scale(0);
   }

   .header__burger.active:before {
      transform: rotate(45deg);
      top: 9px;
   }

   .header__burger.active:after {
      transform: rotate(-45deg);
      bottom: 9px;
   }

   .header__menu {
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      transition: all 0.3s ease 0s;
      background-color: rgb(0, 0, 0);
      /* padding: 70px 10px 20px 10px; */

      display: flex;
      justify-content: center;
      align-items: center;

      text-align: center;
   }

   .header__menu.active {
      top: 0;
   }

   .header__list {
      display: block;
      justify-content: center;
      align-content: center;
   }

   .header__link {
      color: rgb(255, 255, 255);
      font-size: 25px;
      line-height: 2;
   }

   .header__link-active {
      font-size: 25px;
   }

   .header__list li {
      margin: 0 0 20px 0;
   }

   .content {
      padding: 70px 0px 0px 0px;
   }
}

@media (max-width:880px) {

   .catalog {
      padding: 0px 10px;
   }

   .block__column {
      padding: 0;

   }

   .catalog__column {
      padding: 0px;

   }

   .catalog__item {
      flex-wrap: wrap;
      display: flex;
      justify-content: center;
   }

   .footer__powered {
      line-height: 0.5;
   }
}

@media (max-width:675px) {
   .card-container {
      width: 100%;
   }

   .form {
      width: 100%;
   }

   .footer__block {
      /* flex-direction: column; */
      flex-wrap: wrap;
      justify-content: center;
   }

   .footer__powered {
      padding-left: 20px;
   }
}

@media (max-width:445px) {
   .header__link {
      font-size: 18px;
      line-height: 1.6;

   }

   .header__link-active {
      font-size: 18px;
   }

   .header__logo {
      width: 200px;
      flex: 0 0 0 200px;
      z-index: 3;
   }

   .footer__p {
      padding-bottom: 8px;
   }
}

@media (max-width:360px) {
   .footer__powered {
      margin-top: 8px;
   }

}


/* SPECIAL STYLES */