.loadingWrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0392156863);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.tooltipChild {
  position: relative;
}

.tooltipWrapper {
  position: absolute;
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 64.815px 46.852px 0px rgba(0, 0, 0, 0.05), 0px 38.519px 25.481px 0px rgba(0, 0, 0, 0.04), 0px 20px 13px 0px rgba(0, 0, 0, 0.04), 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.03), 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.02);
  background: white;
  padding: 16px;
  border-radius: 16px;
  max-width: 350px;
  border: 1px rgba(0, 0, 0, 0.0392156863) solid;
  top: 0;
  width: max-content;
}
.tooltipWrapper p {
  color: #170021;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

/* extendUsefulLinks */
.extendUsefulLinks {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.extendUsefulLinks .link {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  border-radius: 15px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%);
  height: 234px;
  padding: 20px;
  min-width: 285px;
  width: 285px;
  position: relative;
}
.extendUsefulLinks .link .bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

@media screen and (max-width: 900px) {
  .extendUsefulLinks {
    width: 100%;
  }
}
/* sectHead */
.sectHead {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sectHead h4 {
  color: #690097;
  font-family: "Bebas";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 70px */
}
.sectHead .stroke {
  height: 57px;
  border-radius: 32px;
  width: 5px;
  background: linear-gradient(134deg, #B200FF 14.85%, #FF00F5 86.52%);
}
.sectHead p {
  color: #170021;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}

@media screen and (max-width: 1000px) {
  .sectHead {
    flex-direction: column;
    gap: 5px;
    align-items: start;
    margin-left: 20px;
    align-self: start;
  }
  .sectHead .stroke {
    width: 80%;
    height: 5px;
  }
}
@media screen and (max-width: 600px) {
  .sectHead h4 {
    font-size: 50px;
  }
}
@media screen and (max-width: 450px) {
  .sectHead {
    margin-left: 0;
  }
  .sectHead h4 {
    font-size: 36px;
  }
}
/* newsItem */
.newsItem {
  display: flex;
  flex-direction: column;
  width: 387px;
}
.newsItem .newsImage {
  border-radius: 30px 30px 0px 0px;
  border: 1px #6F00D5 solid;
  border-bottom: none;
}
.newsItem .newsImage img {
  border-radius: 30px 30px 0px 0px;
  width: 100%;
}
.newsItem .newsDescription {
  padding: 20px 30px 35px 30px;
  border-radius: 0px 0px 30px 30px;
  border: 0.5px #F500F6 solid;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: white;
  height: 100%;
}
.newsItem .newsDescription a {
  color: #690097 !important;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
.newsItem .newsDescription a:hover {
  transform: translateY(-2px);
  transform: scale(1.04);
}
.newsItem .newsDescription p {
  color: #888;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
}

/* ContactForm */
.contactForm {
  padding: 45px 102px;
  border-radius: 32px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%);
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  background-position: right bottom;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
  height: 100%;
  position: relative;
  max-width: 810px;
}
.contactForm .inputWrapper span {
  color: white;
}
.contactForm .inputWrapper:nth-child(2) {
  grid-row: 1/span 2;
  grid-column: 2;
  height: 100%;
}
.contactForm .inputWrapper:nth-child(2) textarea {
  height: calc(100% - 20px);
}
.contactForm .inputWrapper:nth-child(4) {
  grid-column: 1/span 2;
  grid-row: 3;
  width: 350px;
  margin-top: 5px;
}
.contactForm .inputWrapper .checkbox input[type=checkbox]::after {
  background-image: url("../main-images/whiteBorderCustomCheckbox.png");
}
.contactForm .inputWrapper .checkbox input[type=checkbox]:checked::after {
  background-image: url("../main-images/whiteBorderCustomCheckboxActive.svg");
}
.contactForm .inputWrapper .checkbox p {
  color: white;
}
.contactForm .inputWrapper .checkbox p a {
  color: white;
  text-decoration: underline !important;
  font-weight: 500;
}
.contactForm button {
  margin-top: 10px;
  grid-column: 1/span 2;
  width: max-content;
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  padding: 16px 52px;
  border-radius: 30px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}

@media screen and (max-width: 800px) {
  .contactForm {
    padding: 45px 75px;
  }
}
@media screen and (max-width: 650px) {
  .contactForm {
    flex-direction: column;
    display: flex;
    padding: 60px 35px;
  }
  .contactForm .inputWrapper:nth-child(1) {
    order: -1;
  }
  .contactForm .inputWrapper:nth-child(2) textarea {
    height: 120px;
  }
  .contactForm .inputWrapper:nth-child(3) {
    order: -2;
  }
  .contactForm .inputWrapper:nth-child(4) {
    width: 100%;
  }
  .contactForm button {
    width: 100%;
    padding: 16px 0px;
  }
}
/* telegramBaner */
.telegramBaner {
  padding: 0px 0px 63px 38px;
  border-radius: 30px;
  background: linear-gradient(154deg, #B200FF -18.49%, #000 85.3%, #FF00F5 173.71%), url("../main-images/telegramBaner.png");
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: end;
  height: 381px;
  width: 396px;
  background-blend-mode: lighten;
  background-position: top right;
  background-repeat: no-repeat;
}
.telegramBaner h4 {
  color: #FFF;
  font-family: "Bebas";
  font-size: 36.148px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 36.148px */
  margin-bottom: 0 !important;
}
.telegramBaner p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
.telegramBaner a {
  color: #FFF;
  width: max-content;
  margin-top: 8px;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  padding: 14px 27px;
  border-radius: 27.111px;
  background: linear-gradient(127deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
}

/* filterTree */
.filterTree {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filterTree .checkbox {
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  background-image: url("../main-images/checkBoxNotActive.svg");
  cursor: pointer;
}
.filterTree .checkbox.active {
  background-image: url("../main-images/checkboxActive.svg");
}
.filterTree .catWrap .parent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filterTree .catWrap .parent.active > .list {
  display: flex;
}
.filterTree .catWrap .parent .parentCat {
  display: flex;
  gap: 3px;
  align-items: center;
  font-size: 15px;
}
.filterTree .catWrap .parent .parentCat p {
  cursor: pointer;
  font-weight: 500;
  color: #170021;
  font-family: Montserrat !important;
  font-size: 14px;
  font-style: normal;
  line-height: 140%;
}
.filterTree .catWrap .parent .parentCat input {
  width: max-content;
}
.filterTree .catWrap .parent .parentCat img {
  cursor: pointer;
  padding: 4px;
}
.filterTree .catWrap .parent .list {
  padding-left: 10px;
  flex-direction: column;
  gap: 4px;
  display: none;
}
.filterTree .catWrap .parent .list .catLink {
  display: flex;
  gap: 3px;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  color: #170021;
  font-family: Montserrat !important;
  font-size: 13px;
  font-style: normal;
  line-height: 140%;
}
.filterTree .catWrap .parent .list .catLink input {
  width: max-content;
}

/* header */
.headerMenu {
  width: 100%;
  background: white;
}
.headerMenu .menuList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 10px 26px 10px;
}
.headerMenu .menuList a.link {
  color: #000;
  font-family: Montserrat !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.headerMenu .menuList a.link.active .stroke {
  width: 100%;
}
.headerMenu .menuList a.link .stroke {
  height: 3px;
  margin-top: 6px;
  width: 0%;
  border-radius: 5px;
  background: linear-gradient(134deg, #B200FF 14.85%, #FF00F5 86.52%);
  transition: 0.5s;
}
.headerMenu .menuList a.link:hover .stroke {
  width: 100%;
}

/* infinitySlide */
#infinitySlideChild {
  width: max-content;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  animation: infinitySlide 25s linear infinite;
}

.timerWrapper .timer {
  display: flex;
  align-items: center;
  gap: 5px;
}
.timerWrapper .timer .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timerWrapper .timer .item * {
  z-index: 2;
}
.timerWrapper .timer .item .shadow {
  z-index: 1;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 2px rgba(178, 0, 255, 0.1294117647) !important;
}
.timerWrapper .timer .item span {
  position: absolute;
  font-family: "Bebas";
  line-height: 100%;
  color: rgba(0, 0, 0, 0.8117647059);
}

@keyframes infinitySlide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1025px) {
  .headerMenu {
    display: none;
    background: none;
  }
  .mobileMenuList {
    display: block;
  }
  .mobileMenuList .menuList {
    flex-direction: column;
    padding: 0;
    gap: 22px;
    align-items: start;
  }
  .mobileMenuList .menuList a.link, .mobileMenuList .menuList a#directions-open-button {
    color: white;
  }
  .mobileMenuList .menuList .directionsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mobileMenuList .menuList .directionsList .list-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mobileMenuList .menuList .directionsList .list-item h5 {
    color: #6B6B6B;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 0 !important;
  }
  .mobileMenuList .menuList .directionsList .list-item h5 span {
    color: #FF00F5;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
  }
  .mobileMenuList .menuList .directionsList .list-item p {
    color: #EAE9E9;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 14px */
    width: 60%;
    white-space: normal;
  }
}
@media screen and (max-width: 600px) {
  .menuList {
    flex-direction: column;
    padding: 0;
    gap: 22px;
    align-items: start;
  }
  .menuList a.link, .menuList a#directions-open-button {
    color: white;
  }
  .menuList .directionsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .menuList .directionsList .list-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .menuList .directionsList .list-item h5 {
    color: #6B6B6B;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 0 !important;
  }
  .menuList .directionsList .list-item h5 span {
    color: #FF00F5;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
  }
  .menuList .directionsList .list-item p {
    width: 100% !important;
  }
}
@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}