@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

*{
  box-sizing: border-box;
}
body{
  direction: ltr;
  font-family: 'Barlow Semi Condensed', sans-serif !important;
  font-size: 17px;
  margin: 0;
  padding: 0;
}
:root {

  --backgroundColor-1: #e5d200;
  --backgroundColor-2: #aa9c00;
  --backgroundColor-3: #ffd500;

  --coloros-1: #ffae00;
  --coloros-2: #e19d27;
  --coloros-3: #ff8000;

  --bgMain: var(--backgroundColor-2);
  --colorMain: var(--coloros-2);

  --white: #ffffff;
  --black: #000000;
}

a {
  cursor: pointer;
  text-decoration: none;
}
button {
  cursor: pointer;
}
.column {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.padding {
  padding: 70px 0;
}
.titles {
  position: relative;
  padding: 24px 0;
  margin: 0;
  font-family: 'Indie Flower', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  text-align: center;
}
.titles::after {
  background: url('artisticstorage/tematik/borders_short-067d3ed3aab0fa.png') no-repeat center;
  content: '';
  display: block; 
  background-size: contain;
  width: 100%;
  height: 30px; 
  margin-top: 10px; 
}
section {
  overflow: hidden;
}
.wrapper {
  width: auto;
  padding-right: 18px;
  padding-left: 18px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 480px) {
  .wrapper{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .wrapper{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .wrapper{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .wrapper{
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px){
  .wrapper{
    max-width: 1170px;
    }
}
@media (min-width: 1400px){
  .wrapper{
    max-width: 1274px;
  }
}
.bgColor-grad {
  background: linear-gradient(
    -180deg, 
    #e5d200, 
    #aa9c00, 
    #ffd500);
}
.bgColor2-grad {
  background: linear-gradient(
    -180deg, 
    #ffae00, 
    #fff265, 
    #ff8000)
}
.side-nav {
  background-color: var(--bgMain);
  width: 300px !important;
  height: fit-content;
  text-align: center;
  overflow: hidden;
  z-index: 4;
  position: absolute;
  top: 0;
  left: -300px;
  transition: left .5s ease;
}
.side-nav .sections {
  margin: 0;
  padding: 90px 0;
}
.side-nav .sections li {
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 0;
  font-size: 25px;
  color: var(--white);
  transition: color .5s ease;
}
.side-nav a {
  color: var(--black);
}
.side-nav .sections a:hover:before {
  width: 100%;
}
.side-nav .sections li:hover {
  cursor: pointer;
  color: var(--white);
}
@media (max-width: 767px) {
  .side-nav {
    width: 100% !important;
    left: -100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .side-nav {
    width: 270px !important;
    left: -270px;
  }
}
.menu-icon {
  z-index: 4;
  height: 24px;
  width: 40px;
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: 0;
}
.menu-icon:hover {
  cursor: pointer;
}
.menu-icon > div {
  width: 100%;
  height: 4px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 6px;
  transition: all .4s ease;
}
.menu-icon .bar3 {
  margin-bottom: 0;
}
.x-bar { 
  z-index: 4;
  position: absolute;
  top: -30px;
  left: 307px !important;
  width: 30px;
  height: 30px;
  display: block;
  transition: top .5s ease;
}
.x-bar:hover {
  cursor: pointer;
}
.x-bar > div {
  z-index: 4;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 4px;
  margin-bottom: 6px;
  transition: .3s ease;
}
.x-bar .side-bar1 {
  -webkit-transform: rotate(-45deg)translate(-8px, 7px);
  -moz-transform: rotate(-45deg)translate(-8px, 7px);
  -o-transform: rotate(-45deg)translate(-8px, 7px);
  -ms-transform: rotate(-45deg)translate(-8px, 7px);
  transform: rotate(-45deg)translate(-8px, 7px);
}
.x-bar .side-bar2 {
  -webkit-transform: rotate(45deg) translate(1px, 0px);
  -moz-transform: rotate(45deg) translate(1px, 0px);
  -o-transform: rotate(45deg) translate(1px, 0px);
  -ms-transform: rotate(45deg) translate(1px, 0px);
  transform: rotate(45deg) translate(1px, 0px);
}
@media (max-width: 766px) {
  .side-nav .sections {
    padding: 45px 0;
  }
  .x-bar {
    z-index: 5;
    left: 90% !important;
  }
  .x-bar > div {
    background-color: #888;
  }
}
@media (min-width: 767px) {
  .x-bar {
    left: 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .x-bar {
    z-index: 1;
    left: 280px !important;
  }
  .x-bar > div {
    background-color: black;
  }
}
.slideHeroMain {
  direction: initial;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slideHeroMain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideHeroOverley {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 150px, var(--ov-main) 350px);
  z-index: 1;
}
.slideHero {
  display: flex;
  transition: transform 1s ease;
}
.slideHeroBox {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 120px 20px; 
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
@media (min-width:576px) {
  .slideHeroBox {
    padding: 320px 20px; 
  }
}
.slideHeroBox-1 {
  background-image: url('artisticstorage/bg/bg-dark-067d3ed3aaae2c.jpg');
}
.slideHeroBox-2 {
  background-image: url('artisticstorage/bg/bg-dark-167d3ed3aaae82.jpg');
}
.slideHeroBox-3 {
  background-image: url('artisticstorage/bg/bg-dark-267d3ed3aaaedc.jpg');
}
.slideHeroText {
  padding:44px 18px;
  position: relative;
  font-size: clamp(21px,4vw,31px);
  color: var(--black);
  border-radius: 35px;
  position: relative;
  background: var(--bgMain);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.slideHeroText a {
  font-family: 'Indie Flower', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--black);
}
.bgColor {
  background-color: var(--bgMain);
}
.bg-colorBg {
  background: url(artisticstorage/bg/opacity_bg-067d3ed3aaafcc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cardContain {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
  padding: 100px 50px;
}
.cardContain .card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  height: 350px;
  background: var(--white);
  border-radius: 35px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}
.cardContain .card:hover {
  height: 400px;
}
.cardContain .card .img-box {
  position: absolute;
  top: 20px;
  width: 300px;
  height: 200px;
  background: #333;
  border-radius: 35px;
  overflow: hidden;
  transition: 0.5s;
}
.cardContain .card:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}
.cardContain .card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardContain .card .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  top: 252px;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}
.card .content .knopka-2 {
  margin-top: 15px;
}
.cardContain .card:hover .content {
  top: 130px;
  height: 250px;
}
.cardContain .card .content .titl {
  color: var(--colorMain);
  font-weight: 700;
}
.cardContain .card .content div {
  margin-top: 40px;
  color: #333;
  -webkit-line-clamp: 2;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.cardContain .card .content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .cardContain .card {
      width: 100%;
      border-radius: 15px;
  }
  .cardContain .card .img-box {
      width: 250px;
      border-radius: 10px;
  }
  .cardContain .card .content p {
      font-size: 0.8rem;
  }
  .cardContain .card .content a {
      font-size: 0.9rem;
  }
  .cardContain {
    padding: 100px 0;
  }
}
.bgColor2 {
  background-color: var(--colorMain);
}
.bg-colorBg2 {
  background: url(artisticstorage/bg/opacity_bg-167d3ed3aab02c.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blok2 {
  flex-wrap: wrap;
}
.container-box {
	width: 350px;
	height: 350px;
	border-radius: 35px;
	position: relative;
	-webkit-transition: 1.5s ease-in-out;
	transition: 1.5s ease-in-out;
	transform-style: preserve-3d;
}
.side-box {
  display: flex;
  align-items: center;
  justify-content: center;
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 20px 50px;
	color: var(--white);
	transform-style: preserve-3d;
	backface-visibility: hidden;
	border-radius: 35px;
}
.content-box {
	transform: translatez(70px) scale(0.8);
	line-height: 1.5em;
}
.content-box a{
	position: relative;
}
.content-box div {
	margin: 30px 0;
	line-height: 2em;
  -webkit-line-clamp: 3;
	line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.front-box {
	z-index: 2;
	background-size: 100vh;
	background-size: cover;
}
.content-box-front {
  padding: 10px;
  background-color: #29272499;
  font-family: 'Indie Flower', sans-serif;

  font-size: 22px;
  text-align: center;
  position: relative;
}
.front-box a {
	position: relative;
  color: var(--white);
}
.back-box {
	background-color: var(--bgMain);
	transform: rotateY(180deg);
	z-index: 0;
	padding-top: 10px;
}
.back-box .titl {
  color: var(--black);
  font-family: 'Indie Flower', sans-serif;
  font-size: 22px;
  text-align: center;
	position: relative;
}
.container-box:hover {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.about {
  gap: 30px;
}
.about-dop {
  flex: 1;
  gap: 24px;
}
.about-dop-img {
  flex: 1;
}
.about-dop-img img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}
.about-dop-statist {
  justify-content: space-around;
  flex: 1;
  flex-wrap: wrap;
  gap: 29px;
  
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  padding: 18px 0;
}
.about-dop-statist-box {
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 200px;
  padding: 10px;
  gap: 10px;
  border-radius: 35px;
  box-shadow: 15px 15px 30px rgb(255 255 255), -15px -15px 30px rgb(255 255 255);
}
.about-dop-statist-box-text {
  font-weight: 800;
  font-size: 25px;
  text-align: center;
}
.about-dop-statist-box-num {
  font-family: 'Indie Flower', sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
}
.benefitMain {
  flex-wrap: wrap;
}
.benefitBox {
  padding:10px;
  box-sizing: border-box;
  width: calc(50% - 19px);
  min-height: 250px;
  background: rgba(217, 217, 217, 0.48);
  border: 5px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 35px;
  text-align: center;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
}
.benefitBox:hover {
  border: 1px solid black;
  transform: scale(1.05);
}
.benefitBox:active {
  transform: scale(0.95) rotateZ(1.7deg);
}
.row2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.row3 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.benefitBox-img {
  flex: 1;
  height: 150px;
  width: 100%;
  object-fit: contain;
}
.benefitBox-text {
  flex: 2;
}
.bg-galari1 {
  height: 30vh;
  background-image: url(artisticstorage/bg/bg-light-067d3ed3aaacc6.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-galari2 {
  height: 30vh;
  background-image: url(artisticstorage/bg/bg-light-167d3ed3aaad1d.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-galari3 {
  height: 30vh;
  background-image: url(artisticstorage/bg/bg-light-267d3ed3aaad71.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.containerGallery {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 2fr;
  grid-gap: 1rem;
  grid-template-areas:
      "var1Gallery1 var1Gallery1 var1Gallery1"
      "var1Gallery2 var1Gallery3 var1Gallery3"
      "var1Gallery2 var1Gallery4 var1Gallery5";
}
.var1Gallery1 {
  grid-area: var1Gallery1;
  height: 150px;
}
.var1Gallery2 {
  grid-area: var1Gallery2;
}
.var1Gallery3 {
  grid-area: var1Gallery3;
  height: 200px;
}
.var1Gallery4 {
  grid-area: var1Gallery4;
  height: 250px;
}
.var1Gallery5 {
  grid-area: var1Gallery5;
  height: 250px;
}
.itemGallery {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--black);
  border-radius: 35px;
}
.itemGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}
.stepMain {
  min-height: 50vh;
  background-color: var(--colorMain);
}
.step-container {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.step-circle {
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--black);
  border: 1px solid var(--bgMain);
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; 
}
.step-circle:hover {
  background-color: var(--bgMain);
  color: var(--black);
  border: 1px solid black;
  transform: scale(1.05);
}
.step-circle:active {
  transform: scale(0.95) rotateZ(1.7deg);
}
.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: var(--black);
  z-index: 1;
}
#multi-step-form{
  padding: 24px 24px;
  overflow-x: hidden;
}
.mb-3 {
  background: rgba(217, 217, 217, 0.48);
  min-height: 150px;
  padding:10px;
  box-sizing: border-box;
  border: 5px solid white;
  backdrop-filter: blur(6px);
  border-radius: 35px;
  text-align: center;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
}
.mb-3:hover {
  border: 1px solid black;
  transform: scale(1.01);
}
.mb-3:active {
  transform: scale(0.95) rotateZ(1.7deg);
}
.formMain-img {
  flex: 1;
}
.formMain-img img {
  height: 250px;
  object-fit: contain;
  width: 100%;
}
.formMain-main {
  flex: 2;
  width: 100%;
}
.formMain-main form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.formMain-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.formMain-chek-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.formMain-column .input-field--box--control {
  border-radius:35px;;
  padding: 20px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--colorMain);
  outline: 2px solid var(--bgMain);
}
.formMain-column .input-field--box--control:focus {
  outline: 2px solid var(--bgMain);
}
.formMain-column .textarea-field--box--control {
  border-radius: 35px;;
  padding: 20px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--colorMain);
  outline: 2px solid var(--bgMain);
}
.formMain-column .textarea-field--box--control:focus {
  outline: 2px solid var(--bgMain);
}
.formMain-column-input {
  border-radius:35px;;
  padding: 20px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--colorMain);
  outline: 2px solid var(--bgMain);
}
.formMain-column-input:focus {
  outline: 2px solid var(--bgMain);
}
.formMain-column label {
  align-self: flex-start;
  color: var(--black);
  font-weight: 600;
}
.formMain-chek-box a {
  color: var(--black);
}
.footerMain {
  background-color: var(--colorMain);
}
.diskMain {
  background: #00000069;
  border: 7px solid;
  border-image: linear-gradient(45deg, red, orange, yellow) 1;
  animation: animate-border 3s linear infinite;
  position: relative;
  overflow: hidden;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
  padding: 24px 18px;
}
.diskMain h2 {
  color: var(--white);
}
.diskMain div {
  text-align: center;
  color: var(--white);
}
@keyframes animate-border {
  0% {
      border-image-source: linear-gradient(45deg, red, orange, yellow);
  }
  50% {
      border-image-source: linear-gradient(135deg, yellow, orange, red);
  }
  100% {
      border-image-source: linear-gradient(45deg, red, orange, yellow);
  }
}
.diskMain-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.diskMain-img img {
  height: 80px;
}
.footerMainBox-col {
  gap: 29px 0;
}
.footerMainBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footerMainBox a {
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}
.footerMainBox a:hover {
  color: var(--bgMain);
}
.footerMain-menu {
  flex: 2;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerMain-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.footerMain-polit {
  flex: 2;
  text-align: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerMain-logo {
  flex: 1;
}
.footerMain-logo img{
  height: 90px;
  object-fit: contain;
}
.footerMain-logo-titles {
  color: var(--white);
  position: relative;
  font-family: 'Indie Flower', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  text-align: center;
}
.footerMain-logo-titles:hover {
  color: var(--black);
}
.footerMainCopyr {
  margin-top: 29px;
  text-align: right;
}
.footerMainCopyr a {
  color: var(--white);
}
.footerMainCopyr a:hover {
  color: var(--black);
}
.privas-text {
  word-break: break-all;
}
.devBox {
  height: fit-content;
}
.pageMain {
  gap: 24px;
}
.pageMainDev {
  gap: 24px;
}
.pageMainDevImg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageMainDevImg img {
  height: 400px;
  width: 100%;
  object-fit: contain;
}
.pageMainIfra iframe {
  height: 420px;
  width: 100%;
}
.contaktBlok {
  gap: 50px;
}
.kontaktBlok a {
  font-size: 22px;
  color: var(--black);
}
.kontaktBlok div {
  font-size: 22px;
  color: var(--black);
}
.kontaktBlok a:hover {
  color: var(--white);
}
.itemKontakt {
  min-height: 200px !important;
}
.var-1 {
  display: block;
}
.var-2 {
  display: none;
}
.knopka-1 {
  width: fit-content;
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
.knopka-1:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}
.knopka-2 {
  width: fit-content;
  background-color: #aa9c00;
  display: inline-block;
  padding: 12px;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  cursor: pointer;
  color: black;
  z-index: 1;
}

.knopka-2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.knopka-2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #e1ff00;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.knopka-2:hover {
  color: #000000;
  border: 1px solid #e1ff00;
}
.knopka-2:hover:before {
  top: -35%;
  background-color: #e1ff00;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.knopka-2:hover:after {
  top: -45%;
  background-color: #e1ff00;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.knopka-3 {
  width: fit-content;
  background: #282936;
  padding: 10px 2rem;
  outline: 2.5px solid #FEBF00;
  outline-offset: 3px;
  border: 0;
  color: white;
  font-size: 1rem;
  border-radius: 100rem;
  transition: 0.4s;
  font-weight: 600;
}
.knopka-3:hover {
  outline-offset: 4.5px;
  outline: solid #000;
  background: #FEBF00;
  font-size: 1.1rem;
}
 .knopka-4 {
  width: fit-content;
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 16px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  border: 3px solid rgb(255, 242, 0);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
 }
 .knopka-4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 242, 0);
  transform: translateX(-100%);
  transition: all .3s;
  z-index: -1;
  color: var(--white);
 }
 .knopka-4:hover::before {
  transform: translateX(0);
 }
 .knopka-5 {
  width: fit-content;
  background: #282936;
  padding: 10px 2rem;
  outline: 2.5px solid #FEBF00;
  outline-offset: 3px;
  border: 0;
  color: white;
  font-size: 1rem;
  border-radius: 100rem;
  transition: 0.4s;
  font-weight: 600;
}
.knopka-5:hover {
  outline-offset: 4.5px;
  background: #FEBF00;
  font-size: 1.1rem;
}

@media(max-width: 992px) {
  .cardContain {
    gap: 150px;
    padding: 100px 0;
  }
  .row2 {
    flex-direction: column;
  }
  .row3 {
    flex-direction: column;
  }
  .benefitBox-img {
    flex: none;
  }
  .benefitBox {
    min-height: 350px;
  }
  .devBox {
    min-height: fit-content !important;
  }
  .footerMainBox {
    flex-direction: column;
  }
  .footerMain-menu {
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .footerMain-polit {
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .kontakt-row {
    flex-wrap: wrap;
  }
}
@media(max-width: 767px) {
  .benefitBox {
    min-height: fit-content;
    width: 100%;
  }
  .row {
    flex-direction: column;
  }
  .about-dop-statist {
    flex-direction: row;
  }
}
@media(max-width: 575px) {
  .kontaktBlok a {
    font-size: 18px;
  }
  .kontaktBlok div {
    font-size: 18px;
  }
  .side-box {
    padding: 20px;
  }
  .container-box {
    width: 100%;
  }
  .about-dop-statist {
    flex-direction: column;
  }
  .about-dop-statist-box {
    width: 100%;
  }
  .footerMainBox a {
    font-size: 17px;
    text-align: center;
    word-break: break-all;
  }
  .footerMain-logo-titles {
    word-break: break-all;
  }
  .pageMainDevImg img {
    height: auto;
  }
  .side-nav .sections li {
    font-size: 20px;
  }
}
