html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}
.home-carousel .owl-stage{
  display: flex;
}
.home-carousel .owl-item{
  min-height: 100%;
}
.home-carousel .card{
  min-height: 100%;
  height: 100%;
}
.landing-page .desktop-hero{
  border-radius: 0 0 0 0.75rem;
  transform: translateX(10px);
}
.section.section-about{
  padding-top: 0;
}
.landing-page .description{
  margin-bottom: 30px;
}
.landing-page .feature-image-left,
.landing-page .feature-image-right{
  border-radius: .75rem;
}
.landing-page .reportability{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}
.reportability .list{
  max-width: 400px;
}
.reportability .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #006da3;
  border-radius: 0 4px 0 32px;
}

.reportability .go-arrow {
  position: absolute;
  top: 5px;
  right: 5px;
  color: white;
  font-size: 14px;
  line-height: 17px;
}

.reportability .card {
  display: block;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  box-shadow: 0 1px 15px rgb(0 0 0 / 10%), 0 1px 6px rgb(0 0 0 / 4%);
  border-radius: .75rem;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  height: 100%;
}
.reportability .card .card-body{
  padding: 2rem 0 0 0;
}
.reportability .card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: -15px;
  background: #006da3;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}
.reportability .card:hover:before {
  transform: scale(40);
}

.reportability .card:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.reportability .card:hover h3 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}
.landing-page .logo-mobile span{
  display: block;
  background: url(../logos/logo-trio.png)50% no-repeat;
  background-size: contain;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
