a {
  text-decoration: none;
  color: #000000;
}

body {
  padding: 0;
  font-family: "Work Sans", serif;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px max(10vw, 50px);
  overflow-x: hidden;
}
@media (max-width: 1400px) {
  body {
    margin: 30px max(5vw, 10px);
  }
}
@media (max-width: 700px) {
  body {
    font-size: 0.9rem;
  }
}

h1,
h2 {
  color: inherit;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

* {
  font-family: "Montserrat", sans-serif;
}

#logo {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
  color: #2c365e;
  font-family: Fredoka;
  font-weight: 600;
  font-size: 150%;
  padding-right: 1%;
}

.signup {
  border-radius: 15px;
  padding-top: 1vh;
  padding-bottom: 1vh;
  padding-left: 2vh;
  padding-right: 2vh;
  text-align: center;
  padding: 10px 15px;
  background-color: #a66cff;
  color: #f3f3f3;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  border: solid 2px #a66cff;
  transition: all 0.5s ease-out;
  border-radius: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: #f3f3f3;
}
.signup {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
.signup:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #a66cff;
}
@media (max-width: 700px) {
  .signup {
    padding: 10px 15px;
    background-color: #a66cff;
    color: #f3f3f3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    border: solid 2px #a66cff;
    transition: all 0.5s ease-out;
    border-radius: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  .signup:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #a66cff;
  }
}

.banner {
  border-radius: 15px;
  position: static;
  width: 92.5%;
  top: 1vmin;
  margin: 0 auto;
  padding: 3vw;
  color: #fff;
  background-color: #2c365e;
  background-position: 90%;
  font-size: 200%;
  background-image: url("../img/border img.png");
  background-repeat: no-repeat;
  background-size: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.banner h1 {
  text-align: left;
}
@media (max-width: 700px) {
  .banner h1 {
    font-size: max(7.1vw, 30px);
    margin-left: 10px;
  }
}
.banner button {
  padding: 15px 35px;
  background-color: #a66cff;
  color: #f3f3f3;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  border: solid 2px #a66cff;
  transition: all 0.5s ease-out;
  border-radius: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.banner button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #a66cff;
}
@media (max-width: 700px) {
  .banner button {
    padding: 10px 20px;
    background-color: #a66cff;
    color: #f3f3f3;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    border: solid 2px #a66cff;
    transition: all 0.5s ease-out;
    border-radius: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
    margin-left: 10px;
  }
  .banner button:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #a66cff;
  }
}
@media (max-width: 1000px) {
  .banner {
    width: 92.5%;
  }
}
@media (max-width: 700px) {
  .banner {
    background-image: none;
    width: 96%;
    padding: max(1vw, 24px) max(1vw, 6px);
  }
}

.classes {
  border-radius: 15px;
  padding-top: 1vh;
  padding-bottom: 1vh;
  padding-left: 2vh;
  padding-right: 2vh;
  text-align: center;
  color: #424242;
  background-color: #e9e9e9;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.classes {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
@media (max-width: 1000px) {
  .classes {
    font-size: 0.9rem;
  }
}
@media (max-width: 700px) {
  .classes {
    font-size: 0.8rem;
  }
}
.classes.active {
  background-color: #a66cff;
  color: #f3f3f3;
}
.classes:hover {
  background-color: #a66cff;
  color: #f3f3f3;
}

.matter {
  border-radius: 15px;
  flex: 1 1 0;
  font-size: 200%;
  min-width: 300px;
  height: 38vh;
  padding: 1vmin;
  color: #000000;
  background-color: #e9e9e9;
}
.matter {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
.matter:hover {
  background-color: #2c365e;
  color: #fff;
}

.article {
  flex: 1 1 auto;
  top: 1vmin;
  margin: 0 auto;
  padding: 3vmax;
  font-size: 130%;
}
.article h1 {
  text-align: left;
}

.info {
  border-radius: 15px;
  flex: 1 1 auto;
  margin: 0 auto;
  padding-left: 3vw;
  padding-right: 3vw;
  padding-top: 3vw;
  padding-bottom: 3vw;
  background-color: #e9e9e9;
  color: #424242;
  text-align: justify;
}
.info p {
  font-size: 150%;
}
.info p.larger {
  font-size: 200%;
}

.infoaccent {
  background-color: #a66cff;
  color: #fff;
  min-width: 10vw;
}

.number {
  font-size: 200%;
  padding: 1vmin;
  margin: 0 auto;
}
.number h1 {
  text-align: center;
}

.showans {
  border-radius: 15px;
  padding-top: 1vh;
  padding-bottom: 1vh;
  padding-left: 2vh;
  padding-right: 2vh;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background-color: #a66cff;
  border-color: #a66cff;
  border-width: 3px;
  border-style: solid;
  font-size: larger;
}
.showans {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
.showans:hover {
  background-color: #fff;
  color: #000000;
}
.showans:hover {
  font-size: 180%;
}

.purple {
  color: #a66cff;
}

.darkpurple {
  color: #2c365e;
}

.large {
  font-size: 150% !important;
}

.larger {
  font-size: 300% !important;
}

.nopadding {
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.flexing {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2vmin;
  flex-direction: row;
}

.flexingv {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2vmin;
  flex-direction: column;
}

.flexwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.f_around {
  justify-content: space-around !important;
}

.f_adapt {
  flex: 1 1 0 !important;
}

.f_auto {
  flex-basis: auto;
}

.f_shrink {
  flex-shrink: 2 !important;
}

.f_center {
  align-items: center;
  align-self: center;
}

nav ul li a, nav ul li a:after, nav ul li a:before {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}

header {
  padding: 15px 30px;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 15px;
}
header a {
  cursor: pointer;
}
@media (max-width: 1000px) {
  header {
    justify-content: space-between;
  }
}
header .burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
header .burger .line {
  border-radius: 20px;
  background-color: #2c365e;
}
header .burger .line:nth-child(1) {
  width: 40px;
  height: 6px;
}
header .burger .line:nth-child(2) {
  width: 50px;
  height: 6px;
}
header .burger .line:nth-child(3) {
  width: 40px;
  height: 6px;
}
@media (max-width: 1000px) {
  header .burger {
    display: flex;
  }
}

nav.stroke {
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 1000px) {
  nav.stroke {
    position: absolute;
    background-color: #e9e9e9;
    padding: 20px 0;
    flex-direction: row;
    width: 94.3%;
    border: 20px;
    margin-left: -27px;
    justify-content: space-around;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease-out;
    transform: translateY(80px);
  }
  nav.stroke.active {
    transform: translateY(100px);
    opacity: 1;
    z-index: 20;
  }
}
@media (max-width: 700px) {
  nav.stroke {
    padding: max(6vw, 5px) 0;
    flex-direction: column;
    width: 90%;
    opacity: 0;
    margin-left: -30px;
    z-index: -1;
    transition: all 0.5s ease-out;
    transform: translateY(180px);
  }
  nav.stroke.active {
    z-index: 20;
    transform: translateY(max(32vw, 190px));
    opacity: 1;
  }
}
nav.stroke ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
@media (max-width: 1000px) {
  nav.stroke ul {
    flex-direction: row;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  nav.stroke ul {
    flex-direction: column;
  }
}
nav.stroke ul li {
  display: flex;
}
nav.stroke ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #424242;
  font-weight: 400;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
nav.stroke ul li a:hover {
  color: #a66cff;
}
nav.stroke ul li a:after {
  position: absolute;
  top: 120%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  border-radius: 900px;
  color: transparent;
  background: #424242;
  height: 20%;
}
nav.stroke ul li a:after {
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
nav.stroke ul li a.selectednav:after {
  width: 30%;
  height: 20%;
}
nav.stroke ul li a:hover:after {
  width: 100%;
  background-color: #a66cff;
}

.disciplines-block {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .disciplines-block {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 700px) {
  .disciplines-block {
    grid-template-columns: auto auto;
    gap: max(2.85vw, 10px);
  }
}
.disciplines-block a {
  width: max(15vw, 200px);
  padding: max(3vw, 40px) max(2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 20px;
  background-color: #e9e9e9;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease-out;
  pointer-events: all;
  cursor: inherit;
}
.disciplines-block a.active {
  pointer-events: all;
  cursor: pointer;
}
.disciplines-block a.active svg {
  opacity: 0.9;
}
.disciplines-block a.active svg .circle {
  fill: #2c365e;
}
.disciplines-block a.active:hover {
  background-color: #2c365e;
}
.disciplines-block a.active:hover p {
  color: #a66cff;
}
.disciplines-block a.active:hover .circle {
  fill: #a66cff;
}
@media (max-width: 1400px) {
  .disciplines-block a {
    width: max(17vw, 170px);
  }
}
@media (max-width: 1000px) {
  .disciplines-block a {
    width: max(34vw, 230px);
    padding: max(5vw, 30px) max(4vw, 10px);
  }
}
@media (max-width: 700px) {
  .disciplines-block a {
    width: max(34vw, 110px);
  }
}
.disciplines-block a p {
  margin: 0;
  font-weight: 700;
  font-size: 2.6vw;
  line-height: 100%;
  color: #242424;
  transition: all 0.5s ease-out;
}
@media (max-width: 1000px) {
  .disciplines-block a p {
    font-size: max(3vw, 36px);
  }
}
@media (max-width: 700px) {
  .disciplines-block a p {
    font-size: max(5vw, 20px);
  }
}
.disciplines-block a svg {
  width: 100%;
}
.disciplines-block a svg .circle {
  fill: #CECDCD;
  transition: all 0.5s ease-out;
}

.alert-block {
  position: fixed;
  width: 110vw;
  height: 110vh;
  background-color: rgba(0, 0, 0, 0.4078431373);
  display: none;
  margin: -30px -10vw;
  display: flex;
  justify-content: space-around;
  padding: 10vw;
  align-items: flex-end;
  align-content: flex-end;
}
.alert-block .alert-modal {
  display: block;
  padding: 30px 30px;
  background-color: #e9e9e9;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #a66cff;
  border-radius: 20px;
  border: solid 2px #a66cff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.5s ease-out;
}
.alert-block.active {
  display: block;
}/*# sourceMappingURL=home.css.map */