.blackBG {
  background-color: #303735;
}

.whiteBG {
  background-color: #fff;
}

.gray1BG {
  background-color: #F0F3F4;
}

.gray2BG {
  background-color: #F2F9F7;
}

.gray3BG {
  background-color: #eeeeee;
}

.gray4BG {
  background-color: #B2B2B2;
}

.gray5BG {
  background-color: #5A5A5A;
}

.greenBG {
  background-color: #32D57C;
}

.neonGreenBG {
  background-color: #51FF83;
}

.paleGreenBG {
  background-color: #98EABD;
}

.purpleBG {
  background-color: #9756FF;
}

.neonPurpleBG {
  background-color: #7C31F4;
}

.palePurpleBG {
  background-color: #8C5FF4;
}

.vibrantGreenBG {
  background-color: #31D57C;
}

.vibrantPurpleBG {
  background-color: #7C31F4;
}

.vibrantBlueBG {
  background-color: #02B8EB;
}

.vibrantRedBG {
  background-color: #F53F3A;
}

.vibrantOrangeBG {
  background-color: #FFA147;
}

.button {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
}
.button:hover, .button:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button:hover {
  text-decoration: none !important;
}

.button-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-small:hover, .button-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-small:hover {
  text-decoration: none !important;
}

.button-stroked {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
}
.button-stroked:hover, .button-stroked:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked:hover {
  text-decoration: none !important;
}

.button-stroked-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-stroked-small:hover, .button-stroked-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-small:hover {
  text-decoration: none !important;
}

.button-text {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
}
.button-text:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text:after {
    top: 2rem;
  }
}
.button-text:hover, .button-text:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text:hover:before, .button-text:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text:hover:after, .button-text:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text {
    font-size: 13rem;
  }
}
.button-text:hover {
  text-decoration: none !important;
}

.button-text-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
}
.button-text-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-small:after {
    top: 2rem;
  }
}
.button-text-small:hover, .button-text-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-small:hover:before, .button-text-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-small:hover:after, .button-text-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-small {
    font-size: 13rem;
  }
}
.button-text-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-text-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-text-small:hover, .button-text-small:focus {
  text-decoration: none !important;
}
.button-text-small:hover:before, .button-text-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-text-small:hover:after, .button-text-small:focus:after {
  right: -25rem;
}
.button-text-small:hover {
  text-decoration: none !important;
}

.button-text-pale {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  color: #C9A7FF;
}
.button-text-pale:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-pale:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-pale:after {
    top: 2rem;
  }
}
.button-text-pale:hover, .button-text-pale:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-pale:hover:before, .button-text-pale:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-pale:hover:after, .button-text-pale:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-pale {
    font-size: 13rem;
  }
}
.button-text-pale:hover, .button-text-pale:focus {
  text-decoration: none !important;
  color: #C9A7FF !important;
}
.button-text-pale:before {
  background: #C9A7FF !important;
}
.button-text-pale:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/palePurpleArrow_sym.svg") !important;
}
.button-text-pale:hover {
  text-decoration: none !important;
}

.button-text-pale-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
  color: #C9A7FF;
}
.button-text-pale-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-pale-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-pale-small:after {
    top: 2rem;
  }
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-pale-small:hover:before, .button-text-pale-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-pale-small:hover:after, .button-text-pale-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-pale-small {
    font-size: 13rem;
  }
}
.button-text-pale-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-text-pale-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  text-decoration: none !important;
}
.button-text-pale-small:hover:before, .button-text-pale-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-text-pale-small:hover:after, .button-text-pale-small:focus:after {
  right: -25rem;
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  text-decoration: none !important;
  color: #C9A7FF !important;
}
.button-text-pale-small:before {
  background: #C9A7FF !important;
}
.button-text-pale-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/palePurpleSmallArrow_sym.svg") !important;
}
.button-text-pale-small:hover {
  text-decoration: none !important;
}

.button-white {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  margin: 20rem 0;
  padding: 15rem 60rem 13rem 45rem;
  background-color: #fff;
  border-radius: 50rem;
  letter-spacing: 0.8rem;
}
.button-white:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-white:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-white:after {
    top: 2rem;
  }
}
.button-white:hover, .button-white:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-white:hover:before, .button-white:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-white:hover:after, .button-white:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-white {
    font-size: 13rem;
  }
}
.button-white:before {
  display: none;
}
.button-white:after {
  right: 35rem;
  top: 19rem;
}
.button-white:hover:after, .button-white:focus:after {
  right: 30rem;
}
.button-white:hover {
  text-decoration: none !important;
}

.button-white-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
  margin: 20rem 0;
  padding: 5rem 30rem 3rem 15rem;
  background-color: #fff;
  border-radius: 50rem;
  letter-spacing: 0.8rem;
}
.button-white-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-white-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-white-small:after {
    top: 2rem;
  }
}
.button-white-small:hover, .button-white-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-white-small:hover:before, .button-white-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-white-small {
    font-size: 13rem;
  }
}
.button-white-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-white-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-white-small:hover, .button-white-small:focus {
  text-decoration: none !important;
}
.button-white-small:hover:before, .button-white-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: -25rem;
}
.button-white-small:before {
  display: none;
}
.button-white-small:after {
  right: 13rem;
  top: 9rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: 10rem;
}
.button-white-small:hover {
  text-decoration: none !important;
}

.button-dark {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  background-color: #303735;
}
.button-dark:hover, .button-dark:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-dark:hover, .button-dark:focus {
  background-color: #9756FF;
}

.button-dark-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
  background-color: #303735;
}
.button-dark-small:hover, .button-dark-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-dark-small:hover, .button-dark-small:focus {
  background-color: #9756FF;
}

.button-stroked-white {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff;
  border-color: #fff;
}
.button-stroked-white:hover, .button-stroked-white:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-white:hover {
  background-color: #fff;
  color: #303735;
}

.button-stroked-white-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff;
  border-color: #fff;
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-stroked-white-small:hover, .button-stroked-white-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-white-small:hover {
  background-color: #fff;
  color: #303735;
}

.arrowContain {
  margin: 50rem auto;
  max-width: 1024rem;
  padding: 10% 20% 10% 10% !important;
  position: relative;
  background-color: #F2F9F7 !important;
  -webkit-clip-path: polygon(0 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0 80%);
          clip-path: polygon(0 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0 80%);
  border: none !important;
}
@media (max-width: 768px) {
  .arrowContain {
    -webkit-clip-path: none;
            clip-path: none;
    padding: 40rem 40rem 40rem 36rem;
    margin-left: auto;
    border-left: 4rem solid #9756FF !important;
  }
}
@media (max-width: 580px) {
  .arrowContain {
    padding: 30rem 20rem 30rem 16rem;
  }
}
.arrowContain > * {
  background: none !important;
  border: none !important;
  color: #303735;
  padding: 0 !important;
  margin: 0 !important;
}
.arrowContain br {
  display: none;
}
.arrowContain a {
  color: #303735;
  font-weight: 700 !important;
}
.arrowContain span {
  color: #9756FF;
}
.arrowContain span:hover {
  color: #803ee9;
  text-decoration: underline;
}

html {
  font-size: 1px;
}

/* auto scale down elements on mobile */
@media (max-width: 580px) {
  html {
    font-size: 1px;
  }
}

/* auto scale up elements on large displays */
@media (min-width: 2560px) {
  html {
    font-size: 1px;
  }
}

section.u4m-team-grid {
  margin: 100rem 0;
  overflow: auto;
  position: relative;
}
section.u4m-team-grid .top-section {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1340rem;
  padding-left: 20rem;
  padding-right: 20rem;
  text-align: center;
  max-width: 1000rem;
  margin-bottom: 80rem;
}
section.u4m-team-grid .top-section .heading {
  font-family: "proxima-nova";
  font-size: 50rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  line-height: 1.2;
  margin-top: 0;
}
@media (max-width: 580px) {
  section.u4m-team-grid .top-section .heading {
    font-size: 32rem;
    margin-bottom: 20rem;
  }
}
section.u4m-team-grid .top-section .sub-heading {
  font-family: "proxima-nova";
  font-size: 20rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  font-weight: normal;
  max-width: 750rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 580px) {
  section.u4m-team-grid .top-section .sub-heading {
    font-size: 18rem;
  }
}
section.u4m-team-grid .widget-type-rich_text {
  text-align: center;
}
section.u4m-team-grid .member-wrap {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1340rem;
  padding-left: 20rem;
  padding-right: 20rem;
  max-width: 1480rem;
  padding-left: 60rem;
  padding-right: 60rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
section.u4m-team-grid .member-wrap .member {
  margin: 0 20rem 40rem;
  background-color: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: calc(20% - 30rem);
      flex-basis: calc(20% - 30rem);
  width: calc(20% - 30rem);
  padding: 20rem 10rem;
  min-width: 285rem;
  max-width: 285rem;
  position: relative;
  cursor: pointer;
}
section.u4m-team-grid .member-wrap .member:before {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 5rem solid #51FF83;
  border-top-right-radius: 5rem;
  border-top-left-radius: 5rem;
  left: 0;
  width: 100%;
  height: 80%;
  -webkit-box-shadow: 0 5rem 25rem 0 rgba(48, 55, 53, 0.2);
          box-shadow: 0 5rem 25rem 0 rgba(48, 55, 53, 0.2);
  -webkit-transition: 0.2s ease height;
  transition: 0.2s ease height;
}
section.u4m-team-grid .member-wrap .member:hover div.headshot {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
section.u4m-team-grid .member-wrap .member:hover:before {
  height: 100%;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .member {
    -ms-flex-preferred-size: calc(25% - 30rem);
        flex-basis: calc(25% - 30rem);
    width: calc(25% - 30rem);
  }
}
@media (max-width: 768px) {
  section.u4m-team-grid .member-wrap .member {
    -ms-flex-preferred-size: calc(50% - 30rem);
        flex-basis: calc(50% - 30rem);
    width: calc(50% - 30rem);
  }
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20rem 0 0;
  }
}
section.u4m-team-grid .member-wrap .member > .inner {
  padding: 0;
  border-radius: 0rem;
  text-align: center;
  background-color: #fff;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner {
    background-color: transparent;
  }
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner {
  padding: 20rem 20rem 20rem;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  color: #fff;
  border-bottom: 0rem;
}
@media (max-width: 768px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner {
    padding: 15rem 20rem 35rem;
  }
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner h4,
section.u4m-team-grid .member-wrap .member > .inner .inner__inner p {
  color: #303735;
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner h4 {
  font-family: "proxima-nova";
  font-size: 12rem;
  line-height: 1.6;
  letter-spacing: 0.35rem;
  margin-bottom: 10rem;
  font-size: 22rem;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner h4 {
    font-size: 12rem;
  }
}
@media (max-width: 768px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner h4 {
    font-size: 20rem;
    margin-bottom: 5rem;
  }
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button {
  all: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  color: #9756FF;
  -webkit-transform: translateX(-10rem);
          transform: translateX(-10rem);
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:after {
    top: 2rem;
  }
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:hover, section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:hover:before, section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:hover:after, section.u4m-team-grid .member-wrap .member > .inner .inner__inner button:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner button {
    font-size: 13rem;
  }
}
section.u4m-team-grid .member-wrap .member > .inner .inner__inner p {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  margin-bottom: 10rem;
  font-size: 15rem;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner .inner__inner p {
    font-size: 15rem;
  }
}
section.u4m-team-grid .member-wrap .member > .inner button.button-arrow {
  position: absolute;
  bottom: 20rem;
  left: calc(50% - 50rem);
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member > .inner button.button-arrow {
    left: calc(50% - 30rem);
    bottom: 10rem;
  }
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .member {
    width: 44%;
    margin: 0rem 8rem 40rem 8rem;
  }
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .member {
    max-width: 380rem;
    width: 100%;
    margin: 0 auto 40rem;
  }
}
section.u4m-team-grid .member-wrap .member h4 {
  margin-top: 10rem;
  margin-bottom: 5rem;
  color: #303735;
}
section.u4m-team-grid .member-wrap .member p {
  margin: 0;
  color: #303735;
}
section.u4m-team-grid .member-wrap .member .headshot {
  height: 225rem;
  width: 225rem;
  border-radius: 5rem;
  margin: 0;
  background-size: cover;
  background-position: 50%;
  -webkit-box-shadow: -5rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: -5rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
section.u4m-team-grid .member-wrap .inner {
  height: 100%;
  cursor: pointer;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .inner {
    height: auto;
  }
}
section.u4m-team-grid .member-wrap .full-screen {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
  opacity: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 999999999999;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen {
    background: white;
    overflow: scroll;
  }
}
section.u4m-team-grid .member-wrap .full-screen.pop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.u4m-team-grid .member-wrap .full-screen.bio-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.u4m-team-grid .member-wrap .full-screen.pop-exit {
  opacity: 0;
}
section.u4m-team-grid .member-wrap .full-screen .circle {
  max-width: 1040rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  position: relative;
  -webkit-transition: 0.5s ease all 0.5s;
  transition: 0.5s ease all 0.5s;
  -webkit-transform: translateY(10rem);
  transform: translateY(10rem);
  opacity: 1;
  z-index: 2;
  color: white;
  text-decoration: none;
  padding: 20rem;
  padding-top: 0;
  text-align: left;
  border-radius: 0rem;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle {
    max-width: 100%;
    padding: 0rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: none;
    transition: none;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner {
  text-align: left;
  max-height: 700rem;
  overflow: auto;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner {
    -webkit-box-shadow: none;
            box-shadow: none;
    max-height: none;
    overflow: auto;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner {
  text-align: left;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner:before {
  content: "";
  right: 0;
  width: 90%;
  height: 100%;
  top: 0;
  position: absolute;
  background-color: #303735;
  -webkit-box-shadow: -10rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: -10rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 8rem;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner:before {
    width: 100%;
    display: none;
  }
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60rem 50rem;
    background-color: #303735;
    border-radius: 5rem;
  }
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner {
    padding: 20rem;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .inner-headshot {
  position: relative;
  z-index: 2;
  padding: 10rem;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .inner-headshot {
    padding: 0;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .inner-headshot div.headshot {
  border-radius: 5rem;
  margin-top: 60rem;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .inner-headshot div.headshot {
    margin-top: 0;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .inner-headshot div.headshot.placeholder {
  -webkit-box-shadow: 0 10rem 50rem 0 rgba(255, 255, 255, 0.1);
          box-shadow: 0 10rem 50rem 0 rgba(255, 255, 255, 0.1);
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container {
  position: relative;
  z-index: 2;
  padding: 60rem 80rem 60rem 30rem;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container {
    padding: 30rem 0 0 0;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20rem;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-top h3 {
  font-size: 40rem;
  margin-bottom: 0;
  margin-right: 25rem;
  color: #fff;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-top h3 {
    font-size: 24rem;
  }
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container .social-links {
    display: none;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container .social-links a {
  margin-right: 10rem;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  cursor: pointer;
  text-align: center;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container .social-links a i {
  color: #fff;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container .social-links a i:hover {
  color: #C9A7FF;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container .social-links a {
    margin-top: 15rem;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom h4 {
  font-size: 24rem;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom h4 {
    font-size: 18rem;
    margin-bottom: 10rem;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom h3,
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom h4,
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom p {
  color: #fff;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom p {
  color: #fff;
  font-size: 15rem;
  margin-bottom: 20rem;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom p {
    font-size: 12rem;
  }
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ul, section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ol {
  margin-top: 20rem;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ul li, section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ol li {
  margin-bottom: 15rem;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ul li:last-of-type, section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner div.inner-text-container div.inner-bottom ol li:last-of-type {
  margin-bottom: 0;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .fab {
  color: #fff;
  margin-top: 5rem;
  font-size: 18rem;
}
section.u4m-team-grid .member-wrap .full-screen .circle .circle-inner .inner .fab.fa-twitter {
  position: relative;
  top: 2rem;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .circle {
    width: 90%;
    height: 100vh;
    overflow: scroll;
  }
}
.pop section.u4m-team-grid .member-wrap .full-screen .circle {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.pop-exit section.u4m-team-grid .member-wrap .full-screen .circle {
  -webkit-transform: scale(2.5);
          transform: scale(2.5);
  -webkit-transition: 0.5s ease all 0s;
  transition: 0.5s ease all 0s;
}
section.u4m-team-grid .member-wrap .full-screen .exit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000rem;
  width: 100%;
}
@media (max-width: 1024px) {
  section.u4m-team-grid .member-wrap .full-screen .exit-wrap {
    max-width: 100%;
    padding: 0 20rem;
  }
}
section.u4m-team-grid .member-wrap .full-screen .exit {
  width: 30rem;
  height: 30rem;
  top: 0;
  right: 0;
  position: relative;
  background: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease all 0.2s;
  transition: 0.3s ease all 0.2s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  cursor: pointer;
  z-index: 9;
  float: right;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .exit {
    width: 25rem;
    height: 25rem;
    top: 5rem;
    left: 5rem;
    margin-top: 2rem;
  }
}
.pop-exit section.u4m-team-grid .member-wrap .full-screen .exit {
  z-index: 0;
}
section.u4m-team-grid .member-wrap .full-screen .exit:hover span {
  background: #C9A7FF !important;
}
section.u4m-team-grid .member-wrap .full-screen .exit:hover span:first-of-type {
  height: 140% !important;
  -webkit-transform: translateY(-15%) rotate(-90deg);
          transform: translateY(-15%) rotate(-90deg);
  width: 3rem;
}
section.u4m-team-grid .member-wrap .full-screen .exit:hover span:last-of-type {
  width: 140% !important;
  -webkit-transform: translateX(-15%) rotate(90deg);
          transform: translateX(-15%) rotate(90deg);
  height: 3rem;
}
section.u4m-team-grid .member-wrap .full-screen .exit span {
  -webkit-transition: 0.3s ease all 0s;
  transition: 0.3s ease all 0s;
}
section.u4m-team-grid .member-wrap .full-screen .exit span:first-of-type {
  height: 100%;
  width: 4rem;
  background: #C9A7FF;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.pop section.u4m-team-grid .member-wrap .full-screen .exit span:first-of-type {
  height: 100%;
}
section.u4m-team-grid .member-wrap .full-screen .exit span:last-of-type {
  width: 100%;
  height: 4rem;
  background: #C9A7FF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.pop section.u4m-team-grid .member-wrap .full-screen .exit span:last-of-type {
  width: 100%;
}
section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit {
  color: #303735;
  font-style: normal;
  font-size: 28rem;
  line-height: 44rem;
  height: 30rem;
  width: 30rem;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit:hover i:before {
  border: 2rem solid #303735;
  background: #303735;
  color: #fff;
}
section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit i {
  font-size: 20rem;
}
section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit i:before {
  width: 30rem;
  height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 50%;
  border: 2rem solid #303735;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit:hover {
  opacity: 1;
}
@media (max-width: 580px) {
  section.u4m-team-grid .member-wrap .full-screen .exit.simple-exit {
    color: #C9A7FF;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30rem;
    height: 30rem;
  }
}