/* home section start */

.home-section .main-area{
  height: calc(100vh - 62px);
  min-height: 706px;
  position: relative;
}
.home-section .main-area .left-area{
  opacity: 0;
  margin-bottom: 100px;
}
.home-section .main-area .left-area p{
  color: var(--textcolor);
  font-size: 20px;
  font-weight: 300;
}
.home-section .main-area .left-area .headline{
  color: var(--textcolor);
  font-size: 62px;
  font-weight: 700;
}
.home-section .main-area .right-area{
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullyloaded .home-section .main-area .left-area{
  animation: homeleftanim 1s both ease;
}
.home-section .down-arrow-wrapper{
  position: absolute;
  bottom: 30px;
  width: 50px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.home-section .down-arrow-wrapper:hover  i{
  color: rgb(var(--primarycolor));
}
.home-section .down-arrow-wrapper .icon{
  text-align: center;
  animation: downarrowanim 2s infinite ease;
}
.home-section .down-arrow-wrapper i{
  font-size: 30px;
  font-weight: bold;
  transition: all .5s;
}

.home-section .home-social-icons{
  position: absolute;
  bottom: 15px;
  left: 0;
  height: 50px;
  width: 100%;
  display: flex;
}
.home-section .home-social-icons .icon i{
  font-size: 20px;
  font-weight: 300;
  color: var(--textcolor)
}
.home-section .home-social-icons .icon:hover{
  background: rgb(var(--primarycolor));
}
.home-section .home-social-icons .icon{
  height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid var(--textcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
  transition: all .5s;
}
.home-section .image-area{
  height: 55vh;
  min-height: 330px;
  width: 70%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-section .image-area:hover .main-image{
   filter: grayscale(0);
}

.home-section .image-shape{
  height: 100%;
  width: 100%;
  position: absolute;
  left: 10%;
  background: transparent;
  border-radius: 500px;
  transform: translate(-15%, 0%);
  border: 3px solid rgb(var(--primarycolor));
}

.fullyloaded .home-section .image-shape{
  animation: himageshapeanim 1s both ease;
}

.home-section .main-image{
  border-radius: 500px;
  background: red;
  width: 100%;
  height: 100%;
  background: url(../images/home/lifestyle_min.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  position: relative;
  transform: translate(15%, 0%);
  box-shadow: 7px 7px 17px rgb(0 0 0 / 10%);
  display: flex;
  filter: grayscale(1);
  transition: all .5s;
}

.fullyloaded .home-section .main-image{
  animation: mainimageanim 1s both ease;
}

@media (min-width: 1200px){
  h1 {
      font-size: 4rem;
  }
}


@keyframes downarrowanim {
  0%{
    transform: translateY(0%);
  }
  50%{
    transform: translateY(50%);
  }
  100%{
    transform: translateY(0%);
  }
}
@keyframes himageshapeanim {
  to{
    transform: translate(0%, 0%);
  }
}
@keyframes mainimageanim {
  to{
    transform: translate(0%, 0%);
  }
}
@keyframes homeleftanim {
  0%{
    transform: translateY(100px);
    opacity: 0;
  }

  100%{
    transform: translateY(0px);
    opacity: 1;
  }
}


@media (max-width: 991px) {
  .home-section .main-area .left-area .headline {
    font-size: 40px;
  }
  .home-section .main-area .left-area p {
    font-size: 17px;
  }

}

@media (max-width: 767px) {
  .home-section .main-area {
    height: unset;
  }
  .home-section .main-area .left-area {
    margin-top: 35px;
    margin-bottom: 60px;
  }
  .home-section .image-area {
    height: 400px;
  }
}



/* home section end */




/* service section start */

.service-section{
  background: var(--secondarySectionbg);
}
.service-section .services{
  margin-top: 30px;
}
.service-section .services .item{
  background: white;
  width: 100%;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border: 1px solid #ebebeb;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
  transition: box-shadow 0.5s ease;
  margin-bottom: 20px;
}
.service-section .services .item:hover{
  box-shadow: 0px 20px 30px rgb(0 0 0 / 10%);
    border: 1px solid rgb(var(--primarycolor));
}
.service-section .services .item .header{
  width: 100%;
  display: flex;
  align-items: center;
}
.service-section .services .item .header .icon{
  padding: 0px 15px 0px 0px;
}
.service-section .services .item .header i{
  font-size: 40px;
  color: rgb(var(--primarycolor));
}
.service-section .services .item .header .headline h4{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}
.service-section .services .item .description{
  width: 100%;
  margin-top: 20px;
}
.service-section .services .item .description p{
  font-size: 15px;
  font-weight: 300;
  color: var(--secondarytextcolor);
}

/* service section end */

/* about section start */

.about-section .right-area .item {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid rgb(var(--primarycolor));
    padding: 15px;
    border-radius: 20px;
    transition: box-shadow 0.5s ease;
}
.about-section .right-area .item:hover {
    box-shadow: 0px 20px 30px rgb(0 0 0 / 10%);
}

.about-section .right-area .item .sl-area {
    display: flex;
    height: fit-content;
    width: fit-content;

}
.about-section .right-area .item .sl-area p {
    font-size: 25px;
    font-weight: bold;
    color: rgb(var(--primarycolor));
    margin-bottom: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primarycolor),0.1);
    border: 1px solid rgba(var(--primarycolor),0.3);
}
.about-section .right-area .item .describe-area {
    padding-left: 17px;
}
.about-section .right-area .item .describe-area h4{
    font-weight: bold;
    font-size: 22px;
}
.about-section .right-area .item .describe-area p{
    font-weight: 300;
    font-size: 14px;
    color: var(--secondarytextcolor);
    margin-bottom: 0;
}


/* about section end */

/* stat section start */

.stat-section{
  background: url(../images/home/stat/stat_bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
.stat-section .section-bg-overly{
  width: 100%;
  background: #292929c7;
}
.stat-section .section-header, .stat-section .section-description{
  color:white;
}

.stat-section .main-stat{
  margin-top: 30px;
}

.stat-section .main-stat .item:last-child{
  margin-right: 0px;
}
.stat-section .main-stat .item i{
  color: white;
  font-size: 40px;
}
.stat-section .item .count{
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-left: 15px;
}
.stat-section .description{
  color: white;
  font-size: 14px;
  font-weight: 300;
}

@media (max-width:767px) {
  .stat-section .main-stat .item i {
    font-size: 30px;
  }
  .stat-section .item .count {
    font-size: 30px;
  }

}


/* stat section end  */

/* blog section start */

.blog-section{
  background: var(--secondarySectionbg);
}
.blog-section .recent-blogs .item{
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #ebebeb;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
  transition: all .5s;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
.blog-section .recent-blogs .item:hover .blog-title{
  color: rgb(var(--primarycolor));
}
.blog-section .recent-blogs .item:hover {
  box-shadow: 0px 20px 30px rgb(0 0 0 / 10%);
  border: 1px solid rgb(var(--primarycolor));
}

.blog-section .recent-blogs .item .header i{
  color: rgb(var(--primarycolor));
  font-size: 20px;
}
.blog-section .recent-blogs .item .header .date{
  color: var(--secondarytextcolor);
  font-size: 14px;
  font-weight: 600;
  margin-left: 12px;
}
.blog-section .recent-blogs .item .blog-title{
  color: var(--textcolor);
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  transition: all .5s;
}
.blog-section .recent-blogs .item .blog-description{
  color: var(--secondarytextcolor);
  font-size: 14px;
  font-weight: 300;
}

.blog-section .item .read-more-wrapper p{
  color: rgb(var(--primarycolor));
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  margin-right: 8px;
}
.blog-section .item .read-more-wrapper i{
  color: rgb(var(--primarycolor));
  font-size: 14px;
  font-weight: 700;
  transition: all .5s;
}


.blog-section .item:hover .read-more-wrapper i{
  animation: rightarrowAnim 1s infinite;
  animation-timing-function: ease;
}

@keyframes rightarrowAnim {
  0%{
      padding-left: 0px;
  }
  50%{
      padding-left: 10px;
  }
  1000%{
      padding-left: 0px;
  }
}


@media (max-width: 991px) {
  .blog-section .e-block1{
    width: 100%;
  }
}



/* blog section end  */


/* contsct section start */


.contact-section{
  background: var(--secondarySectionbg);

}
.contact-section .contact-info{
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgb(var(--primarycolor));
  box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
  transition: all .5s;
  margin-bottom: 24px;

}


.contact-section .contact-info:hover {
  box-shadow: 0px 20px 30px rgb(0 0 0 / 10%);
  border: 1px solid rgb(var(--primarycolor));

}
.contact-section .contact-info .item {
  width: 100%;
  align-items: flex-start;
  display: flex;
  margin-bottom: 15px;
}
.contact-section .contact-info .item .icon {
  padding-top: 6px;
}
.contact-section .contact-info .item .icon i{
  color: rgb(var(--primarycolor));
  font-size: 30px;
}
.contact-section .contact-info .item .info{
  padding-left: 20px;
}
.contact-section .contact-info .item .info .headline{
  color: var(--textcolor);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-section .contact-info .item .info .text{
  color: var(--secondarytextcolor);
  font-size: 16px;
  font-weight: 400;
}



/* contsct section end */


/* newsletter section start */

.newsletter-section{
  background: rgb(var(--primarycolor));
}
.newsletter-section .section-header{
  font-size: 40px;
  color: #ffffff;
}

.newsletter-section .inline-button {
  font-weight: bold;
  color: rgb(var(--primarycolor));
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 3rem;
  background-color: var(--textcolor);
  box-shadow: 0px 9px 20px rgb(0 0 0 / 10%);
  border: 2px solid rgb(var(--primarycolor));
  transition: all .5s;
}

.newsletter-section .inline-button:hover {
  color: var(--textcolor);
  background-color: rgb(var(--primarycolor));
  border: 2px solid var(--textcolor);

}
.newsletter-section .form-control {
  background-color: #ffffff;
  border: none;
}

/* newsletter section end */


/* project section start */


.project-section .swiper-button-next, .project-section .swiper-button-prev{
  width: 40px;
  height: 40px;
  background: rgb(var(--primarycolor));
  border-radius: 50%;
  top: 100%;
}
.project-section .swiper-button-next:after, .project-section .swiper-button-prev:after {
    display: none;
}
.project-section .swiper-button-next i, .project-section .swiper-button-prev i {
    font-size: 17px;
    color: #ffffff;
}
.project-section .swiper-button-prev {
    left: 50%;
    transform: translateX(-200%) translateY(-50%);

}
.project-section .swiper-button-next {
  right: 50%;
  transform: translateX(200%) translateY(-50%);

}
.project-section .swiper {
  padding-bottom: 20px;
}


.projects .item{
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.projects .item:hover .image{
  filter: grayscale(0);
}
.projects .item .image{
  width: 100%;
  height: 150px;
  position: relative;
  filter: grayscale(1);
  transition: all .5s;
}
.projects .item .project-icon{
  position: absolute;
  width: fit-content;
  height: fit-content;
  display: flex;
  background: rgb(var(--primarycolor));
  padding: 8px 10px;
  top: -20px;
  right: 15px;
  border-radius: 5px;
}


.projects .item .project-icon .icon i{
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  
}





.projects .item .info{
  width: 100%;
  padding: 0px 15px 15px 15px;
  position: relative;
}


.projects .item .info .title{
  color: var(--textcolor);
  font-size: 18px;
  font-weight: 700;
  transition: all .5s;
}
.projects .item .info .type{
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 12px;
}
.projects .item .info .description{
  color: var(--secondarytextcolor);
  font-size: 12px;
  font-weight: 300;

}
.projects .item .info .read-more-wrapper p{
  color: rgb(var(--primarycolor));
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  margin-right: 8px;
}
.projects .item .info .read-more-wrapper i{
  color: rgb(var(--primarycolor));
  font-size: 14px;
  font-weight: 700;
  transition: all .5s;
}

.projects .item:hover .title{
  color: rgb(var(--primarycolor));
}


.projects .item:hover .read-more-wrapper i{
  animation: rightarrowAnim 1s infinite;
  animation-timing-function: ease;
}

@keyframes rightarrowAnim {
  0%{
      padding-left: 0px;
  }
  50%{
      padding-left: 10px;
  }
  1000%{
      padding-left: 0px;
  }
}




/* project section end */