@keyframes message-altura {
  from {
    height: 0;
  }
  to {
    height: 50px;
  }
}
@keyframes message-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.cards img {
  max-width: 100%;
}
.cards::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  color: #555;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .card {
    width: 43vw;
    margin-right: 20px;
  }
  .card:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .card {
    width: 225px;
    margin-right: 20px;
  }
  .card:nth-child(even) {
    margin-right: 20px;
  }
  .card:nth-child(4n) {
    margin-right: 0;
  }
}
@media (hover: hover) {
  .card:hover {
    color: #f60;
  }
}

.card-img-box {
  width: 100%;
  overflow: hidden;
}

.card-img {
  position: relative;
  height: 175px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
@media (hover: hover) {
  .card-img:hover {
    transform: scale(1.3);
    overflow: hidden;
    cursor: pointer;
  }
}

.card-summary {
  font-size: 1rem;
  line-height: 1.12rem;
  padding: 20px 20px 20px 0;
}

.feature-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.feature-card-wrap {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .feature-card-wrap {
    width: 50%;
  }
}
@media only screen and (min-width: 1025px) {
  .feature-card-wrap {
    width: 33%;
  }
  .feature-card-wrap.col-4 {
    width: 25%;
  }
}

.feature-card {
  padding: 15px;
  width: 100%;
}
@media (hover: hover) {
  .feature-card:hover .inner {
    border-bottom: 3px solid #53397f;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.3);
  }
  .feature-card:hover .inner .button-transparent-orange {
    color: #53397f;
  }
}
.feature-card .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  border-bottom: 3px solid #f60;
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.feature-card .inner .ico-large {
  margin: 0 auto 1.5rem;
  color: #f60;
}
.feature-card .inner .title, .feature-card .inner .summary {
  text-align: center;
  margin-bottom: 1rem;
}
.feature-card .inner .summary {
  color: #888;
  line-height: 1.5rem;
  min-height: 48px;
}
.feature-card .inner .button-transparent-orange {
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.feature-card .expander {
  width: 100%;
  position: relative;
}
.feature-card.js-is-collapsed .inner:after {
  content: "";
  opacity: 0;
}
.feature-card.js-is-collapsed .expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}
.feature-card.js-is-expanded .inner {
  border-bottom: 3px solid #53397f;
}
.feature-card.js-is-expanded .inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -33px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
.feature-card.js-is-expanded .expander {
  padding: 28px;
  font-size: 1.12rem;
  line-height: 1.75rem;
  overflow: visible;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.feature-card.js-is-expanded img {
  margin: 20px 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-card-wrap:nth-of-type(2n+2) .expander {
    margin-left: calc(-100% - 30px);
  }
  .feature-card-wrap:nth-of-type(2n+3) {
    clear: left;
  }
  .feature-card-wrap .expander {
    width: calc(200% + 30px);
  }
}
@media only screen and (min-width: 1025px) {
  .feature-card-wrap:nth-of-type(3n+2) .expander {
    margin-left: calc(-100% - 30px);
  }
  .feature-card-wrap:nth-of-type(3n+3) .expander {
    margin-left: calc(-200% - 60px);
  }
  .feature-card-wrap:nth-of-type(3n+4) {
    clear: left;
  }
  .feature-card-wrap .expander {
    width: calc(300% + 60px);
  }
}
@media only screen and (min-width: 1025px) {
  .feature-card-wrap.col-4:nth-of-type(4n+2) .expander {
    margin-left: calc(-100% - 30px);
  }
  .feature-card-wrap.col-4:nth-of-type(4n+3) .expander {
    margin-left: calc(-200% - 60px);
  }
  .feature-card-wrap.col-4:nth-of-type(4n+4) .expander {
    margin-left: calc(-300% - 90px);
  }
  .feature-card-wrap.col-4:nth-of-type(4n+5) {
    clear: left;
  }
  .feature-card-wrap.col-4 .expander {
    width: calc(400% + 90px);
  }
}
.highlight {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 3px;
}

.list-item {
  display: inline-block;
  width: calc(100% - 34px);
  background-color: transparent;
  border-bottom: 0;
  cursor: auto;
  min-height: auto;
  height: auto;
  margin-bottom: 0;
  color: #555 !important;
}

.summary {
  min-height: auto;
}
.summary li {
  margin-left: 0;
  margin-bottom: 1.12rem;
  line-height: 1.5rem;
}

section p, section span {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 768px) {
  section p, section span {
    font-size: 1.12rem;
    line-height: 1.75rem;
  }
}

aside h3 {
  text-transform: uppercase;
}

@media only screen and (max-width: 480px) {
  .max-1440 {
    padding: 8px 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .max-1440 {
    max-width: 1000px;
  }
  footer .max-1440 {
    max-width: 1180px;
  }
}
.post-wrap {
  position: relative;
  text-align: center;
  width: auto;
  max-width: 900px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .post-wrap {
    width: 100%;
    max-width: 90%;
  }
}
.post-wrap .post-category a {
  display: inline-block;
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
}
@media (hover: hover) {
  .post-wrap .post-category a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
  }
}
@media only screen and (max-width: 480px) {
  .post-wrap .post-category a {
    font-size: 0.875rem;
    padding: 4px 8px;
  }
}
.post-wrap .post-title {
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin: 1em 0 1em;
}
@media only screen and (min-width: 768px) {
  .post-wrap .post-title {
    font-size: 3rem;
    line-height: 4rem;
    margin: 1em 0 0.6em;
  }
}
.post-wrap .post-description {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .post-wrap .post-description {
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
}

.cover {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
  padding: 48px 0;
  height: auto;
  min-height: 72vh;
}
@media only screen and (max-width: 640px) {
  .cover {
    height: auto;
    min-height: 65vh;
  }
}
.cover .bg-y-bottom {
  background-position-y: bottom;
}

.cover-image {
  position: absolute;
  top: 0;
  left: 0;
}
.cover-image .overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media only screen and (min-width: 1440px) {
  .cover-image {
    background-size: cover;
  }
}

.share-wrap {
  margin-top: 1.5rem;
}
.share-wrap li {
  display: inline-block;
}
.share-wrap button {
  padding: 0;
}
.share-wrap .ico {
  margin: 10px;
}
@media only screen and (max-width: 480px) {
  .share-wrap .ico {
    height: 30px;
    width: 30px;
  }
}
.share-wrap .ico-fcbk, .share-wrap .ico-tw, .share-wrap .ico-gplus {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .share-wrap .ico-fcbk:hover, .share-wrap .ico-tw:hover, .share-wrap .ico-gplus:hover {
    transform: scale(1.3);
  }
}

.bottom-line {
  position: relative;
  margin: 1.5em 0 2.5em;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.bottom-line:after {
  content: "";
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -24px;
  display: block;
  width: 80px;
  height: 3px;
  background: #f60;
}
@media only screen and (max-width: 640px) {
  .bottom-line {
    font-size: 1.12rem;
    line-height: 1.625rem;
    margin: 0.5em 0 2.5em;
  }
}

.tabs {
  overflow: visible;
}
.tabs .max-1440 {
  overflow: visible;
}

.nav-tabs {
  position: absolute;
  top: -40px;
  text-transform: uppercase;
}
.nav-tabs li {
  display: inline-block;
  color: #f60;
  padding: 12px 12px 8px;
  margin-right: 40px;
  font-size: 1.12rem;
  cursor: pointer;
}
.nav-tabs li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 560px) {
  .nav-tabs li {
    margin-right: 20px;
  }
}
.nav-tabs li.current {
  font-weight: 500;
  border-bottom: 4px solid #53397f;
}

.tab-content {
  display: none;
}
.tab-content.current {
  display: block;
}
.tab-content li {
  margin-left: 0;
  margin-bottom: 1.12rem;
}
@media only screen and (min-width: 768px) {
  .tab-content li {
    margin-left: 0.875rem;
  }
}

.feedback {
  border-bottom: 1px solid #d4d4d4;
}
@media only screen and (max-width: 480px) {
  .feedback .max-1440 {
    padding: 20px;
  }
}
.feedback-wrap {
  display: flex;
  align-items: center;
  min-height: 90px;
}
.feedback-wrap p {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin: 0 16px 0 0;
}
.feedback-wrap .answer {
  vertical-align: top;
  margin-left: 8px;
  color: #3a8d11;
}
.feedback-wrap svg {
  color: #555;
  transition: all 0.2s ease-in-out;
}
.feedback-wrap button {
  display: flex;
  padding: 8px 16px;
  margin: 0 8px;
  font-size: 1rem;
  line-height: 1.5rem;
  border: 1px solid #d4d4d4;
  color: #555;
}
@media (hover: hover) {
  .feedback-wrap button:hover {
    color: #fff;
    background: #f60;
    border: 1px solid #f60;
  }
  .feedback-wrap button:hover svg {
    color: #fff;
  }
}
.feedback-wrap button:last-child svg {
  align-self: flex-end;
}
.feedback-wrap button span {
  font-size: 1rem;
  line-height: 1.5rem;
}
.feedback-wrap button svg {
  align-self: center;
  margin-right: 8px;
}
.feedback .js-feedback-answer {
  display: none;
  padding-top: 32px;
  padding-bottom: 32px;
}
.feedback .js-feedback-answer svg {
  color: #3a8d11;
}

.cover-home {
  height: auto;
  min-height: 0;
}

.button-transparent-white {
  display: inline-block;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border-radius: 3px;
  border: 1px solid #fff;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) {
  .button-transparent-white:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
  }
}

.arrow-next-step {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .arrow-next-step {
    display: block;
    margin: 0 auto;
    padding: 1rem;
    color: #d4d4d4;
  }
  .arrow-next-step .ico-white {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease-in-out;
  }
}
@media (hover: hover) {
  .arrow-next-step:hover {
    color: #888;
  }
  .arrow-next-step:hover .ico-white {
    color: #fff;
  }
}

.wrap-steps.max-1440 {
  max-width: 1080px;
}
@media only screen and (min-width: 1440px) {
  .wrap-steps.max-1440 {
    max-width: 1080px;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 16px 0 24px;
}
@media only screen and (min-width: 768px) {
  .steps {
    flex-direction: row;
  }
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  padding-bottom: 1.75rem;
}
@media only screen and (min-width: 768px) {
  .step {
    width: 25%;
    margin-bottom: 0;
  }
}
.step h3 {
  text-transform: uppercase;
  margin: 0;
  padding: 0.625rem 0.875rem 0.875rem;
}
@media only screen and (min-width: 768px) {
  .step h3 {
    padding: 1.5rem 0.875rem 0.875rem;
  }
}
.step p {
  display: none;
  color: #888;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  padding: 0 0.875rem;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1025px) {
  .step p {
    display: block;
  }
}
.step .button-transparent {
  color: #555;
}
.step .button-transparent .animate-circle {
  stroke-dashoffset: 232;
  stroke-dasharray: 232;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .step .button-transparent {
    padding: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .step .button-transparent {
    min-width: 262px;
  }
  .step .button-transparent:hover .animate-circle {
    stroke-dashoffset: 0;
  }
}
.step .ico-xxl {
  height: 90px;
}
.step .timeline {
  position: absolute;
  display: block;
  background: #555;
  height: 3px;
  width: 34px;
  bottom: 17px;
  left: calc(50% - 16px);
  transform: rotate(90deg);
}
@media only screen and (min-width: 768px) {
  .step .timeline {
    width: 172px;
    top: 43.5px;
    left: calc(50% + 38px);
    transform: rotate(0deg);
  }
}
@media only screen and (min-width: 1025px) {
  .step .timeline {
    width: 132px;
    top: 43.5px;
    left: calc(50% + 65px);
    transform: rotate(0deg);
  }
}
@media only screen and (min-width: 1196px) {
  .step .timeline {
    width: 152px;
    top: 43.5px;
    left: calc(50% + 55px);
    transform: rotate(0deg);
  }
}
.step:first-child .timeline {
  background: linear-gradient(to right, #76B8DB, #FF8F45);
}
@media only screen and (min-width: 1025px) {
  .step:first-child .button-transparent:hover {
    color: #76B8DB;
  }
  .step:first-child .button-transparent:hover p {
    color: rgb(68.3333333333%, 68.3333333333%, 68.3333333333%);
  }
}
.step:nth-child(2) .timeline {
  background: linear-gradient(to right, #FF8F45, #6FAC51);
}
@media only screen and (min-width: 1025px) {
  .step:nth-child(2) .button-transparent:hover {
    color: #FF8F45;
  }
  .step:nth-child(2) .button-transparent:hover p {
    color: rgb(68.3333333333%, 68.3333333333%, 68.3333333333%);
  }
}
.step:nth-child(3) .timeline {
  background: linear-gradient(to right, #6FAC51, #816FA1);
}
@media only screen and (min-width: 1025px) {
  .step:nth-child(3) .button-transparent:hover {
    color: #6FAC51;
  }
  .step:nth-child(3) .button-transparent:hover p {
    color: rgb(68.3333333333%, 68.3333333333%, 68.3333333333%);
  }
}
@media only screen and (min-width: 1025px) {
  .step:nth-child(4) .button-transparent:hover {
    color: #816FA1;
  }
  .step:nth-child(4) .button-transparent:hover p {
    color: rgb(68.3333333333%, 68.3333333333%, 68.3333333333%);
  }
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-stage, .bg-uj-purple, .bg-uj-green, .bg-uj-orange, .bg-uj-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-uj-blue {
  background: rgba(118, 184, 219, 0.7);
}

.bg-uj-orange {
  background: rgba(255, 143, 69, 0.7);
}

.bg-uj-green {
  background: rgba(111, 172, 81, 0.7);
}

.bg-uj-purple {
  background: rgba(129, 111, 161, 0.7);
}

.stage {
  color: #fff;
}
.stage.max-1440 {
  max-width: 1280px;
}
@media only screen and (min-width: 1440px) {
  .stage.max-1440 {
    max-width: 1280px;
  }
}
.stage .wrap-content {
  max-width: 800px;
  margin: 0 auto;
}
.stage .ico-extralarge {
  height: 60px;
}
.stage .bottom-line:after {
  background: #fff;
}
.stage .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.stage .overlay:hover {
  background: rgba(255, 255, 255, 0.2);
}
.stage .button-light {
  color: #fff;
  border: 1px solid #fff;
}
@media only screen and (min-width: 1025px) {
  .stage .button-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
  }
}
@media only screen and (min-width: 1025px) {
  .stage .card {
    width: calc(25% - 15px);
  }
}
.stage .card-img {
  height: 115px;
}
@media only screen and (min-width: 768px) {
  .stage .card-img {
    height: 175px;
  }
}
.stage .card-img:hover {
  transform: scale(1);
}
.stage .card-summary {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  padding: 24px 16px 8px;
  border-radius: 0 0 3px 3px;
}

.stage-title h3 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 400;
  text-transform: uppercase;
}
.stage-title .ico {
  float: left;
  margin-right: 15px;
}

.menu {
  background: #fff;
  padding-top: 56px;
}
.menu .max-1440 {
  max-width: 1180px;
}
.menu-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.menu-wrap::-webkit-scrollbar {
  display: none;
  background-color: transparent;
  height: 0;
  width: 0;
}
@media only screen and (min-width: 1025px) {
  .menu-wrap {
    padding: 0 28px;
  }
}
.menu-item:first-child.active {
  border-bottom: 4px solid #76B8DB;
}
.menu-item:first-child.active span {
  color: #76B8DB;
}
.menu-item:first-child:hover span {
  color: #76B8DB;
}
.menu-item:nth-child(2).active {
  border-bottom: 4px solid #FF8F45;
}
.menu-item:nth-child(2).active span {
  color: #FF8F45;
}
.menu-item:nth-child(2):hover span {
  color: #FF8F45;
}
.menu-item:nth-child(3).active {
  border-bottom: 4px solid #6FAC51;
}
.menu-item:nth-child(3).active span {
  color: #6FAC51;
}
.menu-item:nth-child(3):hover span {
  color: #6FAC51;
}
.menu-item:nth-child(4).active {
  border-bottom: 4px solid #816FA1;
}
.menu-item:nth-child(4).active span {
  color: #816FA1;
}
.menu-item:nth-child(4):hover span {
  color: #816FA1;
}
.menu-item .ico-large {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  align-self: center;
}
.menu-item span {
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  margin-left: 0;
  font-size: 0.75rem;
  font-weight: 400;
  align-self: center;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 76px;
  white-space: nowrap;
}
@media only screen and (min-width: 400px) {
  .menu-item span {
    max-width: 100px;
  }
}
@media only screen and (min-width: 480px) {
  .menu-item span {
    overflow-x: auto;
    text-overflow: clip;
    max-width: none;
    white-space: normal;
  }
}
@media only screen and (min-width: 768px) {
  .menu-item span {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1025px) {
  .menu-item span {
    margin-left: 8px;
    font-weight: 500;
  }
}
.menu .button-transparent {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 8px;
  color: #555;
  font-size: inherit;
  border-radius: 0;
}
@media only screen and (min-width: 640px) {
  .menu .button-transparent {
    padding: 16px 28px 8px;
  }
}
@media only screen and (min-width: 768px) {
  .menu .button-transparent {
    padding: 24px 28px 16px;
  }
}
@media only screen and (min-width: 1025px) {
  .menu .button-transparent {
    display: inline-block;
  }
}
@media only screen and (min-width: 1196px) {
  .menu .button-transparent {
    padding: 28px 48px 16px;
  }
}

.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.grid.max-1440 {
  max-width: 1180px;
}
.grid-card {
  padding: 12px 0;
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .grid-card {
    width: 50%;
    padding: 12px;
  }
}
@media only screen and (min-width: 1196px) {
  .grid-card {
    width: 25%;
  }
}
.grid-card-inner, .grid-tipcard-inner {
  display: block;
  position: relative;
  background: #fff;
  color: #555;
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  height: auto;
}
.grid-card-inner:hover, .grid-tipcard-inner:hover {
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #f60;
}
.grid-card-info {
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .grid-card-info {
    height: 265px;
  }
}
@media only screen and (min-width: 1196px) {
  .grid-card-info {
    height: 280px;
  }
}
.grid-card-img {
  height: 175px;
  width: 100%;
  border-radius: 3px 3px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.grid-card-title {
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.625rem;
}
.grid-card-summary {
  padding: 16px 0;
  color: #888;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.5rem;
}
.grid .button-light {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .grid .button-light {
    position: absolute;
    bottom: 16px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1196px) {
  .grid-megacard {
    width: 50%;
  }
  .grid-megacard .grid-card-img {
    height: 250px;
  }
  .grid-megacard .grid-card-info {
    height: 205px;
  }
}
.grid-covercard .overlay-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 28%, rgba(255, 255, 255, 0) 100%);
}
.grid-covercard .grid-card-img {
  border-radius: 3px;
  height: 350px;
}
@media only screen and (min-width: 768px) {
  .grid-covercard .grid-card-img {
    height: 440px;
  }
}
@media only screen and (min-width: 1196px) {
  .grid-covercard .grid-card-img {
    height: 455px;
  }
}
.grid-covercard .grid-card-info {
  position: absolute;
  bottom: 0;
  color: #fff;
}
.grid-covercard .grid-card-summary {
  color: #fff;
  font-weight: 400;
}
.grid-covercard .button-light {
  color: #fff;
  border: 1px solid #fff;
}
.grid-covercard .button-light:hover {
  color: #fff;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.1);
}
.grid-tipcard-inner {
  padding: 16px;
  height: auto;
  overflow: hidden;
}
.grid-tipcard-inner:hover {
  color: #555;
}
@media only screen and (min-width: 768px) {
  .grid-tipcard-inner {
    height: 440px;
  }
}
@media only screen and (min-width: 1196px) {
  .grid-tipcard-inner {
    height: 455px;
  }
}
.grid-tipcard-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.grid-tipcard-title {
  margin-top: 0.75rem;
  font-size: 1.12rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.grid-tipcard-text {
  display: flex;
  flex-direction: column;
}
.grid-tipcard-text svg:first-child {
  display: none;
  align-self: flex-start;
}
.grid-tipcard-text svg:last-child {
  display: none;
  align-self: flex-end;
}
.grid-tipcard-text p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #888;
  font-weight: 100;
  text-align: center;
}
.grid-tipcard-link {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .grid-tipcard-link {
    position: absolute;
    width: calc(100% - 32px);
    bottom: 16px;
    margin-top: 0;
  }
}
.grid-tipcard-link button {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 231px;
}
.grid-tipcard .bottom-line:after {
  left: calc(50% - 40px);
}
.grid-tipcard.quotes svg {
  display: block;
}
.grid-tipcard.quotes .grid-tipcard-link {
  display: none;
}

.grid-related.max-1440 {
  max-width: 1180px;
}
@media only screen and (max-width: 1024px) {
  .grid-related.max-1440 {
    padding-right: 0;
  }
}
.grid-related .cards {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.grid-related .cards::-webkit-scrollbar {
  display: none;
  background-color: transparent;
  height: 0;
  width: 0;
}
@media only screen and (min-width: 1025px) {
  .grid-related .cards {
    flex-wrap: wrap;
  }
}
.grid-related .card {
  width: 272px;
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 20px;
}
.grid-related .card:last-child {
  width: 292px;
  padding-right: 20px;
}
@media only screen and (min-width: 768px) {
  .grid-related .card {
    width: 272px;
  }
  .grid-related .card:nth-child(even) {
    margin-right: 20px;
  }
  .grid-related .card:last-child {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .grid-related .card {
    width: calc(25% - 15px);
  }
  .grid-related .card:nth-child(even) {
    margin-right: 20px;
  }
  .grid-related .card:nth-child(4n) {
    margin-right: 20px;
  }
  .grid-related .card:last-child {
    width: calc(25% - 15px);
    padding-right: 0;
    margin-right: 0;
  }
}
.grid-related .card-category {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  padding: 4px;
  border-radius: 3px;
  color: #fff;
  font-size: 1rem;
}
.grid-related .card-category.first-stage {
  background: #76B8DB;
}
.grid-related .card-category.second-stage {
  background: #FF8F45;
}
.grid-related .card-category.third-stage {
  background: #6FAC51;
}
.grid-related .card-category.fourth-stage {
  background: #816FA1;
}

a, button {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.green {
  color: #3a8d11;
}

.red {
  color: #ff0000;
}

.ico-list {
  display: block;
  float: left;
  margin-right: 10px;
}

.ico-xs {
  width: 18px;
  height: 18px;
}

.ico-small {
  width: 24px;
  height: 24px;
}

.ico-medium {
  width: 45px;
  height: auto;
}

.ico-large {
  display: block;
  width: auto;
  height: 48px;
}

.ico-extralarge {
  width: 60px;
  height: auto;
}

.ico-xxl {
  width: 90px;
  height: auto;
}

.padding-y-medium {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-bottom-y-xl {
  padding-bottom: 48px;
}

.padding-top-y-xl {
  padding-top: 48px;
}

.padding-y-xl {
  padding: 48px 0;
}

.img-responsive, .video-responsive {
  max-width: 100%;
  height: auto;
}

.border-top-bottom {
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.font-italic {
  font-style: italic;
  font-size: 1rem;
}

.close {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .close:hover {
    opacity: 1;
  }
}
.close:before, .close:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 0;
  border-top: 1px solid #555;
  transform-origin: center;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

.button-light {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1rem;
  color: #555;
  background: transparent;
  border: 1px solid #d4d4d4;
}
@media (hover: hover) {
  .button-light:hover {
    color: #f60;
    background: transparent;
    border: 1px solid #f60;
  }
}

.button-return-top {
  display: none;
}
@media only screen and (min-width: 1196px) {
  .button-return-top {
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.9);
    border-radius: 50%;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
  }
}
@media only screen and (min-width: 1196px) and (hover: hover) {
  .button-return-top:hover {
    color: #fff;
    background: #f60;
  }
}
@media only screen and (min-width: 1196px) {
  .button-return-top svg {
    position: absolute;
    width: 30px;
    height: 14px;
    transform: rotate(180deg);
    left: calc(50% - 15px);
    top: calc(50% - 7px);
  }
}