@import url(//fonts.googleapis.com/css?family=Lato:300:400);

body {
  margin:0;
}

/* h1 {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
} */

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.resp-text {
  text-align: center;
  font-size: large;
}

@media (min-width: 600px) {
  .resp-text {
  text-align: center;
  font-size: x-large;
  }
}

@media (min-width: 1000px) {
  .resp-text {
  text-align: left;
  font-size: xx-large;
  }
}

.resp-text1 {
  text-align: center;
  font-size: small;
}

@media (min-width: 600px) {
  .resp-text1 {
  text-align: center;
  font-size: large;
  }
}

@media (min-width: 1000px) {
  .resp-text1 {
  text-align: left;
  font-size: x-large;
  }
}

.resp-text2 {
  text-align: center;
  font-size: x-small;
}

@media (min-width: 600px) {
  .resp-text2 {
  text-align: center;
  font-size: small;
  }
}

@media (min-width: 1000px) {
  .resp-text2 {
  text-align: left;
  font-size: large;
  }
}

.resp-text3 {
  text-align: justify;
}

@media (min-width: 600px) {
  .resp-text3 {
  text-align: justify;
  }
}

@media (min-width: 1000px) {
  .resp-text3 {
  text-align: justify;
  }
}

.resp-img {
  width: 60%;
  height: auto;
}

@media (min-width: 600px) {
  .resp-img {
      width: 70%;
  }
}

@media (min-width: 1000px) {
  .resp-img {
      width: 80%;
  }
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background-color: #FFC300;
}

.btn-get-started:hover {
  background-color: #FFC300;
  color: #fff;
}

.headeras {
  position:relative;
  text-align:center;
  /* background-image: url('/cms/assets/img/image1-0.png'); */
  /* background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgb(153, 0, 204) 100%), url('/cms/assets/img/image1-0.png') no-repeat center center/cover; */
  /* background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgb(153, 0, 204) 100%), url('first-background.jpg') no-repeat center center/cover; */
  background: 
    linear-gradient(60deg, rgba(84,58,183,0.9) 0%, rgb(153, 0, 204, 0.93) 100%), 
    url('/first-background.jpg') no-repeat center center;
  background-size: cover;
  color:white;
}
.logos {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-headeras {
  height:85vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

/* .content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
} */

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  /* .content {
    height:30vh;
  } */
  h1 {
    font-size:24px;
  }
}