.GlobalPadding {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.PaddingProjects {
  width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

.HorizontalLine {
  height: 2px;
  background-color: var(--white);
}

.Button {
  display: inline-block;
  text-decoration: none;
  font-size: 25px;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
}

.Button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 2px;
  border-bottom: 2px dashed var(--white);
}

.Button.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--white);
  transition: width 0.2s ease;
}

.Button.active:hover::before {
  width: 110%;
}

.Button:not(.active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--white);
  transition: width 0.2s ease;
}

.Button:not(.active):hover::after {
  width: 110%;
}

.ButtonSeparator {
  position: relative;
  font-size: 30px;
  margin-left: 20px;
  margin-right: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Navbar {
  display: table;
}

.NavbarInfo {
  display: table-cell;
  position: relative;
  background-color: transparent;
  vertical-align: middle;
  padding-top: 30px;
}

.NavbarName {
  font-weight: 600;
  font-size: 36px;
  background-color: transparent;
}

.NavbarSpecialization {
  margin-top: 5px;
  font-size: 22px;
  background-color: transparent;
}

.NavbarGradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 21, 1) 44%,
    rgba(8, 12, 21, 1) 100%
  );
}

.NavbarButton {
  text-align: right;
  vertical-align: middle;
  padding-top: 60px;
}

.Footer {
  height: 200px;
  margin-top: 150px;
  text-align: center;
  background-color: transparent;
  background: linear-gradient(
  0deg,
  rgba(10, 8, 21, 1) 44%,
  rgba(8, 12, 21, 1) 100%
  );
}

.FooterButton {
  font-size: 23px;
  margin-top: 25px;
}

.FooterButton::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 2px;
  border-bottom: 2px dashed var(--white);
}

.CategoryTitle {
  font-size: 40px;
  color: var(--magenta);
  text-shadow:
  -1px -1px 0 #fff,
  1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px 1px 0 #fff;
  margin-top: 150px;
}

.CategoryProjectsTitle {
  font-size: 56px;
  color: var(--magenta);
  text-shadow:
  -1px -1px 0 #fff,
  1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px 1px 0 #fff;
  margin-left: 6%;
  margin-bottom: 15px;
}

.AboutInfo {
  font-weight: 600;
  font-size: 25px;
}

.AboutTitle {
  margin-top: 10px;
  font-size: 25px;
}

.AboutDetail {
  font-weight: 200;
  font-size: 23px;
}

.ListIndent {
  margin-left: 25px;
  margin-top: 20px;
}

.FontBold {
  font-weight: 600;
}

.AboutElement {
  margin-bottom: 40px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.TopOffset150 {
  margin-top: 150px;
}

.TopOffset100 {
  margin-top: 100px;
}

.TopOffset50 {
  margin-top: 50px;
}

.Projects {
  text-align: center;
  margin-top: 50px;
}

.ProjectButton {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  margin: 0 35px;
}

.ProjectListName {
  position: relative;
  display: inline-block;
  font-size: 30px;
  margin-bottom: 20px;
  background-color: transparent;
}

.ProjectListName::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.ProjectButton:hover .ProjectListName::after {
  width: 110%;
}

.ProjectMiniatureContainer {
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.ProjectMiniature {
  width: 100%;
  height: 100%;
}

.ProjectButton:nth-child(1) .ProjectMiniatureContainer {
  width: 250px;
  height: 377px;
}

.ProjectButton:nth-child(2) .ProjectMiniatureContainer {
  width: 270px;
  height: 407px;
}

.ProjectButton:nth-child(3) .ProjectMiniatureContainer {
  width: 250px;
  height: 377px;
}

.ProjectButton:hover .ProjectMiniatureContainer {
  transform: scale(1.075);
}

.ProjectBanner {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}

.ProjectBannerImage {
  display: block;
  width: 1050px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.BannerGradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1050px;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(8, 12, 21, 1) 0%,
    rgba(8, 12, 21, 0) 30%,
    rgba(8, 12, 21, 0) 70%,
    rgba(8, 12, 21, 1) 100%
    );
    z-index: 1;
}

.ProjectName {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-475px);
  font-size: 64px;
  font-weight: 600;
  color: var(--magenta);
  background-color: transparent;
  text-shadow:
  -1px -1px 0 #fff,
  1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px 1px 0 #fff;
  mix-blend-mode: screen;
  z-index: 2;
}

.ProjectCenterImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 70px;
  width: 575px;
  height: auto;
}

.ImagesContainer {
  width: 950px;
  margin-top: 40px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ProjectLeftImage, .RandomMazeLeft, .BubblesLeftImage {
  display: inline-block;
  margin-right: 20px;
}

.ProjectRightImage, .RandomMazeRight, .BubblesRightImage {
  display: inline-block;
}

.ProjectLeftImage, .ProjectRightImage {
  width: 455px;
  height: auto;
}

.RandomMazeLeft, .RandomMazeRight {
  width: 325px;
  height: auto;
}

.BubblesLeftImage {
  width: auto;
  height: 322px;
}

.BubblesRightImage {
  width: auto;
  height: 322px;
}

.Link {
  color: var(--magenta);
}