@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root{
  --c-1: linear-gradient(to bottom right, rgb( 202 254 0 /1) , rgb(33, 196, 93));
  --c-2: linear-gradient(to bottom right, rgb( 245 158 11 /1) , rgb( 244 63 94 /1));
  --c-3: linear-gradient(to bottom right, rgb( 244 63 94 /1) , rgb( 168 85 247 /1));
  --c-4: linear-gradient(to bottom right, rgb( 6 182 212 /1) , rgb( 99 102 241 /1));
  --c-5: linear-gradient(to bottom right, rgb(66, 244, 63) , rgb(85, 193, 247));
  --accent: var(--c-3);
  --d-1: rgb(33, 196, 93);
  --d-2: rgb( 244 63 94 /1);
  --d-3: rgb( 168 85 247 /1);
  --d-4: rgb( 99 102 241 /1);
  --d-5: rgb(85, 193, 247);
  --hover: var(--d-3);
  --e-1: rgba(33, 196, 93, 0.26);
  --e-2: rgba(244, 63, 93, 0.26);
  --e-3: rgba(169, 85, 247, 0.26);
  --e-4: rgba(99, 101, 241, 0.26);
  --e-5: rgba(85, 193, 247, 0.26);
  --op-hover: var(--e-3);
  --transition: 0.4s ease-in-out;
  --white: #fff;
  --black: #080101;
  --bg: #18181b;
}

body{
    box-sizing: border-box;
    font-family: 'Advent Pro', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0px;
    direction: ltr;
    position: relative;
    background-color: var(--black);
  }
  
 
*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
  word-break: break-word;
}

p {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 13px;
  padding-left:  25px;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.module{
  margin-top: 30px;
  color: var(--white);
  border-radius: 2px;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 13px;
  padding-left: 13px;
  box-sizing: border-box;
}

.row-2{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
}

.col-2{
  box-sizing: border-box;
  width: 100%;
  flex-grow: 1;
  padding: 18px;
}

.title{
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom:  18px;
}

.body-wr{
  overflow: hidden;
  padding-top: 30px;
}

.header{
  overflow: hidden;
  background-color: var(--bg);
  border-radius: 2px;
  width: 100%;
  color: var(--white);
}

.header-col{
  padding: 0 !important;
}

.nav{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.header-wr{
  display: flex;
  flex-direction: column-reverse;
  direction: ltr !important;
}

.nav-text{
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  height: 100%;
  background-color: var(--hover);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition: var(--transition);
  padding: 24px;
  opacity: 0;
}

.nav-item{
  a{
    display: inline-block;
    position: relative;
    background: linear-gradient(to top right, rgb( 24 24 27 /1) , rgb( 24 24 27 /0));
    transition: var(--transition);
    padding:  18px;
    color: var(--white);

    svg{
      width: 20px;
      height: 20px;
    }
    
    &:hover,
    &:focus{
      background-color: var(--hover);
    }

    &:hover > .nav-text,
    &:focus > .nav-text{
      transform: translateX(-100%);
      opacity: 1;
    }
  }
}

.hero-img{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.header-logo{
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-img{
  width: 59px;
  height: 59px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.logo-title{
  font-family: 'Anton', sans-serif;
  word-break: break-word;
  letter-spacing: 1.3px;
  font-size: 29px;
  font-weight:700;
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position-x: 200%;
  transition: var(--transition);
}

.header-logo:hover .logo-title,
.header-logo:focus .logo-title{
  background-position-x: 100%;
}

.header-descr{
  color: var(--white);
}

.author{
  font-style: italic;
  color: var(--white);
}

.stat{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  background-image: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
}

.stat-col{
  padding: 18px;
  box-sizing: border-box;
}

.stat::before{
  position: absolute;
  background: var(--accent);
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
}

.stat-box{
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  justify-content: center;
}

.stat-num{
  text-transform: uppercase;
  font-size: 25px;
  font-weight:700;
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text{
  color: var(--white);
}

.au-row{
  overflow: hidden;
  background-color: var(--bg);
  border-radius: 2px;
  display: flex;
  box-sizing: border-box;
  flex-direction:  column;
  gap: 18px;
}

.au-col-1,
.au-col-2{
  box-sizing: border-box;
  width: 100%;
}

.au-img{
  width: 100%;
  height: 400px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.au-module{
  padding: 0 !important;
  overflow: hidden;
}

.au-box{
  padding: 97px 0;
}

.au-col-2{
  .wrapper{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.cat-col{
  background-image: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));

  .wrapper{
    height: 100%;
  }
}

.cat-item{
  background: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.ct-col{
  padding: 2px;
  flex-grow: 0;
  transition: var(--transition);
  cursor: pointer;

  &:hover,
  &:focus{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
  }
}

.cat-text{
  padding: 18px;
}

.cat-num{
  background-color: #636370;
  min-width:  59px;
  border-left: 1px solid var(--hover);
  padding: 18px;
}

.ct-row{
  flex-direction: row !important;
}

.subscribe-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top:  18px;
  gap:  18px;

  input{
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    background: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
    border-radius: 2px;
    padding: 18px;
    border: 1px solid var(--hover);
  }
}

.sub-box{
  height: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.tags{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  margin-top: 29px;
}

.tag{
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
  cursor: pointer;

  &:hover,
  &:focus{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.main-module{
  background-color: var(--bg);
  border-radius: 2px;
  padding: 97px 18px;
}

.row-3{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 18px;
}

.col-3{
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  background: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
  border-radius: 2px;
  overflow: hidden;
}

.row-4{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 18px;
}

.col-4{
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  background: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
  border-radius: 2px;
  overflow: hidden;
}

.cat-row{
  overflow: hidden;
  background-color: var(--bg);
  border-radius: 2px;
}

.main-img{
  width: 100%;
  height: 400px;
  display: inline-block;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  &:hover > img,
  &:focus > img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
  }
}

.main-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.main-title{
  h3{
    color: var(--white);
    font-size: 22px;

    &:hover,
    &:focus{
      background-image: var(--accent);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      transition: var(--transition);
    }
  }
}

.main-cat{
  background: var(--op-hover);
  padding: 7px 18px;
  display: inline-block;

  span{
    background-image: var(--accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
  }
}

.main-content{
  color: #a1a1aa;
}

.date{
  margin-top: 18px;
  color: #71717a;
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
}

.date-icon{
  width: 20px;
  height: 20px;

  svg{
    width: 20px;
    height: 20px;
  }
}

.flex-column{
  display: flex;
  flex-direction: column;
}

.box{
  word-break: break-all;
  background-color: var(--bg);
  overflow: hidden;
  border-radius: 2px;
  padding: 97px 18px;
}

.qa-row{
  flex-direction: row !important;
  margin:  11px 0;
}

.qa-q,
.qa-a{
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
  }
}

.com-author{
  width: 100%;
  height:  254px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.com-box{
  display: flex;
  height: 100%;
  flex-direction: column;
  gap:  18px;
}

.com-name{
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.d-none{
 display: block;
}

.nav-footer{
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;

  .nav-item{
    a{
      padding:  11px;
    }
  }
}

.footer-box{
  background-color: var(--bg);
  overflow: hidden;
  border-radius: 2px;
  padding: 30px 18px;
}

.footer-privacy{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-item{
  a{
    color: var(--white);
    transition: var(--transition);
  }

  &:hover > a,
  &:focus > a{
    color: var(--hover);
  }
}

.form{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap:  18px;
}

.page-form-item{
  width: 100%;
}

.page-form-item > input,
.page-form-item > textarea,
.input-user_group__group,
.textarea-user_group__group{
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to right, rgb( 24 24 27 /1) , rgb( 39 39 42 /1));
  border-radius: 2px;
  padding: 18px;
  border: 1px solid var(--hover);
}

.privacy{
  color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--hover);
  }
}

.page-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-author{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.author-img{
  border-radius: 50%;
  overflow: hidden;
  width: 95px;
  height: 95px;
  border: 3px solid var(--hover);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-img{
  width: 100%;
  height: auto;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.price-box{
  font-size: 22px;
  font-weight:700;
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom:  18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title{
  text-align: center;
}

.page-row{
  width: 100%;

  .col-2{
    text-align: center;
  }
}
.page-content{
  word-break: break-word;
   p{ 
  text-indent: 3ch;
  }
  
  a,table{
    color: inherit;
    
  }
  ul, ol {
   margin-bottom: 13px;
    padding-left:  25px;
    list-style: inside;
  }
}

.contact-box{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.contact-item{
  display: flex;
  flex-direction: column;
  gap: 7px;

  a{
    word-break: break-all;
    color: var(--white);
    transition: var(--transition);
  }

  &:hover > a,
  &:focus > a{
    color: var(--hover);
  }
}

.adres{
  color: var(--white);
}

.contact-name{
  color: #636370;
}
.section-flexrevGHJ{
  display: flex;
  flex-direction:  column;
}

.map{
  width: 100%;
  height: 100%;

  iframe{
    width: 100%;
    height: 254px;
    object-fit: cover;
    border: none;
  }
}

.privacy-text{
  
  word-break: break-word;
   p{ 
  text-indent: 3ch;
  }
  
  table{
    color: inherit;
    
  }
  ul, ol {
   margin-bottom: 13px;
    padding-left:  25px;
      list-style: inside;
  }

  a{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--hover);
    }
  }
  
}

@media (max-width: 575px){
  .header{
    padding: 0;
  }

  .header-logo{
    flex-direction: column;
    text-align: center;
  }

  .stat{
    flex-direction: column;
  }

  .stat-col{
    width: 100%;
  }
  .main-img{
    height: 254px;
  }

}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .subscribe-form{
    flex-direction: row;
  }

  .ct-col{
    width: 50%;
  }
}

@media (max-width: 767px){
  .hero-img{
    height: 300px;
    min-height: 300px;
  }

  .stat{
    flex-direction: row;
  }

  .stat-col{
    width: calc((100% / 2));
  }

    .nav-text{
    display: none;
  }

  .nav{
    justify-content: center;
  }

  .body-wr{
    padding-top: 0;
  }

  .nav-item{
    a{
      padding: 11px;
    }
  }
}

@media (min-width: 768px){
  .page-img{
    height: 612px;
  }
  .wrapper {
    max-width: 720px;
  }

    .header-wr{
    flex-direction: row;
  }

  .nav{
    flex-direction: column;
    margin-top: 59px;
  }

  .row-2{
    flex-direction: row;
  }

  .col-2{
    width: calc(50% - 18px);
  }

  .stat{
    flex-direction: column;
  }

  .stat-col{
    width: 100%;
  }

  .au-row{
    flex-direction: row;
  }

  .au-col-1{
    width: 35%;
  }

  .au-col-2{
    width: 65%;
  }

  .au-img{
    min-height: 500px;
    height: 100%;
  }

  .ct-col{
    width: 100%;
  }

  .row-3{
    flex-direction: row;
  }

  .col-3{
    width: calc(50% - 18px);
  }
  
  .row-4{
    flex-direction: row;
  }

  .col-4{
    width: calc(50% - 18px);
  }

  .footer-privacy{
    flex-direction: row;
  }

  .page-author{
    flex-direction: row;
  }
}


@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .stat{
    flex-direction: row;
  }

  .stat-col{
    width: calc((100% / 2));
  }

  .hero-img{
    min-height: 700px;
  }
  
  .ct-col{
    width: 50%;
  }

  .col-3{
    --w-1: 50%;
    --w-2: calc(100% / 3);
    width: calc(var(--w-1) - 18px);
  }

  .col-4{
    width: calc(25% - 18px);
  }

    .nav-item{
    a{
      padding: 18px;

      svg{
        width: 25px;
        height: 25px;
      }
    }
  }

  
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .stat-col{
    width: calc((100% /3));
  }
}


.btn-wr{
  a{
    text-align: center;
  }
}

.btn-center{
  margin: 0 auto;
}

.button-1 {
  display: inline-block;
  padding:  11px  25px;
  font-size: 18px;
  outline: none;
  border: none;
  border-radius:  11px;
  transition: 0.5s;
  background: #1e1e1e;
  cursor: pointer;
  color: var(--hover);
  box-shadow: 0 0 10px #363636, inset 0 0 10px #363636;
}

.button-1:hover {
  animation: a 0.5s 1 linear;
}

@keyframes a {
  0% {
    transform: scale(0.7, 1.3);
  }

  25% {
    transform: scale(1.3, 0.7);
  }

  50% {
    transform: scale(0.7, 1.3);
  }

  75% {
    transform: scale(1.3, 0.7);
  }

  100% {
    transform: scale(1, 1);
  }
}

.button-2 {
  display: inline-block;
  padding: 11px;
  border: none;
  border-radius: 10em;
  background: var(--accent);
  font-size:  15px;
  color: #ffffff;
  font-family: inherit;
  font-weight:500;
}

.button-2:hover {
 animation: shake3856 0.3s linear infinite both;
}

@keyframes shake3856 {
 0% {
  -webkit-transform: translate(0);
  transform: translate(0);
 }

 20% {
  -webkit-transform: translate(-2px, 2px);
  transform: translate(-2px, 2px);
 }

 40% {
  -webkit-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
 }

 60% {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
 }

 80% {
  -webkit-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
 }

 100% {
  -webkit-transform: translate(0);
  transform: translate(0);
 }
}

.button-3 {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 11px 23px;
  font-size: 15px;
  color: var(--hover);
  border:  1px solid var(--hover);
  border-radius: 25px;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button-3::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--hover);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-3:hover::before {
  scale: 3;
}

.button-3:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.4);
}

.button-3:active {
  scale: 1;
}


.button-4 {
  position: relative;
  overflow: hidden;
  padding: 15px 25px;
  border: 0;
  border-radius: 29px;
  font-size:  15px;
  background: transparent;
  color: #000000;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.button-4:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}

.button-4 > span {
  position: relative;
  z-index: 3;
}

.button-4::before,
.button-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  opacity: 0;
}

.button-4::before {
  background: var(--hover) repeating-linear-gradient(50deg, transparent, transparent 10px, #71e0efbc 10px, #71e0efca 20px);
}

.button-4::after {
  z-index: 2;
  background: linear-gradient(#ffffffc2 10%, transparent 100%);
}

.button-4::before,
.button-4::after {
  opacity: 1;
}

@keyframes loading_49100 {
  0% {
    translate: 25px 0;
  }

  100% {
    translate: -30px 0;
  }
}

.button-4::before {
  animation: loading_49100 1s infinite linear;
}

.button-5 {
  position: relative;
  display: inline-block;
  padding: 18px 25px;
  border: none;
  background-color: var(--hover);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-5:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-5 span {
  position: relative;
  z-index: 1;
}

.button-5:hover {
  color: #2196F3;
  background-color: #fff;
  box-shadow: 0 0 20px hsla(263, 77%, 31%, 0);
}

.button-5:active {
  scale: 0.9;
}

.button-5:hover:before {
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}




