@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');


:root {
  --backgroundColor-1: #e5d200;
  --backgroundColor-2: #aa9c00;
  --backgroundColor-3: #ffd500;
  --coloros-1: #ffae00;
  --coloros-2: #e19d27;
  --coloros-3: #ff8000;

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

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

*{
  box-sizing: border-box;
}

body{
  direction: ltr;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0;
}


a {
  cursor: pointer;
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.padding {
  padding: 58px 0;
}
.titles {
  position: relative;
  padding: 24px 0;
  margin: 0;
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 33px);
  text-align: center;
}
.titles::after {
  background: url('imagevault/other/borders_short-068d53c90eba2f.png') no-repeat center;
  content: '';
  display: block; 
  background-size: contain;
  width: 100%;
  height: 29px; 
  margin-top: 10px; 
}
section {
  overflow: hidden;
}
.shell {
  width: auto;
  position: relative;
  z-index: 3;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 480px) {
  .shell{
  max-width: 447px;
  }
}
@media screen and (min-width: 575px){
  .shell{
    max-width: 534px;
  }
}
@media screen and (min-width: 768px) {
  .shell{
  max-width: 729px;
  }
}
@media screen and (min-width: 992px) {
  .shell{
    max-width: 953px;
  }
}
@media screen and (min-width: 1200px){
  .shell{
    max-width: 1158px;
    }
}
@media (min-width: 1400px){
  .shell{
    max-width: 1258px;
  }
}
.bgColor-grad {
  background: linear-gradient(
    -45deg, 
    #e5d200, 
    #aa9c00, 
    #ffd500);
}
.bgColor2-grad {
  background: linear-gradient(
    -45deg, 
    #ffae00, 
    #fff265, 
    #ff8000)
}
.aside-nav {
  box-shadow: 4px 4px 10px #111111ae;
  background-color: var(--bgMain);
  width: 273px !important;
  height: fit-content;
  text-align: center;
  overflow: hidden;
  z-index: 4;
  position: absolute;
  top: 0;
  left: -273px;
  transition: left .4s ease;
}
.aside-nav .sections {
  margin: 0;
  padding: 66px 0;
}
.aside-nav .sections li {
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 0;
  font-size: 21px;
  color: var(--white);
  transition: color .4s ease;
}
.aside-nav a {
  color: var(--black);
}
.aside-nav .sections a:hover:before {
  width: 100%;
}
.aside-nav .sections li:hover {
  cursor: pointer;
  color: var(--white);
}
@media (max-width: 767px) {
  .aside-nav {
    width: 100% !important;
    left: -100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .aside-nav {
    width: 53px !important;
    left: -53px;
  }
}
.menu-icon {
  z-index: 4;
  height: 24px;
  width: 34px;
  position: absolute;
  top: 19px;
  left: 19px;
  margin-left: 0;
}
.menu-icon:hover {
  cursor: pointer;
}
.menu-icon > div {
  width: 100%;
  height: 4px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 5px;
  transition: all .3s ease;
}
.menu-icon .bar3 {
  margin-bottom: 0;
}
.x-bar { 
  z-index: 4;
  position: absolute;
  top: -29px;
  left: 308px !important;
  width: 29px;
  height: 29px;
  display: block;
  transition: top .4s ease;
}
.x-bar:hover {
  cursor: pointer;
}
.x-bar > div {
  z-index: 4;
  background-color: rgb(255, 255, 255);
  width: 100%;
    height: 4px;
  margin-bottom: 5px;
  transition: .3s ease;
}
.x-bar .drawer1 {
  -webkit-transform: rotate(-45deg)translate(-5px, 5px);
  -moz-transform: rotate(-45deg)translate(-5px, 5px);
  -o-transform: rotate(-45deg)translate(-5px, 5px);
  -ms-transform: rotate(-45deg)translate(-5px, 5px);
  transform: rotate(-45deg)translate(-5px, 5px);
}
.x-bar .drawer2 {
  -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) {
  .aside-nav .sections {
    padding: 47px 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: 258px !important;
  }
  .x-bar > div {
    background-color: black;
  }
}
.featuredHeroMain {
  direction: initial;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.featuredHeroMain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.featuredHeroOverley {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 147px, var(--ov-main) 350px);
  z-index: 1;
}
.featuredHero {
  display: flex;
  transition: transform 1s ease;
}
.featuredHeroBox {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 106px 19px; 
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
@media (min-width:576px) {
  .featuredHeroBox {
    padding: 319px 19px; 
  }
}
.featuredHeroBox-1 {
  background-image: url('imagevault/background/bg-dark-068d53c90eb9b7.jpg');
}
.featuredHeroBox-2 {
  background-image: url('imagevault/background/bg-dark-168d53c90eb9c4.jpg');
}
.featuredHeroBox-3 {
  background-image: url('imagevault/background/bg-dark-268d53c90eb9d1.jpg');
}
.featuredHeroText {
  padding:45px 19px;
  position: relative;
  font-size: clamp(20px,4vw,30px);
  color: var(--black);
  border-radius: 0px;
  position: relative;
  background: var(--bgMain);
  max-width: 1053px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
}
.featuredHeroText a {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 33px);
  color: var(--black);
}
.bgColor {
  background-color: var(--bgMain);
}
.bg-colorBg {
  background: url(imagevault/background/opacity_bg-068d53c90eba01.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: 66px;
  padding: 106px 47px;
}
.cardContain .card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 347px;
  max-width: 100%;
  height: 347px;
  background: var(--white);
  border-radius: 0px;
  transition: 0.4s;
  box-shadow: 0 34px 58px rgba(0, 0, 0, 0.15);
}
.cardContain .card:hover {
  height: 447px;
}
.cardContain .card .picture-box {
  position: absolute;
  top: 19px;
  width: 273px;
  height: 204px;
  background: #333;
  border-radius: 0px;
  overflow: hidden;
  transition: 0.4s;
}
.cardContain .card:hover .picture-box {
  top: -106px;
  scale: 0.74;
  box-shadow: 0 rand_padding_vertical_small_6} 47px rgba(0, 0, 0, 0.2);
}
.cardContain .card .picture-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: 253px;
  width: 100%;
  height: 58px;
  padding: 0 29px;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
}
.card .content .knopka-2 {
  margin-top: 10px;
}
.cardContain .card:hover .content {
  top: 129px;
  height: 247px;
}
.cardContain .card .content .titl {
  color: var(--colorMain);
  font-weight: 700;
}
.cardContain .card .content div {
  margin-top: 34px;
  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: 19px;
  }
  .cardContain .card .picture-box {
      width: 247px;
      border-radius: 10px;
  }
  .cardContain .card .content p {
      font-size: 16px;
  }
  .cardContain .card .content a {
      font-size: 16px;
  }
  .cardContain {
    padding: 106px 0;
  }
}
.bgColor2 {
  background-color: var(--colorMain);
}
.bg-colorBg2 {
  background: url(imagevault/background/opacity_bg-168d53c90eba0c.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blok2 {
  flex-wrap: wrap;
}
.card-container {
	width: 347px;
	height: 347px;
	border-radius: 0px;
	position: relative;
	-webkit-transition: 1.4s ease-in-out;
	transition: 1.4s 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: 19px 47px;
	color: var(--white);
	transform-style: preserve-3d;
	backface-visibility: hidden;
	border-radius: 0px;
}
.content-box {
	transform: translatez(70px) scale(0.8);
	line-height: 1.5;
}
.content-box a{
	position: relative;
}
.content-box div {
	margin: 29px 0;
	line-height: 1.5;
  -webkit-line-clamp: 3;
	line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.front-card {
	z-index: 2;
	background-size: 80vh;
	background-size: cover;
}
.content-box-front {
  padding: 10px;
  background-color: #29272499;
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-size: 20px;
  text-align: center;
  position: relative;
}
.front-card 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: 'Big Shoulders Stencil Display', sans-serif;
  font-size: 20px;
  text-align: center;
	position: relative;
}
.card-container:hover {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.about {
  gap: 29px;
}
.about-details {
  flex: 1;
  gap: 24px;
}
.about-details-img {
  flex: 1;
}
.about-details-img img {
  height: 204px;
  width: 100%;
  object-fit: contain;
}
.about-details-statist {
  justify-content: space-around;
  flex: 1;
  flex-wrap: wrap;
  gap: 29px;
  
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 19px;
  flex: 1;
  padding: 19px 0;
}
.about-numbers-box {
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 204px;
  padding: 10px;
  gap: 10px;
  border-radius: 0px;
  box-shadow: 10px 10px 29px rgb(255 255 255), -10px -10px 29px rgb(255 255 255);
}
.about-numbers-box-text {
  font-weight: 700;
  font-size: 21px;
  text-align: center;
}
.about-numbers-box-num {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}
.reward-main {
  flex-wrap: wrap;
}
.reward-box {
  padding:10px;
  box-sizing: border-box;
  width: calc(50% - 19px);
  min-height: 247px;
  background: rgba(217, 217, 217, 0.48);
  border: 3px solid white;
  box-shadow: 10px 19px 53px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 0px;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: 700;
  color: black;
}
.reward-box:hover {
  border: 1px solid black;
  transform: scale(1.05);
}
.reward-box:active {
  transform: scale(0.94) 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;
}
.reward-box-img {
  flex: 1;
  height: 147px;
  width: 100%;
  object-fit: contain;
}
.reward-box-text {
  flex: 2;
}
.bg-galari1 {
  height: 28vh;
  background-image: url(imagevault/background/bg-light-068d53c90eb97f.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-galari2 {
  height: 28vh;
  background-image: url(imagevault/background/bg-light-168d53c90eb98e.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-galari3 {
  height: 28vh;
  background-image: url(imagevault/background/bg-light-268d53c90eb99b.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}
.containerGallery {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 2fr;
  grid-gap: 10px;
  grid-template-areas:
      "var1Gallery1 var1Gallery1 var1Gallery1"
      "var1Gallery2 var1Gallery3 var1Gallery3"
      "var1Gallery2 var1Gallery4 var1Gallery5";
}
.var1Gallery1 {
  grid-area: var1Gallery1;
  height: 147px;
}
.var1Gallery2 {
  grid-area: var1Gallery2;
}
.var1Gallery3 {
  grid-area: var1Gallery3;
  height: 204px;
}
.var1Gallery4 {
  grid-area: var1Gallery4;
  height: 247px;
}
.var1Gallery5 {
  grid-area: var1Gallery5;
  height: 247px;
}
.photo-element {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--black);
  border-radius: 0px;
}
.photo-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}
.stepMain {
  min-height: 44vh;
  background-color: var(--colorMain);
}
.step-container {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.step-circle {
  color: var(--white);
  width: 47px;
  height: 47px;
  border-radius: 0%;
  background-color: var(--black);
  border: 1px solid var(--bgMain);
  line-height: 1.5;
  font-weight: 700;
  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.94) rotateZ(1.7deg);
}
.step-line {
  position: absolute;
  top: 19px;
  left: 47px;
  width: calc(100% - 106px);
  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: 147px;
  padding:10px;
  box-sizing: border-box;
  border: 3px solid white;
  backdrop-filter: blur(6px);
  border-radius: 0px;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: 700;
  color: black;
}
.mb-3:hover {
  border: 1px solid black;
  transform: scale(1.01);
}
.mb-3:active {
  transform: scale(0.94) rotateZ(1.7deg);
}
.survey-form-img {
  flex: 1;
}
.survey-form-img img {
  height: 247px;
  object-fit: contain;
  width: 100%;
}
.survey-form-main {
  flex: 2;
  width: 100%;
}
.survey-form-main form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.survey-form-column {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.survey-form-chek-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 19px;
}
.survey-form-column .input-custom-panel__block {
  border-radius: 0px;
  padding: 19px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--colorMain);
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column .input-custom-panel__block:focus {
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column .textarea-custom-panel__block {
  border-radius: 0px;;
  padding: 19px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--colorMain);
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column .textarea-custom-panel__block:focus {
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column-input {
  border-radius:0px;;
  padding: 19px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--colorMain);
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column-input:focus {
  outline: 2pxpx solid var(--bgMain);
}
.survey-form-column label {
  align-self: flex-start;
  color: var(--black);
  font-weight: {rand_weight};
}
.survey-form-chek-box a {
  color: var(--black);
}
.bottom-footer {
  background-color: var(--colorMain);
}
.diskMain {
  background: #00000069;
  border: 10px 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 19px;
}
.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: 19px;
}
.diskMain-img img {
  height: 58px;
}
.bottom-footerBox-col {
  gap: 29px 0;
}
.bottom-footerBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bottom-footerBox a {
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
}
.bottom-footerBox a:hover {
  color: var(--bgMain);
}
.bottom-footer-menu {
  flex: 2;
  text-align: start;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.bottom-footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.bottom-footer-polit {
  flex: 2;
  text-align: end;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.bottom-footer-logo {
  flex: 1;
}
.bottom-footer-logo img{
  height: 66px;
  object-fit: contain;
}
.bottom-footer-logo-titles {
  color: var(--white);
  position: relative;
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 33px);
  text-align: center;
}
.bottom-footer-logo-titles:hover {
  color: var(--black);
}
.bottom-footerCopyr {
  margin-top: 29px;
  text-align: right;
}
.bottom-footerCopyr a {
  color: var(--white);
}
.bottom-footerCopyr a:hover {
  color: var(--black);
}
.privas-text {
  word-break: break-all;
}
.devBox {
  height: fit-content;
}
.core-page-section {
  gap: 24px;
}
.core-page-sectionDev {
  gap: 24px;
}
.core-page-sectionDevImg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-page-sectionDevImg img {
  height: 447px;
  width: 100%;
  object-fit: contain;
}
.core-page-sectionIfra iframe {
  height: 100vh;
  width: 100%;
}
.contaktBlok {
  gap: 47px;
}
.kontaktBlok a {
  font-size: 20px;
  color: var(--black);
}
.kontaktBlok div {
  font-size: 20px;
  color: var(--black);
}
.kontaktBlok a:hover {
  color: var(--white);
}
.itemKontakt {
  min-height: 204px !important;
}
.var-1 {
  display: none;
}
.var-2 {
  display: none;
}
.knopka-1 {
  width: fit-content;
  color: #090909;
  padding: 5px 19px;
  font-size: 18px;
  border-radius: 5px;
  background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 5px 5px 10px #c5c5c5, -5px -5px 10px #ffffff;
}
.knopka-1:active {
  color: #666;
  box-shadow: inset 5px 5px 10px #c5c5c5, inset -5px -5px 10px #ffffff;
}
.knopka-2 {
  width: fit-content;
  background-color: #aa9c00;
  display: inline-block;
  padding: 10px;
  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.4s 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.4s 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 29px;
  outline: 2px solid #FEBF00;
  outline-offset: 2px
  border: 0;
  color: white;
  font-size: 16px;
  border-radius: 106px;
  transition: 0.3s;
  font-weight: {rand_weight};
}
.knopka-3:hover {
  outline-offset: 4px;
  outline: solid #000;
  background: #FEBF00;
  font-size: 18px;
}
 .knopka-4 {
  width: fit-content;
  display: inline-block;
  padding: 10px 29px;
  font-size: 16px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  border: 2px 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 29px;
  outline: 2px solid #FEBF00;
  outline-offset: 2px
  border: 0;
  color: white;
  font-size: 16px;
  border-radius: 106px;
  transition: 0.3s;
  font-weight: {rand_weight};
}
.knopka-5:hover {
  outline-offset: 4px;
  background: #FEBF00;
  font-size: 18px;
}

@media(max-width: 992px) {
  .cardContain {
    gap: 147px;
    padding: 106px 0;
  }
  .row2 {
    flex-direction: column;
  }
  .row3 {
    flex-direction: column;
  }
  .reward-box-img {
    flex: none;
  }
  .reward-box {
    min-height: 347px;
  }
  .devBox {
    min-height: fit-content !important;
  }
  .bottom-footerBox {
    flex-direction: column;
  }
  .bottom-footer-menu {
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .bottom-footer-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) {
  .reward-box {
    min-height: fit-content;
    width: 100%;
  }
  .row {
    flex-direction: column;
  }
  .about-details-statist {
    flex-direction: row;
  }
}
@media(max-width: 575px) {
  .kontaktBlok a {
    font-size: 18px;
  }
  .kontaktBlok div {
    font-size: 18px;
  }
  .side-box {
    padding: 19px;
  }
  .card-container {
    width: 100%;
  }
  .about-details-statist {
    flex-direction: column;
  }
  .about-numbers-box {
    width: 100%;
  }
  .bottom-footerBox a {
    font-size: 16px;
    text-align: center;
    word-break: break-all;
  }
  .bottom-footer-logo-titles {
    word-break: break-all;
  }
  .core-page-sectionDevImg img {
    height: auto;
  }
  .aside-nav .sections li {
    font-size: 19px;
  }
}


.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
