
body {
  font-family: "Mona Sans", sans-serif;
  margin: 0;
  padding: 0;
}


.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100%;
}
.main-wrapper .left,
.main-wrapper .right {
  width: 50%;
  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;
}
.main-wrapper .left a,
.main-wrapper .right a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 9;
  overflow: hidden;
  text-decoration: none;
}
.main-wrapper .left a:before,
.main-wrapper .right a:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.2;
}
.main-wrapper .left a:after,
.main-wrapper .right a:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 123, 123)), to(rgb(175, 5, 5)));
  background: linear-gradient(to bottom, rgb(255, 123, 123) 0%, rgb(175, 5, 5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0.7;
  z-index: -9;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
}
.main-wrapper .left a figure,
.main-wrapper .right a figure {
  margin: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -9;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.main-wrapper .left a .logo,
.main-wrapper .right a .logo {
  position: relative;
}
.main-wrapper .left a h2,
.main-wrapper .right a h2 {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--theme-font);
  margin-top: 20px;
  letter-spacing: 5px;
  position: relative;
text-decoration: none;
font-family: "Mona Sans", sans-serif;
}
.main-wrapper .left a:hover:after,
.main-wrapper .right a:hover:after {
  opacity: 0.7;
  top: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.main-wrapper .left a:hover figure,
.main-wrapper .right a:hover figure {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s;
  transition: all 1s;
}
