body,
html {
  margin: 0;
  font: 18px/30px "Roboto", sans-serif;
  min-height: 100%;
  /*background: rgba(0, 0, 0, 0.6);*/
}

body {
  background: linear-gradient(
    90deg,
    #5722a7 0.21%,
    #4c2aa6 41.81%,
    #1f47a1 69.69%,
    #0f529f 100%
  );
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  transition: 0.2s;
}
svg {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.d-flex {
  display: flex !important;
}

.toggle {
  cursor: pointer;
  display: none;
  width: 36px;
  height: 20px;
  background: url(../img/burger.svg) no-repeat 0 0;
  background-size: contain;
}
@media (max-width: 767px) {
  .toggle {
    display: block;
  }
}
.toggle-nav.show {
  left: 0;
}
.toggle-nav {
  position: fixed;
  left: -260px;
  top: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  padding: 100px 20px 0;
  z-index: 200;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: none;
}
@media (max-width: 767px) {
  .toggle-nav {
    display: block;
  }
}

.toggle-close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: url(../img/close-s.svg) no-repeat 50% 50%;
}

body.toggle-on:before {
  position: fixed;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(60, 60, 60, 0.53);
  z-index: 20;
  display: none;
}

@media (max-width: 767px) {
  body.toggle-on:before {
    display: block;
  }
}

.toggle-menu {
  list-style-type: none;
  padding: 0;
}
@media (max-width: 767px) {
  .toggle-menu {
    margin-bottom: 50px;
  }
}

.page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 100px);
  position: relative;
}

@media (max-width: 767px) {
  .page {
    min-height: calc(100vh - 190px);
  }
}

.header {
  width: 100%;
  position: absolute;
  height: 100px;
  z-index: 100;
  background: linear-gradient(
    109.02deg,
    #812d84 3.59%,
    #742f84 11.11%,
    #5b3487 23.32%,
    #313d8d 56.2%,
    #2e4191 63.72%,
    #27509d 72.17%,
    #1b68b2 81.57%,
    #0b89cf 91.9%,
    #00a0e3 97.54%
  );
}

.header__inner {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  height: 100px;
}
@media (max-width: 1023px) {
  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #130c0e;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .header__title {
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__title {
    padding-left: 15px;
    font-size: 10px;
    padding-right: 15px;
  }
}

.header__title__row {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header__title__row {
    white-space: inherit;
  }
}

.logo {
  max-width: 60%;
}

.logo img,
.logo svg {
  display: block;
  max-width: 100%;
}

.header-menu {
  display: flex;
}
@media (max-width: 767px) {
  .header-menu {
    display: none;
  }
}
.header-menu__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6d6668;
  margin-left: 40px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding: 5px 0;
  text-decoration: none;
}
@media (max-width: 767px) {
  .header-menu__link {
    display: inline-block;
    color: #09386a;
  }
}

.header-menu__link:first-child {
  margin-left: 0;
}
.header-menu__link.active {
  color: #e60060;
  border-bottom: 1px solid #e60060;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
    width: auto;
  }
}

.header-nav__btns {
  display: flex;
  align-items: center;
}
.header-nav__btns .user {
  color: #fff;
  font-size: 12px;
}

.header-nav__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  float: left;
  text-align: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0 15px;
  margin-left: 20px;
  height: 26px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 767px) {
  .header-nav__btn {
    color: #09386a;
    margin-left: 0;
    margin-right: 20px;
  }
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.main-menu a {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding: 21px 0 19px;
  cursor: pointer;
}
.main-menu a.active {
  color: #3c92ed;
}

.header-middle {
  height: 70px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-middle {
    display: none;
  }
}

.header-middle:before {
  position: absolute;
  content: "";
  height: 1px;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  /*    background: rgba(167, 167, 167, 0.3);*/
}

.header-middle:after {
  position: absolute;
  content: "";
  height: 180px;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  /*    background: -moz-linear-gradient(top, #09386a 0%, rgba(9, 56, 106, 0) 100%);
    background: -webkit-linear-gradient(top, #09386a 0%, rgba(9, 56, 106, 0) 100%);
    background: linear-gradient(to bottom, #09386a 0%, rgba(9, 56, 106, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#09386a", endColorstr="#0009386a",GradientType=0 );*/
}

.header-middle .centerWrap {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .header-middle .centerWrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .header-middle .centerWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page__main {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  position: relative;
  padding-top: 170px;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .page__main {
    padding-top: 100px;
  }
}

.page__main__inner {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  z-index: 100;
  position: relative;
}
@media (max-width: 1023px) {
  .page__main__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .page__main__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mainEC {
  margin-top: 30px !important;
}
@media (max-width: 1023px) {
  .mainEC {
    padding: 20px !important;
  }
}
@media (max-width: 767px) {
  .mainEC {
    padding: 15px !important;
  }
}

#exit {
  cursor: pointer;
}

.disable {
  display: none !important;
}

.MuiCircularProgress-root {
  color: #09386a !important;
}
.CircularContainer svg circle {
  stroke: #09386a;
}

.btn2025 {
  background-color: #00a0e3 !important;
  font-weight: 400 !important;
  border-radius: 5px !important;
  width: 360px !important;
  height: 63px !important;
}
@media (max-width: 555px) {
  .btn2025 {
    width: 250px !important;
  }
}

#delegation {
  display: none;
}