/*///////////////////
Hero Home
///////////////////*/
.hero-home {
    background-color: var(--lightWhite);
    padding: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
}

.text{
  text-shadow: none;
}





/*///////////////////
Hero Home
///////////////////*/


.step-home-card-img{
  width: 68%;
  border-bottom: 20px;
  border-radius: 50%;
  margin-right: 16%;
}

.step-home-card-text{
  text-align: center;
  margin-left: 24%;
  padding-bottom: 20px;
}

.step-home-card-p{
  font-size: 18px;
}

.step-home-card-h6{
  font-family: "Sue Ellen Francisco";
  font-size: 40px;
  padding-bottom: 30px;
}


/*///////////////////
Carousel/Portfolio Home
///////////////////*/





/*///////////////////
Carousel/Portfolio Home
///////////////////*/

/*///////////////////
Services Home
///////////////////*/
.btn.cube.cube-hover.services{
    margin-bottom: 30px;
}

.home-services-p{
    font-family: "Kalam";
    font-size: 18px;
    padding-bottom: 50px;
    width: 60%;
    margin: 0;
}
.col-4.home{
    border-radius: 20px;
    height: 250px;
    width: 350px;
    justify-content: center;
    margin: 10px;
}
.home-services{
    background-image: linear-gradient( var(--lightGreen), var(--lightWhite));
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 150px;
    padding-left: 150px;}

.home-services-h6{
    font-family: "Sue Ellen Francisco";
    font-size: 60px;
    padding-bottom: 30px;
}

.home-services-div{
    justify-content: center;
}

.home-services-img-div{
    border-radius: 20px;
    height: 150px;
    width: 250px;
}

.home-services-img{
border-radius: 20px;
width: 250px;
height: 150px;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
transition: transform ease 0.5s, box-shadow ease 0.5s;
}
.home-services-caption{
    font-family: "Sue Ellen Francisco";
    font-size:25px;
    padding-top: 10px;
}

.home-services-img:hover {
    transform: scale(1.05, 1.05);

    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
}





/*///////////////////
Services Home
///////////////////*/

/*///////////////////
About Home
///////////////////*/
.home-about{
 
    padding: 150px;
    padding-top: 100px;
    background-image: linear-gradient( var(--lightWhite), var(--lightGreen));
}

.home-about-h6{
    font-family: "Sue Ellen Francisco";
    font-size: 60px;
    padding-bottom: 30px;
}

.home-about-p{
    font-family: "Kalam";
    font-size: 18px;
    margin: 0;
}
/*///////////////////
Spinning Cube
///////////////////*/
.cube-container {
    width: 204px;
    height: 204px;
    perspective: 800px;
    margin: 50px auto;
  }
  
  .home-cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 8s infinite linear;
  }
  
  .face {
    position: absolute;
    width: 204px;
    height: 204px;
    color: rgb(214, 21, 21);
    font-size: 18px;
    text-align: center;
    line-height: 200px;
    background: transparent;
    opacity: 0.9;
    border: 2px solid;
    border-image: linear-gradient(to right, var(--darkGreen), var(--lightGreen))1;
    box-shadow: 0 0 100px var(--darkGreen);
  }
  
  .cube-front {
    transform: translateZ(100px);
  }
  
  .cube-back {
    transform: rotateY(180deg) translateZ(100px);
  }
  
  .right2 {
    transform: rotateY(90deg) translateZ(100px);
  }
  
  .left2 {
    transform: rotateY(-90deg) translateZ(100px);
  }
  
  .top {
    transform: rotateX(90deg) translateZ(100px);
  }
  
  .bottom {
    transform: rotateX(-90deg) translateZ(100px);
  }
  
  .cube-container:hover .home-cube {
    animation-play-state: paused;
  }
  
  @keyframes rotate {
    0% {
      transform: rotateX(0) rotateY(0) rotateZ(0);
    }
  
    100% {
      transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
  }
  
  .btn.cube.cube-hover.about{
    margin-top: 50px;
}





/*///////////////////
About Home
///////////////////*/

/*///////////////////
Contact Home
///////////////////*/
.home-contact{
    padding: 150px;
    padding-top: 0;
    padding-bottom: 0px;
    background-image: linear-gradient( var(--lightGreen), var(--lightWhite));
}

.home-contact-text-h6{
  font-family: "Sue Ellen Francisco";
    font-size: 60px;
    padding-bottom: 30px;
}

.btn.cube.cube-hover.contact{
  margin-top: 50px;
}

.home-contact-p{
  font-family: "Kalam";
  font-size: 18px;
}







/*///////////////////
Contact Form
///////////////////*/
.input, .button2 {
  width: 100%;
  height: 40px!important;
  position: relative;
  padding: 10px!important;
  border: 0.1px solid #575cb5;
}

form{
padding-left:50px;
}

.button2 {
  background: #5be3a8;
  border: none;
}

.wrapper {
  position: relative;
  transform: skewY(-14deg);
  margin-top: 50px;
}

.wrapper li {
  position: relative;
  list-style: none;
  width: 200px;
  z-index: var(--i);
  transition: 0.3s;
  color: white;
}

.wrapper li::before{
  position: absolute;
  content: '';
  background: #5be3a8;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  transform-origin: right;
  transform: skewY(45deg);
  transition: 0.3s;
}

.wrapper li::after{
  position: absolute;
  content: '';
  background: #5be3a8;
  width: 200px;
  height: 40px;
  top: -40px;
  left: 0;
  transform-origin: bottom;
  transform: skewX(45deg);
  transition: 0.3s;
}

.wrapper li:nth-child(1)::after, .wrapper li:nth-child(1)::before {
  background-color: #B7F7EC;
}

.wrapper li:nth-child(2)::after, .wrapper li:nth-child(2)::before {
  background-color: #95f1d4;
}

.wrapper li:nth-child(3)::after, .wrapper li:nth-child(3)::before {
  background-color: var(--darkGreen);
}



li .input {
  outline: none;
  border: none;
  color: black;
  margin: 0!important;
  border-radius: 0!important;
}

input[type="submit"]{
  width: 200px;
}

input[type="text"],input[type="email"]{
  height: 40px;
  box-shadow: none;
}

li .input::placeholder {
  color: black;
}

li:nth-child(1) .input {
  background: #B7F7EC;
}

li:nth-child(2) .input {
  background: #95f1d4;
}

li:nth-child(3) .input {
  background: var(--darkGreen);
}

li:nth-child(1) .input:focus {
  outline: none;
  border: 3.5px solid #B7F7EC;
}

li:nth-child(2) .input:focus {
  outline: none;
  border: 3.5px solid #95f1d4;
}

li:nth-child(3) .input:focus {
  outline: none;
  border: 3.5px solid var(--darkGreen);
}

.wrapper li:hover {
  transform: translateX(-20px);
}
/*///////////////////
Contact Form
///////////////////*/








/*///////////////////
Contact Home
///////////////////*/
/*///////////////////

///////////////////*/
.myCard {
  background-color: transparent;
   width: 300px;
   height:200px;
  perspective: 1000px;
  margin-bottom: 30px;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.innerCard {
  position: relative;
  width: 250px;
  height:150px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.myCard:hover .innerCard {
  transform: rotateY(180deg);
}

.frontSide,
.backSide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 250px;
  height:150px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid var(--darkGreen);
  border-radius: 30px;
  color: white;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);

  font-weight: 700;
}

.frontSide,
.frontSide::before {
  background-image: linear-gradient(160deg, #21e9ff 0%, #0fd780 100%);
}

.backSide,
.backSide::before {
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.backSide {
  transform: rotateY(180deg);
}

.frontSide::before
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 105%;
  height: 105%;
  position: absolute;
  z-index: 0;
  border-radius: 30px;
  filter: blur(20px);
  animation: animate 2s linear infinite;

}

@keyframes animate {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
  }
}

.trial{
  height: 500px;
  background-image: linear-gradient( var(--lightGreen), var(--lightWhite));
}

.col-8.home-about-cube{
  padding-left: 200px;
}

.home-services-text{
  padding-left: 15px;
}

@media only screen and (min-width: 1297px) {
  .home-contact{
    min-height: 400px;
  }
}

@media only screen and (max-width: 1337px) {
  .hero-home-img, .hero-services-img, .hero-about-img{
    margin-top: 100px;
  }
}

@media only screen and (max-width: 1100px) {
.hero-home, .carousel-grid, .home-services, .home-about, .home-contact, .calendly-area, .services-further{
  padding: 50px;
  padding-bottom: 100px;
}
.banner-home{
  padding-left: 0px;
}
.hero-home-img, .hero-services-img, .hero-about-img, .hero-links-img, .hero-contact-img{
  margin-top: 110px;
height: 330px;
width: 330px;
}

.hero-portfolio-img{
  margin-top: 130px;
height: 250px;
width: 330px;
}
.banner-h1, .carousel-text-h5, .home-services-h6, .home-about-h6, .home-contact-text-h6, .cal-text-h5, .services-text-h6, .wrapper-scroll-h6, .about-jobs-h6{
  font-size: 50px;
}
.banner-p, .carousel-text-p, .home-services-p, .home-about-p, .home-contact-p, .cal-text-p, .step-home-card-p, .services-text-p, .wrapper-scroll-p, .about-jobs-p, .timeline-p{
  font-size: 15px;
}
.carousel-text{
  margin-left: 0;
}
.laptop-stencil-div{
  margin-left: 0;
}
.col-6.step-area-card-img{
  height: 100px;
}
.step-area-card-h6, .step-home-card-h6{
  font-size: 30px;
}
.footer-logo-img{
  height: 60px;
  width: 100px;
}
.footer-widget .social-link li a i {
  height: 20px;
  width: 20px;
  font-size: 14px;
  line-height: 20px;
}

}


@media only screen and (max-width: 991px) {
 
  .home-services-p{
    width: 100%;
  }

  .row.align-items-center.justify-align-center.contact  > :nth-child(1) { order: 2; }
  .row.align-items-center.justify-align-center.contact > :nth-child(2) { order: 1; }

  .row.align-items-center.justify-align-center.carousel  > :nth-child(1) { order: 2; }
  .row.align-items-center.justify-align-center.carousel > :nth-child(2) { order: 1; }

 .laptop-stencil-div{
  width: 480px;
  margin: 50px auto;
  }
  .cube-container{
    margin-top: 90px;
  }
 form{
  padding-top: 10px;
    width: 300px;
    margin: 50px auto;
    }
    .home-contact{
      padding-bottom: 0px;
    }
    .step-home-card-img {
      width: 29%;
    border-bottom: 20px;
    border-radius: 50%;
    margin-right: 36%;
  }
  .step-home-card-text {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    margin-left: 0;
  }}


@media only screen and (max-width: 941px) {
  .flaticon-email{
    visibility: hidden;
    display: none;
  }
}


@media only screen and (max-width: 900px) {

  .text{
    font-size: 12px;
  }
 .col-8.home-about-cube {
  padding-left: 50px;
}


}

@media only screen and (max-width: 865px) {
  .col-2.useful{

  }
  .footer-logo-img{
    height: 50px;
    width: 70px;
    padding-top: 10px;
    margin-left: -20px;
  }
  .footer-widget .social-link li a i {
    height: 20px;
    width: 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .footer-list li a{
font-size: 11px;
  }
  .footer-widget p{
    font-size: 11px;
    margin-top: 50px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 787px) {
  .col-6.step-area-card-img{
    height: 130px;
    width: 130px;
  }
  .row.align-items-center.justify-align-center.step{
    margin-bottom: 20px;
  }
  .hero-home{
    padding-top: 0px;
  }

}

@media only screen and (max-width: 767px) {
  .hero-home-img, .hero-services-img, .hero-links-img ,.hero-contact-img ,.hero-about-img{
    margin-top: 150px;
  }
}



@media only screen and (max-width: 696px) {
.col-2.useful{
  padding-top: 21px;
}
.hero-home-img, .hero-services-img, .hero-about-img, .hero-links-img ,.hero-contact-img{
  height: 290px;
  width: 290px;
  margin-top: 100px;
}
.hero-portfolio-img{
  height: 200px;
  width: 290px;
  margin-top: 90px;
}
.banner-home{
  padding-top: 50px;
}

.banner-h1, .carousel-text-h5, .home-services-h6, .home-about-h6, .home-contact-text-h6, .cal-text-h5, .services-text-h6, .wrapper-scroll-h6, .about-jobs-h6{
  font-size: 40px;
}
.date{
  font-size: 25px;
}

.banner-p, .carousel-text-p, .home-services-p, .home-about-p, .home-contact-p, .cal-text-p, .services-text-p, .wrapper-scroll-p, .about-jobs-p, .timeline-p{
  font-size: 14px;
}
.wrapper-scroll-p{
  padding-left: 25px;
  padding-right: 25px;
}
}
@media only screen and (max-width: 550px) {
  .hero-home-img, .hero-services-img,.hero-about-img, .hero-links-img {
    height: 230px;
    width: 230px;
    margin-top: 100px;
  }
  .hero-portfolio-img {
    height: 185px;
    width: 230px;
    margin-top: 100px;
  }
  .hero-home, .carousel-grid, .home-services, .home-about, .home-contact, .calendly-area, .about-jobs, .services-further{
    padding: 25px;
    padding-bottom: 50px;
  }
  .home-about{
    padding: 25px;
    padding-bottom: 90px;
  }
  .home-contact{
    padding-bottom: 0px;
  }
  .banner-home{
    padding-top: 0;
  }
  .hero-home-img{
    margin-top: 50px;
  }
  .laptop-stencil.home{
    height: 150px;
    width: 300px;
  }
  .carousel-div{
    height: 130px!important;
    width: 265px;
    padding-left: 34px;
    padding-top: 6px;
    border-radius: 5px;
  }
  .carousel-img{
    height: 130px!important;
    border-radius: 5px;
  }
  .laptop-stencil-div {
    width: 300px;
    margin: 50px auto;
}
.col-md-3.col-sm-12{
padding-left: 0;
}
.step-home-card-img {
  width: 50%;
  border-bottom: 20px;
  border-radius: 50%;
  margin-right: 26%;
}
}





@media only screen and (max-width: 466px) {
  .hero-home-img, .hero-services-img, .hero-about-img,.hero-links-img,.hero-contact-img{
    height: 125px;
    width: 125px;
    margin-top: 150px;
  }
  .col-md-6.hero{
    padding: 0px;
  }
  .footer-widget h3 {
    margin-top: 0;
    font-size: 19px;
  }
  .row.align-items-center.justify-align-center.footer{
    justify-content: flex-start;
  }
  .col-2.useful {
    padding-top: 41px;
}
.hero-portfolio-img{
  height: 130px;
  width: 190px;
  margin-top: 150px;
}
.col-md-5.col-sm-12.carousel{
  padding: 0px;
}
.col-md-4.col-sm-12.home-about-text{
  padding: 0;
}

.a-button{
  padding-left: 0;
}
.col-md-5.col-sm-12.home-contact-text, .col-md-4.col-sm-12.services-more-text, .col-md-8.col-sm-12.home-services-text, .step-area-text{
  padding: 0;
}
.home-services-text{
  padding-left: 0;
}
.nav-logo {
  padding-left: 15px;
}
.hamburger{
  padding-right: 40px;
}
}

@media only screen and (max-width: 400px) {
  .hero-portfolio-img{
    height: 86px;
width: 149px;
margin-top: 114px;
  }
}