@import url('https://fonts.googleapis.com/css2?family=Inder&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --color-bg-menu: #34344Ddd; /* #442668 */
  --mainBGColor: #34344D;
  --mainColorHalfTransparent: #34344D88;
  --h1: 2.5rem;
  --h2: 2rem;
  --h3: 1.75rem;
  --h4: 1.5rem;
  --h5: 1.25rem;
  --h6: 1rem;
  --h7: 0.75rem;
  --h8: 0.5rem;
  --h9: 0.25rem;

  --top-menu-height: 12vw;

}

p {
  font: 400 12px Inder , sans-serif;
}

.color-bg-menu {
  background-color: var(--color-bg-menu);
}

.h1 {
  font-size: var(--h1);
}
.h2 {
  font-size: var(--h2);
}
.h3 {
  font-size: var(--h3);
}
.h4 {
  font-size: var(--h4);
}
.h5 {
  font-size: var(--h5);
}
.h6 {
  font-size: var(--h6);
}
.h7 {
  font-size: var(--h7);
}
.h8 {
  font-size: var(--h8);
}
.h9 {
  font-size: var(--h9);
}
.w-47 {
  width: 47%;
}
.w-90 {
  width: 90%;
}
.z-4 {
  z-index: 4 !important;
}
.z-5 {
  z-index: 5 !important;
}
.z-6 {
  z-index: 6 !important;
}
.z-top {
  z-index: 250 !important;
}

.font-0 {
  font-family: "Open Sans", sans-serif;
}
.font-1 {
  font-family: "JetBrains Mono", monospace;
}
.font-2 {
  font-family: 'Inder' , sans-serif;
}
.font-3 {
  font-family:  "Inter", sans-serif;
}

.extraLight {
  font-weight: 200;
}

.w90vw{
  width: 90vw;
}

.overflowHidden {
  overflow: hidden;
}

.overflowHidden-100vw{
  width: 100vw;
  overflow-x: hidden;
}

.centerFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mh-2{
  margin-left: 1rem;
  margin-right: 1rem;
}

/* html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
} */

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.bodyBGColor {
  background-color: var(--mainBGColor);
}

/* .navbar-light {
  background-color: var(--color-a1) !important;
  border: none !important;
  border-width: 0 !important;
} */

.hide {
  display: none !important;
}

* {
  box-sizing: border-box;
}

a,
a:hover {
  cursor: pointer;
  text-decoration: none;
}

.header-link {
  font-weight: bold;
  color: var(--color-white);
}

.header-item a:hover {
  color: var(--color-b4);
}

.footer-link {
  font-weight: bold;
  color: var(--color-4);
}

.footer-item a:hover {
  color: var(--color-b4);
}

.text-indent-50 {
  text-indent: 50px;
}

.fixed-bottom {
  position: absolute;
  bottom: 0;
}

.horizontal-m-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.input-hover {
  z-index: 4;

  cursor: text;
  text-align: left;
  border: none;
  border-radius: 3rem;

  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  background-image: linear-gradient(
    to top,
    var(--color-a4),
    var(--color-a0)
  );
}

/* button */
.btn-hover {
  z-index: 4;

  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 3rem;

  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  background-image: linear-gradient(
    to bottom,
    var(--color-a4),
    var(--color-a0)
  );
}

.shadow-0 {
  box-shadow: 0 0 1rem 0 var(--color-a2);
}
.shadow-1 {
  box-shadow: 0 0 1rem 0 var(--color-a2);
}

/* .btn-hover:hover {
  background-position: 100% 0;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
} */

.btn-hover:focus {
  outline: none;
}

.btn-hover:active {
  transform: scale(0.6);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

/* icon black to 4687C1 */
.my-icon {
  filter: invert(54%) sepia(27%) saturate(907%) hue-rotate(167deg)
    brightness(86%) contrast(99%);
}

.mainBlock{
  display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

.flexRowWrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  
  transition: 1s;
}

@media only screen and (max-width: 719px) {  
  .flexRowWrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}





/* кнопка меню для мобилы */

.burgerButton {
  position: fixed;
  top: 40px;
  right: 0px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 255;
  display: block;
}

.centerized {
  width: 50px;
  height: 32px;
  cursor: pointer;
  z-index: 50;
}

.centerized .bar1,
.centerized .bar2,
.centerized .bar3 {
  height: 5px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  box-shadow:-2px 2px 17px 7px rgba(0, 0, 0, 0.3);;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.centerized .bar1 {
  -webkit-animation: animate-line-1-rev .7s ease-in-out;
  animation: animate-line-1-rev .7s ease-in-out;
}

.centerized .bar2 {
  margin: 10px 0;
  -webkit-animation: animate-line-2-rev .7s ease-in-out;
  animation: animate-line-2-rev .7s ease-in-out;
}

.centerized .bar3 {
  -webkit-animation: animate-line-3-rev .7s ease-in-out;
  animation: animate-line-3-rev .7s ease-in-out;
}

.centerized:hover .bar1,
.centerized:hover .bar2,
.centerized:hover .bar3 {
  background-color: #fff;
}

.centerized:hover .bar1,
.centerized:hover .bar2,
.centerized:hover .bar3 {
  background-color: #fff;
}

.centerized[data-open='true'] .bar1 {
  -webkit-animation: animate-line-1 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
  animation: animate-line-1 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}

.centerized[data-open='true']  .bar2 {
  -webkit-animation: animate-line-2 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
  animation: animate-line-2 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}

.centerized[data-open='true']  .bar3 {
  -webkit-animation: animate-line-3 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
  animation: animate-line-3 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}

.no-animation {
  -webkit-animation: none !important;
  animation: none !important;
}

@-webkit-keyframes animate-line-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(0);
    transform: translate3d(0, 14px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(45deg);
    transform: translate3d(0, 14px, 0) rotate(45deg);
  }
}

@keyframes animate-line-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(0);
    transform: translate3d(0, 14px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(45deg);
    transform: translate3d(0, 14px, 0) rotate(45deg);
  }
}

@-webkit-keyframes animate-line-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes animate-line-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes animate-line-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(0);
    transform: translate3d(0, -22px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(135deg);
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
}

@keyframes animate-line-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(0);
    transform: translate3d(0, -22px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(135deg);
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
}

@-webkit-keyframes animate-line-1-rev {
  0% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(45deg);
    transform: translate3d(0, 14px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(0);
    transform: translate3d(0, 14px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes animate-line-1-rev {
  0% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(45deg);
    transform: translate3d(0, 14px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 14px, 0) rotate(0);
    transform: translate3d(0, 14px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@-webkit-keyframes animate-line-2-rev {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animate-line-2-rev {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes animate-line-3-rev {
  0% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(135deg);
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
  50% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(0);
    transform: translate3d(0, -22px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes animate-line-3-rev {
  0% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(135deg);
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
  50% {
    -webkit-transform: translate3d(0, -22px, 0) rotate(0);
    transform: translate3d(0, -22px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}