* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/*--------------------------- hero --------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      rgba(11, 11, 11, 0.8),
      rgba(11, 11, 11, 0.8)
    ),
    url(../Img/hero.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-caption {
  color: #fff;
  height: 100vh;
  font-size: 16px;
  line-height: 1.5rem;
}
.spaced {
  font-size: 3.5rem;
  letter-spacing: 10px;
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}
.hero-tags {
  font-weight: 400;
  font-size: 1.33rem;
}
.colored {
  color: #d71414;
}
/*----------------------------- general ---------------------------*/
.general {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    url(../Img/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25vh 5vh;
}
.big-text {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: center;
  font-family: Montserrat, sans-serif;
}
.demo-card-general {
  position: relative;
  padding: 0;
}
.demo-card-general a .overlay-general {
  overflow: hidden;
  border-left: 2px solid #d71414;
  align-content: center;
  position: absolute;
  width: 0%;
  height: 100%;
  transition: 0.4s;
  background-image: url(../Img/bg.png);
}
.img-responsive {
  width: 100%;
  height: 100%;
}
.overlay-general p {
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  padding-top: 1rem;
  letter-spacing: 5px;
  opacity: 0;
  transition: 0.2s 0.2s;
  margin-left: 10%;
}
.overlay-general span {
  color: #d71414;
}
.demo-card-general a:hover .overlay-general {
  width: 100%;
  height: 100%;
  border-left: 5px solid #d71414;
  p {
    opacity: 1;
  }
}
/*------------------------------------- mobile --------------------------------*/
.mobile {
  width: 100%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url(../Img/bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25vh 10vh;
}
.demo-card-mobile {
  position: relative;
  padding: 0;
}
.demo-card-mobile a .overlay-mobile {
  overflow: hidden;
  border-left: 2px solid #d71414;
  align-content: center;
  position: absolute;
  width: 0%;
  height: 100%;
  transition: 0.4s;
  background-color: #fff;
}
.img-responsive {
  width: 100%;
  height: 100%;
}
.overlay-mobile p {
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  color: black;
  padding-top: 1rem;
  letter-spacing: 5px;
  opacity: 0;
  transition: 0.2s 0.2s;
  margin-left: 5%;
}
.overlay-mobile span {
  color: #d71414;
}
.demo-card-mobile a:hover .overlay-mobile {
  width: 100%;
  height: 100%;
  border-left: 5px solid #d71414;
  p {
    opacity: 1;
  }
}
/* Footer */
footer {
  border-top: 2px solid #d71414;
  background-image: url(../Img/bg.png);
}
.features {
  padding: 60px 0;
}
.text-center {
  text-align: center;
}
.icon {
  width: 30%;
  height: auto;
  margin: 0 auto;
}
.icon-wrapper h3 {
  color: white;
  font-size: 1.25rem;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
}
.icon-wrapper p {
  color: white;
  font-size: 0.9375rem;
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
}
.copyright {
  margin: 0;
}
.copyright a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.tiny-margin p {
  color: #fff;
}
/*--------------------------- Animation -------------------------------*/
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
  filter: contrast(0.2);
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
  filter: contrast(1);
}
/* -------------------------------------------- */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out;
  filter: contrast(0.2);
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: contrast(1);
}
/* ---------------------------------------------- */
/* CSS */
.icon-wrapper {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper.visible {
  opacity: 1;
  transform: scale(1);
}

.icon-wrapper:nth-child(1) {
  transition-delay: 0.2s;
}
.icon-wrapper:nth-child(2) {
  transition-delay: 0.4s;
}
.icon-wrapper:nth-child(3) {
  transition-delay: 0.6s;
}
.icon-wrapper:nth-child(4) {
  transition-delay: 0.8s;
}
.icon-wrapper:nth-child(5) {
  transition-delay: 1s;
}
.icon-wrapper:nth-child(6) {
  transition-delay: 1.2s;
}
