.go2 {
  transition: all 0.3s ease-out;
}

.go2-container {
  display: inline;
  align-items: center;
  justify-content: center;
}

.go2-container h3 {
  color: #262626;
  font-size: 12px;
/*  font-size: 11px;
*/  font-weight: 700;
  text-align: center;
  margin-top: -11px;
}

.go2-container p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
}
.go2-container p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #00838d;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.go2-card1 {
  display: block;
  position: relative;
  max-width: 262px;
  height: 68px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: 0px 30px 40px -20px var(--grayishBlue);
}
.go2-card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.go2-card1:hover:before {
  transform: scale(21);
}

.go2-card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.go2-card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

.go2-card2 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}
.go2-card2:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  border: 1px solid #cccccc;
  background-color: white;
}
.go2-card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}
.go2-card2:hover:before {
  transform: scale(2.15);
}

.go2-card3 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}
.go2-card3 .go-corner {
  opacity: 0.7;
}
.go2-card3:hover {
  border: 1px solid #00838d;
  box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
  z-index: 500;
}

.go2-card3:hover p {
  color: #00838d;
}
.go2-card3:hover .go-corner {
  transition: opactiy 0.3s linear;
  opacity: 1;
}

.go2-card4 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #cccccc;
}
.go2-card4 .go-corner {
  background-color: #00838d;
  height: 100%;
  width: 16px;
  padding-right: 9px;
  border-radius: 0;
  transform: skew(6deg);
  margin-right: -36px;
  align-items: start;
  background-image: linear-gradient(-45deg, #8F479A 1%, #DC2A74 100%);
}
.go2-card4 .go-arrow {
  transform: skew(-6deg);
  margin-left: -2px;
  margin-top: 9px;
  opacity: 0;
}
.go2-card4:hover {
  border: 1px solid #CD3D73;
}
.go2-card4 h3 {
  margin-top: 8px;
}

.go2-card4:hover .go-corner {
  margin-right: -12px;
}
.go2-card4:hover .go-arrow {
  opacity: 1;
}

/* Sticky */
.sidebar {
  position: sticky;
  top: 100px;
  padding-top: 0px;
  flex-basis: calc(100% - 400px - 60px);
  flex-grow: 1;
  /* Mobile: Unstick it and move it up */
  display:none;
}
@media (max-width: 800px) {
  .sidebar {
    order: -1;
    position: static;
    height: auto;
    width: 100%;
  }
}
.sidebar h1 {
  font-size: 40px;
  line-height: 1;
}
.sidebar ul {
  padding: 0;
}
.sidebar ul li {
  list-style: none;
  padding: 10px;
  color: white;
  font-size: 12px;
  margin-bottom: 1em;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 200ms linear;
}
.sidebar ul li:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=go-card.css.map */