* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home {
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(rgba(39, 39, 39, 0.9)), to(rgba(39, 39, 39, 0.4))), url("../img/Background Pic.jpg") center top;
  background: linear-gradient(to left, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.4)), url("../img/Background Pic.jpg") center top;
  background-size: cover;
  border: 10px #605d94 ridge;
  border-radius: 20px;
  line-height: 1;
}

.home__name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
}

.home__name--last {
  color: #88b1fc;
  font-weight: 700;
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger.open {
  -webkit-transform: rotate(720deg);
          transform: rotate(720deg);
  background: transparent;
}

.menu-btn__burger.open::before {
  -webkit-transform: rotate(45deg) translate(5px, 8px);
          transform: rotate(45deg) translate(5px, 8px);
}

.menu-btn__burger.open::after {
  width: 28px;
  -webkit-transform: rotate(-45deg) translate(3px, -7px);
          transform: rotate(-45deg) translate(3px, -7px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: .98;
  visibility: hidden;
}

.nav.open {
  visibility: visible;
}

.nav .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #272727;
  list-style-type: none;
  padding-right: 1rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav .menu-nav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav .menu-nav__item {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav .menu-nav__item.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav .menu-nav__item.active > a {
  color: #88b1fc;
}

.nav .menu-nav__link {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 2rem 0;
  font-weight: 300;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav .menu-nav__link:hover {
  color: #88b1fc;
}

.menu-nav__item:nth-child(1) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.menu-nav__item:nth-child(2) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.menu-nav__item:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.menu-nav__item:nth-child(4) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.about {
  padding-bottom: 2rem;
}

.about__bio-image {
  height: 50vh;
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(39, 39, 39, 0.9)), to(rgba(39, 39, 39, 0.3))), url("../img/Background Pic.jpg") center top;
  background: linear-gradient(to left, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/Background Pic.jpg") center top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: 10px #605d94 ridge;
  border-radius: 20px;
}

.about__bio-image p {
  margin-bottom: 2rem;
}

.about__bio {
  width: 80%;
  text-align: center;
  background: rgba(39, 39, 39, 0.5);
}

.about__bio .text-secondary {
  padding-bottom: 1rem;
}

.about .jobs {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.about .jobs__job {
  background: #414141;
  padding: 0.5rem;
  border-bottom: 5px solid #88b1fc;
}

.about .jobs__job h2, .about .jobs__job h3 {
  margin: 0.5rem 0;
}

.about .jobs__job h6 {
  margin: 0.3rem 0;
}

.about .social-icons {
  bottom: 0.4rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about footer {
  -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
          transform: rotate(90deg) translate(-3rem, -5rem);
}

.projects {
  padding-bottom: 2rem;
}

.projects__bio-image {
  height: 30vh;
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(39, 39, 39, 0.9)), to(rgba(39, 39, 39, 0.3))), url("../img/Background Pic.jpg") center top;
  background: linear-gradient(to left, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/Background Pic.jpg") center top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: 10px #605d94 ridge;
  border-radius: 20px;
}

.projects__bio-image .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.projects__items {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.projects__item {
  position: relative;
  border-bottom: 5px solid #88b1fc;
  overflow: hidden;
  cursor: pointer;
}

.projects__item img {
  width: 100%;
  max-height: 35vh;
}

.projects__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #88b1fc;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.projects__item:hover::after {
  top: 0;
  opacity: 0.9;
}

.projects__item:hover .projects__btn {
  opacity: 1;
}

.projects__btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.projects__btn {
  opacity: 0;
  color: #000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.projects__btn:hover {
  color: #fff;
}

.projects .social-icons {
  bottom: 0.4rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects footer {
  -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
          transform: rotate(90deg) translate(-3rem, -5rem);
}

.contact {
  height: 100%;
  padding-top: 30vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, right top, left top, from(rgba(39, 39, 39, 0.9)), to(rgba(39, 39, 39, 0.3))), url("../img/Background Pic.jpg") center top;
  background: linear-gradient(to left, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/Background Pic.jpg") center top;
  background-size: cover;
  border: 5px #605d94 ridge;
  border-radius: 20px;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.contact__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 2rem;
  font-size: 1.5rem;
  color: #88b1fc;
}

.contact__form {
  display: -ms-grid;
  display: grid;
  width: 70vw;
  height: 50vh;
  background: rgba(39, 39, 39, 0.7);
  -ms-grid-columns: 2fr;
      grid-template-columns: 2fr;
  grid-gap: .5rem;
  font-size: 1.5rem;
  color: #88b1fc;
  border: 3px inset #605d94;
  border-radius: 10px;
  padding: 2% 2% 2% 2%;
}

.contact__form input, .contact__form textarea {
  border: 3px groove blue;
  height: 3em;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(136, 177, 252, 0.9);
  max-width: 53em;
  padding-left: .5em;
}

.contact__form input:focus, .contact__form textarea:focus {
  border: 3px groove #097296;
}

.contact__form textarea {
  padding-top: .5em;
  min-height: 6em;
  max-height: 13em;
}

.contact__form .button-form {
  text-align: center;
}

.contact__form .button-form * {
  width: 100%;
}

.contact__form .button-form button {
  width: 15%;
}

.contact__form button {
  border: 3px outset blue;
  border-radius: 15px;
  width: 10em;
  height: 4em;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: rgba(136, 177, 252, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contact__form button:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: inset 0.5px 0.5px 3px 3px #7fb8dd;
          box-shadow: inset 0.5px 0.5px 3px 3px #7fb8dd;
  border: 3px inset blue;
}

.contact .social-icons {
  position: initial;
  margin-top: 2rem;
}

@media screen and (min-width: 880px) {
  .menu-btn {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
    position: relative;
    float: right;
    width: 60vw;
  }
  .nav .menu-nav {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 100%;
    background: rgba(39, 39, 39, 0.6);
    text-align: center;
  }
  .nav .menu-nav__item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav__link {
    font-size: 1.5rem;
  }
  .about__bio {
    font-size: 1rem;
  }
  .projects__bio-image {
    height: 40vh;
  }
  .projects__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
  .contact__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 880px) and (min-width: 350px) {
  .about__bio {
    font-size: .75rem !important;
    line-height: 1.4em;
  }
  .home__name--last {
    font-size: 3.9rem;
  }
  .modal-content {
    background-color: #1d1a1a;
    color: #88b1fc;
    opacity: .95;
    margin: 5% auto !important;
    padding: 0px;
    border: 1px solid #101d8d;
    border-radius: 10px;
    max-width: 100vw !important;
    width: 80vw !important;
    height: 85vh !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: .7em;
    line-height: 1.45em;
  }
  .modal-content a {
    color: #88b1fc;
  }
  .modal-content a:hover {
    color: white;
  }
  .modal-content .modalHead {
    height: 4em !important;
    border-bottom: 1px solid #1e2a91;
    /* The Close Button */
  }
  .modal-content .modalHead .close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
  }
  .modal-content .modalHead .close:hover,
  .modal-content .modalHead .close:focus {
    color: #588ff5;
    text-decoration: none;
    cursor: pointer;
  }
  .modal-content .modalBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 27em !important;
    border-bottom: 1px solid #1e2a91;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modal-content .modalFoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 1em !important;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5em !important;
    margin-bottom: .5em !important;
  }
  .contact {
    padding-top: 15vh;
    padding-left: 1rem;
  }
  .contact .modal-content h2 {
    font-size: 1.5rem !important;
  }
  .contact__form {
    height: 15em;
    grid-gap: 0rem;
  }
  .contact__form textarea {
    min-height: 10em;
    max-height: 10em;
  }
  .contact__form .button-form {
    text-align: center;
  }
  .contact__form .button-form * {
    width: 100%;
  }
  .contact__form .button-form button {
    width: 45%;
  }
  .contact footer {
    bottom: 30vh;
    -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
            transform: rotate(90deg) translate(-3rem, -5rem);
  }
  .error .error-message {
    margin: 0 auto;
    background-color: #1d1a1a77;
    width: 70vw;
    height: 7em !important;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 350px) {
  .about__bio {
    font-size: .01rem !important;
    line-height: 1.5em;
  }
  .social-icons {
    bottom: 0 !important;
  }
  .btn {
    color: #101163;
    cursor: pointer;
    font-size: .8em !important;
    font-weight: 400;
    line-height: 45px;
    margin: 0 auto;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
  }
  .modal-content {
    background-color: #1d1a1a;
    color: #88b1fc;
    opacity: .95;
    font-size: .7rem;
    margin: 2% auto !important;
    padding: 0px;
    border: 1px solid #101d8d;
    border-radius: 10px;
    max-width: 100vw !important;
    width: 80vw !important;
    height: 95vh !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.5em;
  }
  .modal-content a {
    color: #88b1fc;
  }
  .modal-content a:hover {
    color: white;
  }
  .modal-content .modalHead {
    height: 4em !important;
    border-bottom: 1px solid #1e2a91;
    /* The Close Button */
  }
  .modal-content .modalHead .close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
  }
  .modal-content .modalHead .close:hover,
  .modal-content .modalHead .close:focus {
    color: #588ff5;
    text-decoration: none;
    cursor: pointer;
  }
  .modal-content .modalBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 30em !important;
    padding-top: 13em;
    padding-bottom: 13em;
    border-bottom: 1px solid #1e2a91;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modal-content .modalFoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 5em !important;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1em;
  }
  .home {
    padding-top: 30vh;
  }
  .home__name {
    font-size: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fff;
  }
  .home__name--last {
    color: #88b1fc;
    font-weight: 700;
  }
  .home .social-icons {
    position: absolute;
    top: 55vh;
    height: 2.8em;
    margin: 4em 3em;
  }
  .home footer {
    right: 22%;
  }
  .contact {
    padding-top: 15vh;
    padding-left: 1rem;
  }
  .contact .modal-content h2 {
    font-size: 1.5rem !important;
  }
  .contact__form {
    height: 13em;
    grid-gap: 0rem;
  }
  .contact__form textarea {
    min-height: 10em;
    max-height: 10em;
  }
  .contact__form .button-form {
    text-align: center;
  }
  .contact__form .button-form * {
    width: 100%;
  }
  .contact__form .button-form button {
    width: 50%;
  }
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .contact footer {
    bottom: 30vh;
    -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
            transform: rotate(90deg) translate(-3rem, -5rem);
  }
  .error .error-message {
    margin: 50px auto;
    background-color: #1d1a1a77;
    width: 70vw;
    height: 12em !important;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
    border-radius: 10px;
  }
  .error .social-icons {
    position: absolute;
    top: 10vh;
    height: 2.8em;
    margin: 4em 3em;
    border-bottom: 0.5px solid #88b1fc;
  }
}

@media screen and (min-width: 1024px) {
  .projects__items {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .contact__list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .contact__list div {
    height: 3rem;
    background: rgba(39, 39, 39, 0.5);
  }
  .nav {
    width: 52.5vw;
  }
  .nav .menu-nav {
    text-align: center;
  }
}

@media screen and (min-width: 1600px) {
  .about__bio {
    font-size: 1.35rem;
  }
  .projects__bio-image {
    height: 50vh;
  }
  .contact_list div {
    height: 3rem;
    background: rgba(39, 39, 39, 0.5);
  }
  .nav {
    width: 35vw;
  }
}

.error {
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: radial-gradient(#88b1fc 1%, #272727 99%);
  background-size: cover;
}

.error .error-message {
  margin: 0 auto;
  background-color: #1d1a1a77;
  width: 70vw;
  height: 50px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 25px;
  border-radius: 10px;
}

.error .error-message h5 {
  opacity: 1;
  color: white;
}

body {
  background: #272727;
  color: #fff;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8em;
}

h1, h2, h3 {
  font-weight: 400;
}

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

.text-secondary {
  color: #88b1fc;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100%;
  width: 100%;
}

main .social-icons {
  position: fixed;
  bottom: 1rem;
}

main .social-icons a {
  padding: 0.4rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

main .social-icons a:hover {
  color: #88b1fc;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #1d1a1a;
  color: #88b1fc;
  opacity: .95;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #101d8d;
  border-radius: 10px;
  width: 50%;
  height: auto;
  display: block;
}

.modal-content a {
  color: #88b1fc;
}

.modal-content a:hover {
  color: white;
}

.modal-content .modalHead {
  height: 3em;
  border-bottom: 1px solid #1e2a91;
  /* The Close Button */
}

.modal-content .modalHead .close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
}

.modal-content .modalHead .close:hover,
.modal-content .modalHead .close:focus {
  color: #588ff5;
  text-decoration: none;
  cursor: pointer;
}

.modal-content .modalBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 20em;
  border-bottom: 1px solid #1e2a91;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-content .modalFoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 3em;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}

.btn {
  color: #101163;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 auto;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

@media (min-width: 600px) {
  .btn {
    margin: 0 auto;
  }
}

.btn:hover {
  text-decoration: none;
}

.btn-5 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  border: 1px solid;
  -webkit-box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
          box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
}

.btn-5:hover {
  border: 1px solid;
  -webkit-box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  right: 1rem;
  text-align: right;
  padding: 1rem;
  color: #fff;
}
/*# sourceMappingURL=main.css.map */