/*@import url('https://fonts.googleapis.com/css?family=Hind');*/

*, *:before, *:after {
  box-sizing: inherit;
}
.carouseltext {
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	margin-bottom: 0;
}

html {
  box-sizing: border-box;
  background: #fff;
  font-family: 'Hind', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5em;
  font-weight: 200;
}

.site-wrap {
	background-color: #d4eaf9;
}
.content-h3 {
	align-content: center;
	padding-right: 30px;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.5em;
}

p {
  margin: 30px;
}

.software-icon {
	width: 20px !important;
	height: auto;
	margin-right: 10px;
}

.thankyou {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #8C8FAA;
}

#header {
  position: relative;
  height: 100vh;
  background: #f5f5f5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-wrap {
  margin: 0 auto;
  overflow: hidden;
}

.row {
  padding: 20px 0;
	padding-left: 40px;
	padding-right: 40px;
}

.column {
  color: #f45549;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
}

.column img {
  width: 100%; 
  height: auto; 
}

.slide-in {
  opacity: 0;
  transition: all .5s;
}

.align-left.slide-in {
  transform:translateX(-30%) scale(0.95);
}

.align-right.slide-in {
  transform:translateX(30%) scale(0.95);
}

.slide-in.active {
  opacity: 1;
  transform:translateX(0%) scale(1);
}
:root {
	--crsl-height: 55vh;
	--crsl-width: 100vw;
	--crsl-img-mx: 50vw;
}

/* ######## Carousel */
.crsl-ctn {
	width: var(--crsl-width);
	height: var(--crsl-height);
	display: flex;
	align-items: center;
	position: relative;
	background: white;
}
.crsl-all-img-ctn {
	width: var(--crsl-width);
	height: var(--crsl-height);
	display: flex;
	align-items: center;
	position: relative;
	transition: all 1s ease-in-out;
}
.crsl-img-ctn {
	height: 1px;
	width: 0px;
	margin-right: var(--crsl-img-mx);
	display: flex;
	justify-content: center;
	align-items: center;
}
.crsl-img {
	width: 40vw;
	height: var(--crsl-height);
	object-fit: contain;
	transition: all 1s ease-in-out;
}
.crsl-controls {
	position: absolute;
	width: 100vw;
	display: flex;
	justify-content: space-between;
}
.crsl-prev {
	margin-left: 30px;
  cursor: pointer;
}
.crsl-next {
	margin-right: 30px;
  cursor: pointer;
}

/* Flip Up Letters . */

.content-letters {
  text-align: center;
  padding-left: 40px;
  perspective: 800px;
 }

.flipletters {
  font-family: 'Bowlby One SC', cursive;
  font-size:3rem;
  margin: 0;
 }

span {
   display:inline-block;
   margin-left: -25px;
   color:#2a5ca0;
   transform-origin: 50% 70%;
}


span:nth-child(2n) {
  color:#315b8f;
}

span:nth-child(1) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 2s both;
}

span:nth-child(2) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 2.2s both;
}

span:nth-child(3) {
 animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 2.4s both;
	 margin-right:30px;
}

span:nth-child(4) {
 animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 2.6s both;
}

span:nth-child(5) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 2.8s both;
 }

span:nth-child(6) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3.0s both;
 }

span:nth-child(7) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3.2s both;
 }

span:nth-child(8) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3.4s both;
}

span:nth-child(9) { 
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3.6s both;
}

span:nth-child(10) {
  animation: flipUp 1s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3.8s both;
}

.list-logo-bug {
	animation-name: puls;
	animation-duration: 4s;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(.42,0,.58,1);
	animation-iteration-count: infinite;
}

@keyframes puls {
	from {transform: scale(1) translateY(0)}
	to {transform: scale(.8)translateY(150px)}
	
}
	
@keyframes flipUp {
  from {transform: rotateX(90deg);}
  to {tranform: rotateX(0deg);}
}

@media (max-width: 767px) {
  .flipletters {
	 font-size:2rem;
    display: block !important;
  }
	span {
   display:inline-block;
   margin-left: -18px;
	}
}

/* End Flip Up Letters */

@media screen and (min-width: 800px) {
  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .column {
    flex: 1;
  }

  .reverse {
    flex-direction: row-reverse;
  }
}