/*-------------
Home Section 
--------------*/
.home{
  min-height: 100vh;
  padding: 150px 0;
  border-radius: 0 0 200px 0;
  background-color: var(--main-to-dark-color); 
  position: relative;
  z-index: 1;
}
.home-text h1{
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 34px;
  text-align: center;
  line-height: 45px;
}

.p1 {
    text-transform: uppercase;
    font-weight: 600;
    color: #57d1bc!important;
    font-size: 28px!important;
}
.home-text p{
 font-size: 18px;
text-align: center;
color: #fff;

}
.home .home-btn{
  margin-top: 40px;
}
.home .home-btn .video-play-btn{
  margin-left: 30px;
  height: 50px;
  width: 50px;
  padding: 0;
  font-style: 16px;
  animation:pulse_01 2s ease infinite; 
}
.home .home-btn .video-play-btn:hover{
  animation: none;
  box-shadow: var(--shadow-black-300);
}
.home .home-btn .video-play-btn i{
  line-height: 50px;
}
.home-img{
  position: relative;
}
.home-img img{
  width: 100%;
  border-radius: 32px;
  animation: bounceTop_01 3s ease infinite;
}
.home-img .circle{
  position: absolute;
  z-index: 1;
  height: 400px;
  width: 400px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  bottom: 50%;
  left:50%;
  transform: translate(-50%,50%);
}
.home-img .circle::before{
  content: '';
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 50%;
  left: 30px;
  top: 30px;
  transform-origin: 170px 170px;
  animation: spin_01 10s linear infinite;
}
.effect-wrap .effect{
    position: absolute;
    z-index: -1;
}
.effect-wrap .effect-1{
    left: 20%;
    top: 20%;
    font-size: 20px;
    color: var(--color-2);
    animation: spin_01 5s linear infinite;
}
.effect-wrap .effect-2{
    right: 5%;
    top: 10%;
    font-size: 25px;
    color: rgba(255,255,255,0.5);
    animation: spin_01 5s linear infinite;
}
.effect-wrap .effect-3{
    left: 5%;
    bottom: 30%;
    font-size: 25px;
    color: var(--color-3);
    animation: bounceTop_01 5s linear infinite;
}

/*Features Section
------------------*/
.features .feature-item{
  box-shadow: var(--shadow-black-100);
  margin: 15px;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 24rem;
}
.features .feature-item::before,
.features .feature-item::after{
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s ease;
  opacity: 0;
}
.features .feature-item::before{
  height: 20px;
  width: 20px;
  background-color: var(--color-1);
  left: -20px;
  top:40%;
}
.features .feature-item:hover::before{
  left: 10px;
  opacity: 1;
}
.features .feature-item::after{
  height: 30px;
  width: 30px;
  background-color: var(--color-2);
  right:-30px;
  top: 80%;

}
.features .feature-item:hover::after{
  opacity: 1;
  right: -15px;
}
.features .feature-item .icon{
  height: 60px;
  width: 60px;
  margin:0 auto 30px;
  text-align: center;
  font-size: 30px;
  color: var(--main-color);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}
.features .feature-item .icon::before{
  content: '';
  position: absolute;
  left: 100%;
  top:0;
  width:100%;
  height: 100%;
  background-color: var(--main-color);
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0;
}
.features .feature-item:hover .icon{
  color: #ffffff;
  font-size: 20px;
}
.features .feature-item:hover .icon::before{
  left: 0;
  border-radius: 50%;
  opacity: 1;
}
.features .feature-item .icon i{
  line-height: 60px;
  font-size: 16px;
}
.features .feature-item h3{
  font-size: 22px;
  margin:0 0 20px;
  color: var(--black-900);
  font-weight: 500;
  text-transform: capitalize;

}
.features .feature-item p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: var(--black-400);
  margin:0;
}



   /*------------------

  How It Works Section
  ----------------------*/

  .how-it-works-item{
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;

  }
  .how-it-works-item img{
  	background: #d9cae6;
	padding: 0.5rem;
	width: 200px;
	height: 200px;
	border-radius: 100%;
	box-shadow: var(--shadow-black-100);
	margin-bottom: 10px;
  }
  .how-it-works-item.line-right::before{
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    left: 50%;
    top: 60px;
    background-color: var(--main-color);
    z-index: -1;
  }
  .how-it-works-item .step{
    display: inline-block;
    height: 60px;
    width: 60px;
    background-color: var(--main-color);
    font-size: 25px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 15px;
  }
  .how-it-works-item h3{
    margin:20px 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--black-900);
    text-transform: capitalize;
    color: #fff;
  }
 .hot-it-works .section-title h2{
    color: #fff!important;
  }
  .how-it-works-item p{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: var(--black-400);
    line-height: 26px;
    color: #fff;
  }
  .hot-it-works {
    background: #57d1bc;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

/*job-section*/

.job-listing.d-block.d-sm-flex.pb-3.pb-sm-0.align-items-center {
    border: 2px solid aliceblue;
    padding: 10px;
    cursor: pointer;
    margin: 10px;
}
.job-listing.d-block.d-sm-flex.pb-3.pb-sm-0.align-items-center p{
   
    font-size: 14px;
}
   /*--------------------
  App Screenshots Section
  ----------------------*/
  .screenshot-item{
    margin: 15px;
    border: 2px solid aliceblue;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
  }
  .screenshot-item img{
    width: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
    height: 400px;
  }
  .top-10-blogs p{
    text-align: center;
  }

/*------------------
templates  Section
-------------------*/
 .resume-template {
  background: #57d1bc;
  color: #fff;
 }
 .resume-template h2{
  color: #fff;
 }

  /*------------------
Download App Section
-------------------*/
  .app-download{
    background-image: url('/images/Home/downloadapp.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1; 
  }
  .app-download .section-title h2{
    color: #000;
  }
  .app-download::before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--black-000);
    opacity: 0.8;

  }
  .app-download-item{
    background-color: var(--black-000);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
  }
  .app-download-item i{
    font-size:30px;
    color: var(--main-color);
    display: inline-block;
  }
  .app-download-item h3{
     font-size:22px;
    color: var(--black-900);
    margin: 20px 0;
    font-weight: 500;
    text-transform: capitalize;
  }
  .app-download-item p{
    font-size: 14px;
    color: var(--black-400);
    font-weight: 300;
    margin: 0 0 30px;
    line-height: 26px;
  }
  #jobSection h4{
    font-size: 1rem;
  }
  /*------------------

  How It Works Section
  ----------------------*/


  /*blog section start*/
  #BlogSection {
    height: 22rem;
    cursor: pointer;
}
 #BlogSection p {
  height: 9rem;
  }
  #BlogSection h3 {
    height: 3rem;
}
  /*blog section end*/
   /*job section start*/
  #jobSection {
    height: 20rem;
    cursor: pointer;
}
#jobSection p {
  height: 6rem;
  }

@media only screen and (min-width: 50px) and (max-width: 767px)  {

  .home-img {
    position: relative;
    top: 4em;
}
.home-text {
    position: relative;
    top: -2rem;
}
.home-text h1{
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 34px;
  text-align: center;
  line-height: 45px;
}
.home-text p{
 font-size: 18px;
text-align: center;
color: #fff;

}
.p1 {
    text-transform: uppercase;
    font-weight: 600;
    color: #57d1bc!important;
    font-size: 28px!important;
}

.home .home-btn {
    text-align: center;
    margin: 10px;
}
.home-img .circle{
  position: absolute;
  z-index: 1;
  height: 300px;
  width: 300px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  bottom: 50%;
  left:50%;
  transform: translate(-50%,50%);
}
.home-img .circle::before{
  content: '';
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 50%;
  left: 25px;
  top: 25px;
  transform-origin: 125px 125px;
  animation: spin_01 10s linear infinite;
}
.how-it-works-item .step {
    display:none;
    
}
.how-it-works-item.line-right::before {
    content: '';
    display: none;
}
}