@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root{
    --white: #fff;
    --black: #080101;
    --transition: 0.3s linear;
    --a-1: #d52323;
    --a-2: #23d573;
    --a-3: #236ad5;
    --a-4: #7d24c2;
    --a-5: #ff9300;
    --hover: var(--a-2);
    --b-1: linear-gradient(to bottom, rgba(255, 0, 0, 0.174), rgba(255, 0, 0, 0.023));
    --b-2: linear-gradient(to bottom, rgba(0, 255, 8, 0.174), rgba(0, 255, 55, 0.023));
    --b-3: linear-gradient(to bottom, rgba(0, 149, 255, 0.174), rgba(0, 153, 255, 0.023));
    --b-4: linear-gradient(to bottom, rgba(89, 0, 255, 0.174), rgba(55, 0, 255, 0.023));
    --b-5: linear-gradient(to bottom, rgba(0, 0, 0, 0.174), rgba(5, 3, 0, 0.023));

    --gradient: var(--b-2);

}

body{
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  direction: ltr;
}

a{
    text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

.module{
  padding: 69px 0;
}

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

.header{
  background: linear-gradient(45deg, #363a42  25%, #111111 0, #111111 50%, #363a42  0, #363a42  75%, #111111 0);
  background-size: 5px 5px;
}

.header-box{
  position: relative;
  width: 100%;
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffffff8b;
  flex-direction: column;
  gap: 11px;
  padding: 17px 0;
}

.logo-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 7px;
  transition: var(--transition);
}

.logo-img{
  width: 42px;
  height: 42px;
}

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

.logo-title{
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-box:hover,
.logo-box:focus{
  opacity: 0.7;
}

.menu-nav{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
}

.menu-link{
  color: var(--white);
  transition: var(--transition);
}

.menu-link:hover,
.menu-link:focus{
  opacity: 0.7;
}

.nav-row{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 11px;
  padding: 17px 0;
}

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

.drop-menu{
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  gap: 17px;
}

.drop-link{
  color: var(--white);
  transition: var(--transition);
}

.drop-link:hover,
.drop-link:focus{
  opacity: 0.7;
}

.drop-video{
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  padding: 5px;
  background: linear-gradient(45deg, rgb(255, 255, 255) 25%, #9a9c9c 0, #9a9c9c 50%, #fff 0, #fff 75%, #9a9c9c 0);
  background-size: 5px 5px;
}

.video-player{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop-item{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 11px;
}

.drop-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.benefit-module{
  padding: 19px 0;
}

.row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 17px;
}

.col-50,
.col-25{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 17px;
}

.ben-img{
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 5px;
  background: linear-gradient(45deg, rgb(255, 255, 255) 25%, #9a9c9c 0, #9a9c9c 50%, #fff 0, #fff 75%, #9a9c9c 0);
  background-size: 5px 5px;
  overflow: hidden;
}

.ben-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  overflow: hidden;
}

.ben-img:hover > img,
.ben-img:focus > img{
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.ben-text{
  color: var(--white);
  text-align: center;
}

.ben-box{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.col-50{
  box-shadow: 2px 2px 2px 2px rgba(128, 128, 128, 0.1);
  background-color: var(--white);
}

.heading{
  font-weight: 800;
  font-size: 20px;
  color: #373f42;
  margin: 0 0 25px 0;
}

.au-box{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.au-img{
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  padding: 5px;
  background: linear-gradient(45deg, rgb(255, 255, 255) 25%, #9a9c9c 0, #9a9c9c 50%, #fff 0, #fff 75%, #9a9c9c 0);
  background-size: 5px 5px;
  overflow: hidden;
}

.au-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  overflow: hidden;
}

.au-module{
  background: linear-gradient(45deg, rgb(255, 255, 255) 25%, #bfc1c1 0, #bfc1c1 50%, #fff 0, #fff 75%, #bfc1c1 0);
  background-size: 2px 2px;
}

.hw-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.hw-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hover);
}

.hw-icon > svg{
  width: 24px;
  height: 24px;
}

.hw-box{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.main-img{
  width: 100%;
  height: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 5px;
}

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

.main-box{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.price{
  font-size: 37px;
  font-weight: 800;
  color: var(--hover);
}

.services-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 17px;
}

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

.serv-heading{
  color: var(--white);
}

.services-img{
  width: 100%;
  height: 150px;
  background: linear-gradient(45deg, rgb(255, 255, 255) 25%, #9a9c9c 0, #9a9c9c 50%, #fff 0, #fff 75%, #9a9c9c 0);
  background-size: 5px 5px;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: 5px;
}

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

.services-img:hover > img,
.services-img:focus > img{
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.services-title{
  color: var(--hover);
  font-size: 20px;
  text-align: center;
  transition: var(--transition);
  display: inline-block;
}

.services-title:hover,
.services-title:focus{
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.services-box{
  display: flex;
  flex-direction: column;
  gap:  11px;
}

.services-content{
  color: var(--white);
  text-align: center;
}

.art-module{
  background: linear-gradient(45deg, #ffffff 25%, #bfc1c1 0, #bfc1c1 50%, #fff 0, #fff 75%, #bfc1c1 0);
  background-size: 2px 2px;
}

.articles-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 17px;
}

.articles-col{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  padding: 17px;
  background-color: var(--white);
  box-shadow: 2px 2px 2px 2px rgba(128, 128, 128, 0.1);
}

.articles-img{
  width: 100%;
  height: 300px;
  display: inline-block;
}

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

.articles-img:hover > img,
.articles-img:focus > img{
  opacity: 0.7;
}

.articles-title{
  text-align: center;
  display: inline-block;
  color: var(--hover);
  font-weight: 800;
  font-size: 20px;
  margin-top: 17px;
  transition: var(--transition);
}

.articles-title:hover,
.articles-title:focus{
  opacity: 0.7;
}

.articles-descr{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.articles-content{
  text-align: center;
}

.form{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-group--container_part,
.textarea-group--container_part{
  width: 100%;
  box-sizing: border-box;
  border-radius: 1pxpx;
  border: 2px solid var(--hover);
  padding:  11px 17px; 
}

.privacy-dpsClas{
  color: var(--hover);
  transition: var(--transition);
  display: inline-block;
}

.privacy-dpsClas:hover,
.privacy-dpsClas:focus{
  opacity: 0.7;
}

.footer-bottom-blo{
  background: linear-gradient(45deg, #363a42  25%, #111111 0, #111111 50%, #363a42  0, #363a42  75%, #111111 0);
  background-size: 4px 4px;
}

.footer-nav-row{
  border-bottom: 2px solid #ffffff8b;
}

.copyright{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  color: var(--white);
  padding: 17px 0;
  border-top: 2px solid #ffffff8b;
}

.copyright > p{
  margin: 0;
}

.footer-menu-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 17px;
}

.serv-module,
.benefit-module{
  background: linear-gradient(289deg, #43474f 25%, #1f1f1f 0, #1f1f1f 50%, #43474f 0, #43474f 75%, #1f1f1f 0);
    background-size: 2px 2px;
}

.contact-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 17px;
}

.map-col,
.contact-col{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 5px;
  background: linear-gradient(45deg, #ffffff 25%, #bfc1c1 0, #bfc1c1 50%, #fff 0, #fff 75%, #bfc1c1 0);
  background-size: 2px 2px;
  box-shadow: 2px 2px 2px 2px rgba(128, 128, 128, 0.1);
}

.contact-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 17px;
  gap: 17px;
}

.contact-box > a{
  color: var(--hover);
  transition: var(--transition);
  text-align: center;
  word-break: break-word;
}

.contact-box > a:hover,
.contact-box > a:focus{
  opacity: 0.7;
}

.map{
  width: 100%;
  height: 300px;
  background-color: var(--white);
}

.map > iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.contact-text{
  text-align: center;
}

.col-reverse{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.related-module,
.contact-module{
  background: linear-gradient(45deg, #ffffff 25%, #bfc1c1 0, #bfc1c1 50%, #fff 0, #fff 75%, #bfc1c1 0);
  background-size: 2px 2px;
}

.page-box{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.page-img{
  width: 100%;
  height: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 17px;
}

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

.related-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 17px;
}

.related-col{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  background-color: var(--white);
  padding: 5px;
  box-shadow: 2px 2px 2px 2px rgba(128, 128, 128, 0.1);
}

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

.related-img{
  width: 100%;
  height: 200px;
  display: inline-block;
  box-sizing: border-box;
}

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

.related-img:hover > img,
.related-img:focus > img{
  opacity: 0.7;
}

.related-title{
  text-align: center;
  color: var(--hover);
  font-size: 20px;
  transition: var(--transition);
  display: inline-block;
}

.related-title:hover,
.related-title:focus{
  opacity: 0.7;
}

.related-content{
  text-align: center;
}

.privacy-content{
  overflow: hidden;
}

@media (min-width: 480px){
  .menu-nav{
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px){

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

  .copyright{
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .heading{
    font-size: 23px;
  }
  
  .box {
    max-width: 720px;
  }

  .nav-row{
    flex-direction: row-reverse;
  }

  .nav-col{
    width: calc(50% - 11px);
  }

  .nav{
    align-items: center;
  }
  
  .row{
    flex-direction: row-reverse;
  }

  .col-50,
  .col-25{
    width: calc(50% - 17px);
  }

  .main-img{
    width: 300px;
    height: 300px;
  }

  .articles-row,
  .services-row{
    flex-direction: row-reverse;
  }

  .articles-col,
  .services-col{
    width: calc(50% - 17px);
  }

  .related-row,
  .contact-row{
    flex-direction: row-reverse;
  }

  .related-col,
  .contact-col{
    width: calc((100% / 3) - 17px);
  }

  .page-img{
    width: 400px;
    height: 300px;
  }
}

@media (max-width: 991px){
  .footer-menu-nav{
    text-align: center;
    padding: 17px 0;
    align-items: center;
  }
}
@media (min-width: 992px){
  .box {
    max-width: 960px;
  }

  .nav{
    flex-direction: row-reverse;
  }
  
  .menu-nav{
    flex-direction: row-reverse;
  }

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

  .main-img{
    width: 600px;
    height: 500px;
  }

  .services-col{
    width: calc(50% - 17px);
  }

  .form{
    width: 80%;
  }

  .footer-menu-nav{
    padding: 17px 0;
    justify-content: center;
  }

  .delimeter{
    display: none;
  }

  .footer-menu-nav{
    flex-direction: row;
  }

  .page-img{
    width: 500px;
    height: 400px;
  }
}

@media (min-width: 1200px){
  .box {
    max-width: 1140px;
  }
}

.btn-box{
  text-align: center;
}

  .button-1 {
  padding: 11px 17px;
  margin: 0.5em;
  background: black;
  color: white;
  border: none;
  border-radius: 0.625em;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  }

  .button-1:hover {
  color: black;
  }

  .button-1:after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
  }

  .button-1:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  }

  .button-2 {
  position: relative;
  text-align: center;
  display: inline-block;
  background: linear-gradient(to bottom, #1b1c3f, #4a4e91);
  color: white;
  font-family: "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  padding: 11px 25px;
  cursor: pointer;
  box-shadow: 0 5px 17px rgba(0, 0, 0, 0.2);
  animation: button-shimmer 2s infinite;
  transition: all 0.3s ease-in-out;
}

.button-2:hover {
  background: linear-gradient(to bottom, #2c2f63, #5b67b7);
  animation: button-particles 1s ease-in-out infinite;
  transform: translateY(-2px);
}

.button-2:active {
  transform: scale(0.95);
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.3);
}

@keyframes button-shimmer {
  0% {
    background-position: left top;
  }

  100% {
    background-position: right bottom;
  }
}

@keyframes button-particles {
  0% {
    background-position: left top;
  }

  100% {
    background-position: right bottom;
  }
}


.button-3 {
  overflow: hidden;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(143, 64, 248, 0.5), 0 0 0 0 rgba(39, 200, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  background-color: #26caf8;
    text-decoration: none;
  padding: 24px 34px;
  font-size: 20px;
  position: relative;
  text-align: center;
  border: none;
  font-weight: 600;
}

.button-3::after {
  content: "";
  width: 400px;
  height: 400px;
  position: absolute;
  top: -128px;
  left: -27px;
  background-color: #ff3cac;
  background-image: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
  z-index: -1;
  transition: transform 0.5s ease;
}

.button-3:hover {
  transform: translate(0, -6px);
  box-shadow: 11px -11px 25px 0 rgba(143, 64, 248, 0.5),  -11px 11px 25px 0 rgba(39, 200, 255, 0.5);
}

.button-3:hover::after {
  transform: rotate(150deg);
}

.button-4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  font-size: 20px;
  background-color: rgba(13, 13, 13, 0.3);
  padding: 0.4em 1.2em;
  border-style: dashed;
  border-radius: 0.25em;
  border-width: 2px;
  border-color: rgba(13, 13, 13, 0.75);
  transition: 0.2s ease;
  display: inline-block;
}

.button-4:hover {
  background-color: rgb(255, 255, 255);
  color: #0d0d0d;
  border-color: #0d0d0d;
}

.button-5 {
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  border: 2px solid var(--hover);
  gap: 11px;
  text-decoration: none;
  background-color: var(--hover);
  transition: var(--transition);
}

.button-5::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  z-index: -1;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.button-5 span {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.button-5:hover::after {
  animation: sideClip 0.5s linear;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

.button-5:hover span {
  animation: storm 0.4s linear both;
  color: var(--hover);
}

@keyframes sideClip {
  0% {
    clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }

  50% {
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.main-content h2, .page-content h2{
  font-size: 20px;
}

.privacy-content h2{
  font-size: 23px;
}