@keyframes moveInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveInDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(50px);
  }
}
/** MARKETING **/
#hcu-marketing .slider-item {
  width: 100vw;
  height: 85vh;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
#hcu-marketing .slider-item .slider-item-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  margin: 0 1em;
}
#hcu-marketing .slider-item .slider-item-content .slider-title {
  color: #fbfbfb;
}
@media (min-width: 320px) {
  #hcu-marketing .slider-item .slider-item-content .slider-title {
    font-size: 2.5em;
  }
}
@media (min-width: 768px) {
  #hcu-marketing .slider-item .slider-item-content .slider-title {
    font-size: 3.5em;
  }
}
@media (min-width: 1024px) {
  #hcu-marketing .slider-item .slider-item-content .slider-title {
    font-size: 5em;
  }
}
#hcu-marketing .slider-item .slider-item-content .slider-details {
  color: #fbfbfb;
}
@media (min-width: 320px) {
  #hcu-marketing .slider-item .slider-item-content .slider-details {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  #hcu-marketing .slider-item .slider-item-content .slider-details {
    font-size: 1.4em;
  }
}
@media (min-width: 1024px) {
  #hcu-marketing .slider-item .slider-item-content .slider-details {
    font-size: 2em;
  }
}
#hcu-marketing .slider-item .slider-item-content .slider-disclaimer {
  color: #fbfbfb;
}
@media (min-width: 320px) {
  #hcu-marketing .slider-item .slider-item-content .slider-disclaimer {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  #hcu-marketing .slider-item .slider-item-content .slider-disclaimer {
    font-size: 1.2em;
  }
}
@media (min-width: 1024px) {
  #hcu-marketing .slider-item .slider-item-content .slider-disclaimer {
    font-size: 1.6em;
  }
}
#hcu-marketing .owl-dots {
  bottom: 75px;
}
#hcu-marketing .owl-item.active .slider-item-content {
  animation-name: moveInUp;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}
#hcu-marketing .owl-item.active .slider-item-content .slider-title {
  animation-name: moveInUp;
  animation-duration: 0.6s;
  animation-delay: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}
#hcu-marketing .owl-item.active .slider-item-content .slider-details {
  animation-name: moveInUp;
  animation-duration: 0.7s;
  animation-delay: 0.4s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}
#hcu-marketing .owl-item.active .slider-item-content .slider-disclaimer {
  animation-name: moveInUp;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}
#hcu-marketing .owl-item.active .slider-item-content .slider-action {
  animation-name: moveInUp;
  animation-duration: 0.9s;
  animation-delay: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}

/** FEATURED RATES **/
#hcu-rates {
  color: #fbfbfb;
}
#hcu-rates .rates-title,
#hcu-rates .rates-disclaimer {
  text-align: center;
  padding-top: 5px;    
}
#hcu-rates .rates-disclaimer {
  margin-top: 5px;
}
#hcu-rates .rates-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3em;
}
#hcu-rates .rates-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  #hcu-rates .rates-tabs {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
#hcu-rates .rates-tabs .tab-wrap {
  display: flex;
  justify-content: center;
  padding: 3px;
}
@media (min-width: 320px) {
  #hcu-rates .rates-tabs .tab-wrap {
    flex: 1 0 50%;
  }
}
@media (min-width: 768px) {
  #hcu-rates .rates-tabs .tab-wrap {
    flex: 1 0 25%;
  }
}
@media (min-width: 1024px) {
  #hcu-rates .rates-tabs .tab-wrap {
    flex: 0 0 auto;
  }
}
#hcu-rates .rates-tabs .tab-wrap .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 10em;
  width: 10em;
  padding: 1em;
  border-radius: 100%;
  color: #cddc29;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
#hcu-rates .rates-tabs .tab-wrap .tab .icon {
  font-size: 2em;
}
#hcu-rates .rates-tabs .tab-wrap .tab .title {
  font-size: 1em;
  margin: 0.75em 0;
  text-align: center;
}
#hcu-rates .rates-tabs .tab-wrap .tab .indicator {
  visibility: hidden;
}
#hcu-rates .rates-tabs .tab-wrap .tab:hover {
  color: #17315a;
  background: #d5e149;
  text-decoration: none;
}
#hcu-rates .rates-tabs .tab-wrap .tab:hover .indicator {
  visibility: visible;
  animation-name: moveInUp;
  animation-duration: 0.25s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}
#hcu-rates .rates-tabs .tab-wrap .tab:active {
  color: #142a4d;
  background: #aebb23;
}
#hcu-rates .rates-tabs .tab-wrap .tab.active {
  color: #17315a;
  background: #cddc29;
}
#hcu-rates .rates-tabs .tab-wrap .tab.active .indicator {
  visibility: visible;
}
#hcu-rates .rates-content {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  margin: none;
}
@media (min-width: 1024px) {
  #hcu-rates .rates-content {
    justify-content: center;
  }
}
#hcu-rates .rates-content .detail-wrap {
  display: flex;
  justify-content: center;
  padding: 2px;
}
@media (min-width: 320px) {
  #hcu-rates .rates-content .detail-wrap {
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) {
  #hcu-rates .rates-content .detail-wrap {
    flex: 1 0 50%;
  }
}
@media (min-width: 1024px) {
  #hcu-rates .rates-content .detail-wrap {
    flex: 0 0 20%;
  }
}
#hcu-rates .rates-content .detail-wrap .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hcu-rates .rates-content .detail-wrap .details .title {
  font-size: 1.15em;
}
#hcu-rates .rates-content .detail-wrap .details .ala {
  font-size: 0.85em;
}
#hcu-rates .rates-content .detail-wrap .details .percent {
  font-size: 2.75em;
}
#hcu-rates .rates-content .detail-wrap .details .type {
  font-size: 1.15em;
}
#hcu-rates .rates-content .details-button {
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
}
#hcu-rates .rates-content.active {
  display: flex;
  animation-name: moveInUp;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
}

/** OUR SERVICES **/
#hcu-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#hcu-services .services-title {
  flex: 1 0 100%;
  text-align: center;
}
#hcu-services .services-card {
  min-height: 325px;
  padding: 1em;
  position: relative;
  cursor: pointer;
}
@media (min-width: 320px) {
  #hcu-services .services-card {
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) {
  #hcu-services .services-card {
    flex: 1 0 50%;
  }
}
@media (min-width: 1024px) {
  #hcu-services .services-card {
    flex: 1 0 33.3%;
  }
}
#hcu-services .services-card .front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2.5em;
  color: #17315a;
  background: #fbfbfb;
  -webkit-transform: perspective(1000) rotateY(0);
  -moz-transform: perspective(1000) rotateY(0);
  -ms-transform: perspective(1000) rotateY(0);
  -o-transform: perspective(1000) rotateY(0);
  transform: perspective(1000) rotateY(0);
}
#hcu-services .services-card .front .title {
  font-size: 1.5em;
  font-weight: bold;
}
#hcu-services .services-card .front .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  width: 2.5em;
  margin-bottom: 0.75em;
  font-size: 2em;
  border-radius: 100%;
  color: #cddc29;
  background: #17315a;
}
#hcu-services .services-card .back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 1em;
  left: 1em;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  color: #fbfbfb;
  background: #17315a;
  padding: 1em 2.5em;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
#hcu-services .services-card .back .title {
  font-size: 1.5em;
  font-weight: bold;
}
#hcu-services .services-card .back .description {
  margin: 1em 0;
}
#hcu-services .services-card .front,
#hcu-services .services-card .back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s !important;
  -moz-transition: -moz-transform 0.6s !important;
  -o-transition: -o-transform 0.6s !important;
  transition: transform 0.6s !important;
}
#hcu-services .services-card:hover .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform: perspective(1000) rotateY(180deg);
  -moz-transform: perspective(1000) rotateY(180deg);
  -ms-transform: perspective(1000) rotateY(180deg);
  -o-transform: perspective(1000) rotateY(180deg);
  transform: perspective(1000) rotateY(180deg);
}
#hcu-services .services-card:hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform: perspective(1000) rotateY(0deg);
  -moz-transform: perspective(1000) rotateY(0deg);
  -ms-transform: perspective(1000) rotateY(0deg);
  -o-transform: perspective(1000) rotateY(0deg);
  transform: perspective(1000) rotateY(0deg);
}

/** ABOUT US **/
#hcu-about {
  position: relative;
  display: flex;
  flex-direction: column;
}
#hcu-about .about-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #hcu-about .about-row {
    border-bottom: 0.0625em solid #233b62;
  }
}
#hcu-about .about-row .img,
#hcu-about .about-row .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fbfbfb;
  background: #17315a;
}
@media (min-width: 320px) {
  #hcu-about .about-row .img {
    flex: 1 0 100%;
    order: 1;
  }
}
@media (min-width: 768px) {
  #hcu-about .about-row .img {
    flex: 1;
    order: unset;
  }
}
#hcu-about .about-row .img img {
  width: 100%;
}
#hcu-about .about-row .text {
  padding: 2.5em;
}
@media (min-width: 320px) {
  #hcu-about .about-row .text {
    flex: 1 0 100%;
    order: 2;
  }
}
@media (min-width: 768px) {
  #hcu-about .about-row .text {
    flex: 2;
    order: unset;
  }
}

/** OUR PARTNERS **/
#hcu-partners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 3em 0;
  position: relative;
}
#hcu-partners .partner-title {
  flex: 1 0 100%;
  text-align: center;
}
#hcu-partners .partner-box {
  text-align: center;
  padding: 1em;
}
@media (min-width: 320px) {
  #hcu-partners .partner-box {
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) {
  #hcu-partners .partner-box {
    flex: 1 0 25%;
  }
}
#hcu-partners .partner-box img {
  height: 12.5em;
}

/** TAGLINE **/
#hcu-tagline {
  text-align: center;
  padding: 1.5em;
  font-size: 1.5em;
  color: #fbfbfb;
  background: #17315a;
}
