* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
ul {
  list-style-type: none;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol,
div {
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  font-family: var(--font-head);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 12px;
}
main {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  main {
    padding-block: 60px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 84px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#4169e1),
    color-stop(55%, #274bc4),
    to(#10216f)
  );
  background: linear-gradient(
    90deg,
    #4169e1 0%,
    #274bc4 55%,
    #10216f 100%
  );
  border-bottom: 4px solid #ffd700;
  -webkit-box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
  box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .header {
    min-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    min-height: 70px;
  }
}
.header__logo {
  height: 80px;
  max-width: 320px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 980px) {
  .header__logo {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 70px;
  }
}
.header__logo:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.header__wrap {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .header__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__wrap {
    gap: 20px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-left: auto;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__nav {
    left: 0;
    top: 92px;
    width: 100%;
    overflow: auto;
    padding-inline: 4%;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100vh - 70px);
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#4169e1),
      color-stop(55%, #274bc4),
      to(#10216f)
    );
    background: linear-gradient(
      90deg,
      #4169e1 0%,
      #274bc4 55%,
      #10216f 100%
    );
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    top: 72px;
  }
}
@media screen and (max-width: 980px) {
  .header__nav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.header__dropdown {
  position: relative;
}
@media screen and (max-width: 980px) {
  .header__dropdown {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:first-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:last-child {
    margin-bottom: 30px;
  }
}
.header__dropdown:hover .header__dropdown-text {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text {
    color: #fff;
    background: transparent;
  }
}
.header__dropdown:hover .header__dropdown-text .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text .arrow {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-menu {
    -webkit-transform: unset;
    transform: unset;
  }
}
.header__dropdown-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 9px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1050px) {
  .header__dropdown-text {
    font-size: 15px;
    padding-inline: 14px;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown-text {
    padding-inline: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header__dropdown-text .arrow {
  font-size: 9px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition:
    transform 0.25s ease,
    -webkit-transform 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-text.active .arrow {
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 266px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f247c 0%, #173bb8 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-menu {
    left: unset;
    top: unset;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: unset;
    transform: unset;
    visibility: visible;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
  }
}
.header__dropdown-menu--blogs {
  min-width: 266px;
}
.header__dm-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 980px) {
  .header__dm-link {
    border-radius: 0;
    padding-left: 20px;
    margin-left: 10px;
    border-left: 2px solid #fff;
  }
}
.header__dm-link .menu-icon {
  width: 18px;
  color: #ffd700;
}
.header__dm-link:hover {
  padding-left: 15px;
  background-color: #4169e1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__dm-link:hover {
    padding-left: 25px;
  }
}
.header__dm-link:hover > .header__dropdown-submenu {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 980px) {
  .header__dm-link--category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 980px) {
  .header__dm-link--category:hover {
    background-color: transparent;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .header__buttons {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__buttons {
    gap: 8px;
  }
}
.header__button {
  border: none;
  border-radius: 25px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__button {
    font-size: 12px;
    padding: 10px 20px;
  }
}
.header__button--signup {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.header__button--signup:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
}
.header__button--register {
  border: 2px solid transparent;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#5cb800),
    to(#56ae00)
  );
  background: linear-gradient(90deg, #5cb800 0%, #56ae00 100%);
  color: #fff;
}
.header__button--register:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
  box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
}
.header__menubar {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__menubar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 25px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar {
    width: 30px;
  }
}
.header__menubar::before,
.header__menubar::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.header__menubar::before {
  margin-top: -18px;
}
.header__menubar::after {
  margin-top: 18px;
}
@media screen and (max-width: 980px) {
  .header__menubar.active::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active::after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active .header__menubar-line {
    background-color: transparent;
  }
}
@media screen and (max-width: 980px) {
  .header__menubar-line {
    width: 100%;
    height: 4px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
  }
}
.header__dropdown-submenu {
  position: absolute;
  top: -9px;
  left: 260px;
  min-width: 230px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f247c 0%, #173bb8 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-submenu {
    left: unset;
    top: unset;
    opacity: 1;
    padding: 0;
    visibility: visible;
    position: relative;
    background: transparent;
    border: none;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown-submenu .header__dm-link {
    border-left: none;
    margin-left: 0;
    padding-left: 25px;
  }
}
@media screen and (max-width: 980px) {
  .header__dm-sublinks {
    width: 100%;
  }
}
.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.max-width {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .max-width {
    max-width: 100%;
  }
}
.footer {
  color: #fff;
  padding-block: 30px;
  font-family: "Poppins", sans-serif;
  background-color: #11236b;
}
.footer__wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -75px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    gap: 10px;
    margin-left: 0;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__card {
  padding: 30px;
  border-radius: 20px;
  background-color: #25387c;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer__image {
  height: 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer__image--mr {
  margin-right: 10px;
}
.footer__image:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.footer__logo {
  width: 160px;
  margin-block: -20px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 130px;
  }
}
.footer__head-text {
  text-align: center;
  font-size: 1.4rem;
}
.footer__socials {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  border-radius: 50%;
  position: relative;
}
.footer__social-link:nth-child(1) {
  background: #1877f2;
}
.footer__social-link:nth-child(2) {
  background: #4267b2;
}
.footer__social-link:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}
.footer__social-link:nth-child(4) {
  background: #000;
}
.footer__social-link:nth-child(5) {
  background: #08c;
}
.footer__social-link::before {
  content: "";
  width: 45px;
  height: 45px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #3b4f97;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}
.footer__social-link:hover::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.footer__cards {
  gap: 20px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1290px) {
  .footer__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .footer__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__label {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__links {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__links--col {
  gap: 10px 2%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.footer__links--col .footer__link {
  width: 49%;
}
.footer__link {
  font-size: 1.4rem;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.footer__link:hover {
  color: #edc800;
}
.footer .link {
  font-weight: 700;
  color: #edc800;
}

.scroll {
  bottom: 30px;
  width: 70px;
  height: 70px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  position: sticky;
  margin-block: -70px 20px;
  margin-inline: auto 40px;
}
@media screen and (max-width: 767px) {
  .scroll {
    width: 40px;
    height: 40px;
    margin-inline: auto 4%;
  }
}
.scroll__wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .scroll__wrap {
    font-size: 20px;
  }
}
.scroll__wrap:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
}
.scroll.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.top__modal {
  inset: 0;
  z-index: 1000;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  padding-block: 100px 20px;
}
.top__modal.active {
  display: flex;
}
.top__modal-backdrop {
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.contact__table tr,
.responsible__table tr,
.top__modal-wrap {
  background: linear-gradient(90deg, #4169e1 0, #274bc4 55%, #10216f 100%);
}
.top__modal-wrap {
  z-index: 1;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-direction: column;
  aspect-ratio: 366 / 565;
  width: min(90vw, 404px, calc((100dvh - 120px) * (366 / 565)));
  max-height: 100%;
  border-radius: 30px;
  border: 2px solid gold;
  transition: 0.25s;
}
.top__modal-wrap:hover .top__modal-button-hov {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.top__modal-close {
  top: -10px;
  right: 20px;
  z-index: 20;
  margin-top: 30px;
  position: absolute;
}
.top__modal-close button {
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}
.top__modal-close button:hover {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
}
.top__modal-button-hov {
  top: 46.5%;
  left: 50%;
  width: 100%;
  max-width: 310px;
  opacity: 0;
  position: absolute;
  padding-inline: 20px;
  transition: 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
.top__modal-button {
  width: 100%;
  height: 100%;
}