/*=======================================================================
[1] Theme Default CSS 
=========================================================================*/
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1xlEA.ttf) format('truetype');
}
html,
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  line-height: 1.5;
  font-weight: 400;
  vertical-align: baseline;
  background: #ffffff;
  color: #444444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1199px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 991px) {
  html {
    font-size: 45%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 40%;
  }
}
@media only screen and (max-width: 575px) {
  html {
    font-size: 35%;
  }
}
@media only screen and (max-width: 479px) {
  html {
    font-size: 30%;
  }
}
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #000000;
}
h1 {
  font-size: 70px;
  line-height: 1.2;
}
h2 {
  font-size: 60px;
  line-height: 1.2;
}
h3 {
  font-size: 36px;
  line-height: 1.5;
}
h4 {
  font-size: 20px;
  line-height: 1.5;
}
p {
  line-height: 1.5;
  margin: 0 0 20px 0;
}
a {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear:after {
  clear: both;
  content: "";
  display: block;
}
.wrapper {
  overflow: hidden;
}
.bg-accent {
  background: #f8f8f8;
}
.bg-accent2 {
  background: #f2f2f2;
}
.section-space {
  padding: 100px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding: 90px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-space {
    padding: 80px 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .section-space {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 479px) {
  .section-space {
    padding: 60px 0;
  }
}
.position-relative {
  position: relative;
}
.row.gutters-40 {
  margin-left: -20px;
  margin-right: -20px;
}
.row.gutters-40 > [class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}
/*=======================================================================
[2] ScrollUp Style
=========================================================================*/
.scrollUp {
  overflow: hidden;
  position: fixed;
  height: 40px;
  width: 40px;
  line-height: 40px;
  bottom: -50px;
  right: 20px;
  text-align: center;
  z-index: 9999;
  background-color: #6451f6;
  display: block;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.scrollUp i {
  display: inline-block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.scrollUp:hover,
.scrollUp:focus {
  color: #ffffff;
}
.scrollUp:hover i,
.scrollUp:focus i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
}
.scrollUp.back-top {
  bottom: 20px;
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*=======================================================================
[03] Preloader Style        
=========================================================================*/
#preloader {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
}
.tlp-preloader .animation-preloader {
  position: relative;
  z-index: 1;
}
.tlp-preloader .animation-preloader img {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.7);
  animation: zoominout 2s infinite linear;
  transition: all 0.9s ease-in-out;
}
.tlp-preloader .animation-preloader .tlp-spinner {
  animation: rotateZ 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: #5a49f8;
  height: 120px;
  width: 120px;
}
@keyframes rotateZ {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes zoominout {
  0% {
    transform: translateY(-50%) translateX(-50%) scale(0.7);
  }
  50% {
    transform: translateY(-50%) translateX(-50%) scale(1);
  }
  100% {
    transform: translateY(-50%) translateX(-50%) scale(0.7);
  }
}
/*=======================================================================
[4] Section Heading  Styles
=========================================================================*/
.section-heading {
  text-align: center;
  margin-bottom: 6rem;
}
.section-heading h2 {
  font-weight: 600;
  font-size: 36px;
  color: #000000;
}
@media only screen and (max-width: 991px) {
  .section-heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
.section-heading p {
  font-size: 16px;
  color: #252525;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .section-heading p {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .section-heading p {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading p {
    width: 90%;
  }
}
@media only screen and (max-width: 575px) {
  .section-heading p {
    width: 100%;
  }
}
/*=======================================================================
[5] Button Styles
=========================================================================*/
.inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.inline li {
  margin-right: 15px;
  margin-bottom: 10px;
}
.buy-btn {
  padding: 10px 40px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #fff;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.buy-btn:hover {
  color: #fffefe;
  box-shadow: none;
  background-color: transparent;
}
@media (min-width: 480px) and (max-width: 767px) {
  .buy-btn {
    padding: 12px 30px;
  }
}
@media (min-width: 321px) and (max-width: 479px) {
  .buy-btn {
    padding: 10px 25px;
  }
}
@media only screen and (max-width: 320px) {
  .buy-btn {
    padding: 8px 20px;
  }
}
.ghost-btn {
  padding: 10px 40px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #fffefe;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ghost-btn:hover {
  color: #000000;
  box-shadow: none;
  background-color: #fff;
}
.ghost-btn:focus {
  color: #000000;
}
@media (min-width: 480px) and (max-width: 767px) {
  .ghost-btn {
    padding: 12px 30px;
  }
}
@media (min-width: 321px) and (max-width: 479px) {
  .ghost-btn {
    padding: 10px 25px;
  }
}
@media only screen and (max-width: 320px) {
  .ghost-btn {
    padding: 8px 20px;
  }
}
/*=======================================================================
[6] Site Banner Styles
=========================================================================*/
.preview-banner-area {
  overflow: hidden;
  padding: 90px 0;
  position: relative;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 1199px) {
  .preview-banner-area {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 991px) {
  .preview-banner-area {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .preview-banner-area {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 575px) {
  .preview-banner-area {
    padding: 50px 0;
  }
}
.preview-banner-area .logo-area {
  margin-bottom: 110px;
  width: 60%;
}
.preview-banner-area .logo-area a {
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .preview-banner-area .logo-area {
    margin-bottom: 30px;
  }
}
.preview-banner-area .preview-title {
  text-align: left;
  margin-bottom: 0;
}
.preview-banner-area .preview-title .fixed-text {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}
@media only screen and (max-width: 991px) {
  .preview-banner-area .preview-title .fixed-text {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .preview-banner-area .preview-title .fixed-text {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .preview-banner-area .preview-title .fixed-text {
    font-size: 26px;
  }
}
.preview-banner-area .preview-title .cd-words-wrapper {
  font-weight: 300;
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 36px;
  top: 15px!important;
}
@media only screen and (max-width: 991px) {
  .preview-banner-area .preview-title .cd-words-wrapper {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .preview-banner-area .preview-title .cd-words-wrapper {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .preview-banner-area .preview-title .cd-words-wrapper {
    font-size: 24px;
  }
}
.preview-banner-area .preview-title .cd-words-wrapper:before {
  content: "";
  border-bottom: 2px solid #fff;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.preview-banner-area .cd-intro {
  margin: 0!important;
}
.preview-banner-area .cd-headline.clip .cd-words-wrapper::after {
  display: none;
}
.preview-banner-area .fixed-text-2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .preview-banner-area .fixed-text-2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .preview-banner-area .fixed-text-2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .preview-banner-area .fixed-text-2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.preview-banner-area p {
  color: #fff;
  width: 65%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .preview-banner-area .animated-buble {
    display: none;
  }
}
.preview-banner-area .animated-buble li {
  position: absolute;
  z-index: 0;
}
.preview-banner-area .animated-buble li:nth-child(1n) {
  top: -300px;
  left: -300px;
  right: inherit;
  bottom: inherit;
}
.preview-banner-area .animated-buble li:nth-child(2n) {
  top: -74px;
  left: 145px;
  right: inherit;
  bottom: inherit;
}
.preview-banner-area .animated-buble li:nth-child(3n) {
  bottom: -70px;
  left: 30%;
  right: inherit;
  top: inherit;
}
.preview-banner-area .animated-img {
  position: absolute;
  right: -390px;
  top: 0;
}
@media only screen and (max-width: 1600px) {
  .preview-banner-area .animated-img {
    right: -800px;
  }
}
@media only screen and (max-width: 1199px) {
  .preview-banner-area .animated-img {
    display: none;
  }
}
.preview-banner-area .has-animation.animated-img > div {
  transform: translateX(200px) translateY(-150px);
  transition: all 2s ease-in-out;
}
.preview-banner-area .has-animation.animated-img.active-animation > div {
  transform: translateX(0) translateY(0);
}
/*=======================================================================
[7] Main Body Styles
=========================================================================*/
.main-body-area {
  background-color: #fff;
  padding: 103px 0 60px;
}
@media only screen and (max-width: 1199px) {
  .main-body-area {
    padding: 93px 0 50px;
  }
}
@media only screen and (max-width: 991px) {
  .main-body-area {
    padding: 83px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .main-body-area {
    padding: 73px 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .main-body-area {
    padding: 63px 0 20px;
  }
}
@media only screen and (max-width: 479px) {
  .main-body-area {
    padding: 53px 0 10px;
  }
}
.main-body-area .product-box {
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.main-body-area .product-box:hover .product-box-img:before {
  opacity: 1;
  visibility: visible;
}
.main-body-area .product-box:hover .product-box-img a.view-icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.main-body-area .product-box .product-box-img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-body-area .product-box .product-box-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.main-body-area .product-box .product-box-img:before {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(100, 81, 246, 0.9);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.main-body-area .product-box .product-box-img:hover {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.35);
}
.main-body-area .product-box a.view-icon {
  border-radius: 50%;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  color: #fffefe;
  position: absolute;
  top: 110%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 45px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.main-body-area .product-box a.view-icon i {
  margin-top: 25px;
}
.main-body-area .product-box a.view-icon i:before {
  margin-left: 0;
  font-size: 48px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-body-area .product-box a.view-icon i:before {
    margin-left: 0;
    font-size: 42px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-body-area .product-box a.view-icon i:before {
    margin-left: 0;
    font-size: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .main-body-area .product-box a.view-icon i:before {
    margin-left: 0;
    font-size: 36px;
  }
}
@media (min-width: 321px) and (max-width: 479px) {
  .main-body-area .product-box a.view-icon i:before {
    margin-left: 0;
    font-size: 32px;
  }
}
@media only screen and (max-width: 320px) {
  .main-body-area .product-box a.view-icon i:before {
    margin-left: 0;
    font-size: 30px;
  }
}
.main-body-area .product-box a.view-icon:hover {
  color: #cacaca;
}
.main-body-area .product-box .product-box-content {
  text-align: center;
  padding: 14px 0;
}
.main-body-area .product-box .product-box-content div {
  color: #222222;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 20px;
}
.main-body-area .product-box .product-box-content div a {
  color: #000000;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.main-body-area .product-box .product-box-content div a:hover {
  color: #6451f6;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-body-area .product-box .product-box-content div {
    font-size: 18px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .main-body-area .product-box .product-box-content div {
    font-size: 17px;
  }
}
@media only screen and (max-width: 479px) {
  .main-body-area .product-box .product-box-content div {
    font-size: 16px;
  }
}
/*=======================================================================
[8] Template Feature Area Styles 
=========================================================================*/
.template-feature {
  background-color: #f7fbfd;
  padding: 104px 0 61px;
}
@media only screen and (max-width: 1199px) {
  .template-feature {
    padding: 94px 0 51px;
  }
}
@media only screen and (max-width: 991px) {
  .template-feature {
    padding: 84px 0 41px;
  }
}
@media only screen and (max-width: 767px) {
  .template-feature {
    padding: 74px 0 31px;
  }
}
@media only screen and (max-width: 575px) {
  .template-feature {
    padding: 64px 0 21px;
  }
}
@media only screen and (max-width: 479px) {
  .template-feature {
    padding: 54px 0 11px;
  }
}
.template-feature .feature-box {
  margin-bottom: 40px;
  text-align: center;
}
.template-feature .feature-box .feature-icon {
  margin-bottom: 28px;
}
.template-feature .feature-box h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .template-feature .feature-box h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .template-feature .feature-box h3 {
    font-size: 18px;
  }
}
.template-feature .feature-box P {
  color: #65707f;
  line-height: 30px;
}
/*=======================================================================
[8] Template Feature 2 Area Styles 
=========================================================================*/
.template-feature2 {
  padding: 110px 0 100px;
}
@media only screen and (max-width: 1199px) {
  .template-feature2 {
    padding: 10px 0 90px;
  }
}
@media only screen and (max-width: 991px) {
  .template-feature2 {
    padding: 90px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .template-feature2 {
    padding: 80px 0 70px;
  }
}
@media only screen and (max-width: 575px) {
  .template-feature2 {
    padding: 70px 0 60px;
  }
}
@media only screen and (max-width: 479px) {
  .template-feature2 {
    padding: 60px 0 50px;
  }
}
.template-feature2 .content-box-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.template-feature2 .content-box-wrap .content-box h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .template-feature2 .content-box-wrap .content-box h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .template-feature2 .content-box-wrap .content-box h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .template-feature2 .content-box-wrap .content-box h2 {
    font-size: 28px;
  }
}
.template-feature2 .content-box-wrap .content-box p {
  line-height: 30px;
  width: 70%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .template-feature2 .content-box-wrap .content-box {
    text-align: center;
    margin-top: 50px;
  }
  .template-feature2 .content-box-wrap .content-box p {
    margin-left: auto;
    margin-right: auto;
  }
}
/*=======================================================================
[8] Inner Pages Area Styles 
=========================================================================*/
.inner-pages {
  padding: 0 150px 80px;
}
.inner-pages .figure-box {
  margin-bottom: 30px;
  box-shadow: 0px 0px 167px 0px rgba(0, 0, 0, 0.15);
}
/*=======================================================================
[9] Footer Area Styles 
=========================================================================*/
.footer-area {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0 65px;
}
.footer-area .footer-logo {
  display: inline-block;
  width: 50%;
}
.footer-area .footer-logo img {
  margin: 0 auto 20px;
}
.footer-area p {
  color: #fff;
}
.footer-area p a {
  margin-left: 3px;
  color: #fffefe;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-area p a:hover {
  color: #6451f6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/*=======================================================================
[9] Animation Styles 
=========================================================================*/
@media only screen and (min-width: 768px) {
  body .has-animation .opacity-animation {
    opacity: 0;
    visibility: hidden;
  }
  body .has-animation .translate-zoomout-10 {
    transform: scale(0.1);
  }
  body .has-animation .translate-zoomout-20 {
    transform: scale(0.2);
  }
  body .has-animation .translate-zoomout-30 {
    transform: scale(0.3);
  }
  body .has-animation .translate-zoomout-40 {
    transform: scale(0.4);
  }
  body .has-animation .translate-zoomout-50 {
    transform: scale(0.5);
  }
  body .has-animation .translate-left-10 {
    transform: translateX(-10%);
  }
  body .has-animation .translate-left-20 {
    transform: translateX(-20%);
  }
  body .has-animation .translate-left-30 {
    transform: translateX(-30%);
  }
  body .has-animation .translate-left-40 {
    transform: translateX(-40%);
  }
  body .has-animation .translate-left-50 {
    transform: translateX(-50%);
  }
  body .has-animation .translate-left-75 {
    transform: translateX(-75%);
  }
  body .has-animation .translate-left-100 {
    transform: translateX(-100%);
  }
  body .has-animation .translate-right-10 {
    transform: translateX(10%);
  }
  body .has-animation .translate-right-20 {
    transform: translateX(20%);
  }
  body .has-animation .translate-right-30 {
    transform: translateX(30%);
  }
  body .has-animation .translate-right-40 {
    transform: translateX(40%);
  }
  body .has-animation .translate-right-50 {
    transform: translateX(50%);
  }
  body .has-animation .translate-right-75 {
    transform: translateX(75%);
  }
  body .has-animation .translate-right-100 {
    transform: translateX(100%);
  }
  body .has-animation .translate-top-10 {
    transform: translateY(-10%);
  }
  body .has-animation .translate-top-20 {
    transform: translateY(-20%);
  }
  body .has-animation .translate-top-30 {
    transform: translateY(-30%);
  }
  body .has-animation .translate-top-40 {
    transform: translateY(-40%);
  }
  body .has-animation .translate-top-50 {
    transform: translateY(-50%);
  }
  body .has-animation .translate-top-75 {
    transform: translateY(-75%);
  }
  body .has-animation .translate-top-100 {
    transform: translateY(-100%);
  }
  body .has-animation .translate-bottom-10 {
    transform: translateY(10%);
  }
  body .has-animation .translate-bottom-20 {
    transform: translateY(20%);
  }
  body .has-animation .translate-bottom-30 {
    transform: translateY(30%);
  }
  body .has-animation .translate-bottom-40 {
    transform: translateY(40%);
  }
  body .has-animation .translate-bottom-50 {
    transform: translateY(50%);
  }
  body .has-animation .translate-bottom-75 {
    transform: translateY(75%);
  }
  body .has-animation .translate-bottom-100 {
    transform: translateY(100%);
  }
  body .has-animation .translate-bottom-left-10 {
    transform: translateY(10%) translateX(-10%);
  }
  body .has-animation .translate-bottom-left-20 {
    transform: translateY(20%) translateX(-20%);
  }
  body .has-animation .translate-bottom-left-30 {
    transform: translateY(30%) translateX(-30%);
  }
  body .has-animation .translate-bottom-left-40 {
    transform: translateY(40%) translateX(-40%);
  }
  body .has-animation .translate-bottom-left-50 {
    transform: translateY(50%) translateX(-50%);
  }
  body .has-animation .translate-bottom-left-75 {
    transform: translateY(75%) translateX(-75%);
  }
  body .has-animation .translate-bottom-left-100 {
    transform: translateY(100%) translateX(-100%);
  }
  body .has-animation .translate-top-left-10 {
    transform: translateY(-10%) translateX(-10%);
  }
  body .has-animation .translate-top-left-20 {
    transform: translateY(-20%) translateX(-20%);
  }
  body .has-animation .translate-top-left-30 {
    transform: translateY(-30%) translateX(-30%);
  }
  body .has-animation .translate-top-left-40 {
    transform: translateY(-40%) translateX(-40%);
  }
  body .has-animation .translate-top-left-50 {
    transform: translateY(-50%) translateX(-50%);
  }
  body .has-animation .translate-top-left-75 {
    transform: translateY(-75%) translateX(-75%);
  }
  body .has-animation .translate-top-left-100 {
    transform: translateY(-100%) translateX(-100%);
  }
  body .has-animation .translate-top-right-10 {
    transform: translateY(-10%) translateX(10%);
  }
  body .has-animation .translate-top-right-20 {
    transform: translateY(-20%) translateX(20%);
  }
  body .has-animation .translate-top-right-30 {
    transform: translateY(-30%) translateX(30%);
  }
  body .has-animation .translate-top-right-40 {
    transform: translateY(-40%) translateX(40%);
  }
  body .has-animation .translate-top-right-50 {
    transform: translateY(-50%) translateX(50%);
  }
  body .has-animation .translate-top-right-75 {
    transform: translateY(-75%) translateX(75%);
  }
  body .has-animation .translate-top-right-100 {
    transform: translateY(-100%) translateX(100%);
  }
  body .transition-10,
  body .transition-20,
  body .transition-30,
  body .transition-40,
  body .transition-50,
  body .transition-100,
  body .transition-150,
  body .transition-200,
  body .transition-250,
  body .transition-300,
  body .transition-350,
  body .transition-400,
  body .transition-450,
  body .transition-500,
  body .transition-550,
  body .transition-600,
  body .transition-650,
  body .transition-700,
  body .transition-750,
  body .transition-800,
  body .transition-850,
  body .transition-900,
  body .transition-950,
  body .transition-1000 {
    transition: all 0.01s ease-out;
    transition-delay: 0.5s;
  }
  body.loaded .has-animation.active-animation .opacity-animation {
    opacity: 1;
    visibility: visible;
  }
  body.loaded .has-animation.active-animation .translate-zoomout-10,
  body.loaded .has-animation.active-animation .translate-zoomout-20,
  body.loaded .has-animation.active-animation .translate-zoomout-30,
  body.loaded .has-animation.active-animation .translate-zoomout-40,
  body.loaded .has-animation.active-animation .translate-zoomout-50 {
    transform: scale(1);
  }
  body.loaded .has-animation.active-animation .translate-left-10,
  body.loaded .has-animation.active-animation .translate-left-20,
  body.loaded .has-animation.active-animation .translate-left-30,
  body.loaded .has-animation.active-animation .translate-left-40,
  body.loaded .has-animation.active-animation .translate-left-50,
  body.loaded .has-animation.active-animation .translate-left-75,
  body.loaded .has-animation.active-animation .translate-left-100,
  body.loaded .has-animation.active-animation .translate-right-10,
  body.loaded .has-animation.active-animation .translate-right-20,
  body.loaded .has-animation.active-animation .translate-right-30,
  body.loaded .has-animation.active-animation .translate-right-40,
  body.loaded .has-animation.active-animation .translate-right-50,
  body.loaded .has-animation.active-animation .translate-right-75,
  body.loaded .has-animation.active-animation .translate-right-100,
  body.loaded .has-animation.active-animation .translate-top-10,
  body.loaded .has-animation.active-animation .translate-top-20,
  body.loaded .has-animation.active-animation .translate-top-30,
  body.loaded .has-animation.active-animation .translate-top-40,
  body.loaded .has-animation.active-animation .translate-top-50,
  body.loaded .has-animation.active-animation .translate-top-75,
  body.loaded .has-animation.active-animation .translate-top-100,
  body.loaded .has-animation.active-animation .translate-bottom-10,
  body.loaded .has-animation.active-animation .translate-bottom-20,
  body.loaded .has-animation.active-animation .translate-bottom-30,
  body.loaded .has-animation.active-animation .translate-bottom-40,
  body.loaded .has-animation.active-animation .translate-bottom-50,
  body.loaded .has-animation.active-animation .translate-bottom-75,
  body.loaded .has-animation.active-animation .translate-bottom-100,
  body.loaded .has-animation.active-animation .translate-top-left-10,
  body.loaded .has-animation.active-animation .translate-top-left-20,
  body.loaded .has-animation.active-animation .translate-top-left-30,
  body.loaded .has-animation.active-animation .translate-top-left-40,
  body.loaded .has-animation.active-animation .translate-top-left-50,
  body.loaded .has-animation.active-animation .translate-top-left-75,
  body.loaded .has-animation.active-animation .translate-top-left-100,
  body.loaded .has-animation.active-animation .translate-top-right-10,
  body.loaded .has-animation.active-animation .translate-top-right-20,
  body.loaded .has-animation.active-animation .translate-top-right-30,
  body.loaded .has-animation.active-animation .translate-top-right-40,
  body.loaded .has-animation.active-animation .translate-top-right-50,
  body.loaded .has-animation.active-animation .translate-top-right-75,
  body.loaded .has-animation.active-animation .translate-top-right-100,
  body.loaded .has-animation.active-animation .translate-bottom-left-10,
  body.loaded .has-animation.active-animation .translate-bottom-left-20,
  body.loaded .has-animation.active-animation .translate-bottom-left-30,
  body.loaded .has-animation.active-animation .translate-bottom-left-40,
  body.loaded .has-animation.active-animation .translate-bottom-left-50,
  body.loaded .has-animation.active-animation .translate-bottom-left-75,
  body.loaded .has-animation.active-animation .translate-bottom-left-100 {
    transform: translateY(0) translateX(0);
  }
  body.loaded .transition-10 {
    transition: cubic-bezier(0, 1, 1, 1) 0.1s, opacity 0.3s;
  }
  body.loaded .transition-20 {
    transition: cubic-bezier(0, 1, 1, 1) 0.2s, opacity 0.3s;
  }
  body.loaded .transition-30 {
    transition: cubic-bezier(0, 1, 1, 1) 0.3s, opacity 0.3s;
  }
  body.loaded .transition-40 {
    transition: cubic-bezier(0, 1, 1, 1) 0.4s, opacity 0.3s;
  }
  body.loaded .transition-50 {
    transition: cubic-bezier(0, 1, 1, 1) 0.5s, opacity 0.3s;
  }
  body.loaded .transition-100 {
    transition: cubic-bezier(0, 1, 1, 1) 1s, opacity 0.3s;
  }
  body.loaded .transition-150 {
    transition: cubic-bezier(0, 1, 1, 1) 1.5s, opacity 0.3s;
  }
  body.loaded .transition-200 {
    transition: cubic-bezier(0, 1, 1, 1) 2s, opacity 0.3s;
  }
  body.loaded .transition-250 {
    transition: cubic-bezier(0, 1, 1, 1) 2.5s, opacity 0.3s;
  }
  body.loaded .transition-300 {
    transition: cubic-bezier(0, 1, 1, 1) 3s, opacity 0.3s;
  }
  body.loaded .transition-350 {
    transition: cubic-bezier(0, 1, 1, 1) 3.5s, opacity 0.3s;
  }
  body.loaded .transition-400 {
    transition: cubic-bezier(0, 1, 1, 1) 4s, opacity 0.3s;
  }
  body.loaded .transition-450 {
    transition: cubic-bezier(0, 1, 1, 1) 4.5s, opacity 0.3s;
  }
  body.loaded .transition-500 {
    transition: cubic-bezier(0, 1, 1, 1) 5s, opacity 0.3s;
  }
  body.loaded .transition-550 {
    transition: cubic-bezier(0, 1, 1, 1) 5.5s, opacity 0.3s;
  }
  body.loaded .transition-600 {
    transition: cubic-bezier(0, 1, 1, 1) 6s, opacity 0.3s;
  }
  body.loaded .transition-650 {
    transition: cubic-bezier(0, 1, 1, 1) 6.5s, opacity 0.3s;
  }
  body.loaded .transition-700 {
    transition: cubic-bezier(0, 1, 1, 1) 7s, opacity 0.3s;
  }
  body.loaded .transition-750 {
    transition: cubic-bezier(0, 1, 1, 1) 7.5s, opacity 0.3s;
  }
  body.loaded .transition-800 {
    transition: cubic-bezier(0, 1, 1, 1) 8s, opacity 0.3s;
  }
  body.loaded .transition-850 {
    transition: cubic-bezier(0, 1, 1, 1) 8.5s, opacity 0.3s;
  }
  body.loaded .transition-900 {
    transition: cubic-bezier(0, 1, 1, 1) 9s, opacity 0.3s;
  }
  body.loaded .transition-950 {
    transition: cubic-bezier(0, 1, 1, 1) 9.5s, opacity 0.3s;
  }
  body.loaded .transition-1000 {
    transition: cubic-bezier(0, 1, 1, 1) 10s, opacity 0.3s;
  }
  body.loaded .transition-delay-0 {
    transition-delay: 0s;
  }
  body.loaded .transition-delay-10 {
    transition-delay: 0.01s;
  }
  body.loaded .transition-delay-20 {
    transition-delay: 0.02s;
  }
  body.loaded .transition-delay-30 {
    transition-delay: 0.03s;
  }
  body.loaded .transition-delay-40 {
    transition-delay: 0.04s;
  }
  body.loaded .transition-delay-50 {
    transition-delay: 0.05s;
  }
  body.loaded .transition-delay-100 {
    transition-delay: 0.1s;
  }
  body.loaded .transition-delay-200 {
    transition-delay: 0.2s;
  }
  body.loaded .transition-delay-300 {
    transition-delay: 0.3s;
  }
  body.loaded .transition-delay-400 {
    transition-delay: 0.4s;
  }
  body.loaded .transition-delay-500 {
    transition-delay: 0.5s;
  }
  body.loaded .transition-delay-600 {
    transition-delay: 0.6s;
  }
  body.loaded .transition-delay-700 {
    transition-delay: 0.7s;
  }
  body.loaded .transition-delay-800 {
    transition-delay: 0.8s;
  }
  body.loaded .transition-delay-900 {
    transition-delay: 0.9s;
  }
  body.loaded .transition-delay-1000 {
    transition-delay: 1s;
  }
  body.loaded .transition-delay-1100 {
    transition-delay: 1.1s;
  }
  body.loaded .transition-delay-1200 {
    transition-delay: 1.2s;
  }
  body.loaded .transition-delay-1300 {
    transition-delay: 1.3s;
  }
  body.loaded .transition-delay-1400 {
    transition-delay: 1.4s;
  }
  body.loaded .transition-delay-1500 {
    transition-delay: 1.5s;
  }
  body.loaded .transition-delay-1600 {
    transition-delay: 1.6s;
  }
  body.loaded .transition-delay-1700 {
    transition-delay: 1.7s;
  }
  body.loaded .transition-delay-1800 {
    transition-delay: 1.8s;
  }
  body.loaded .transition-delay-1900 {
    transition-delay: 1.9s;
  }
  body.loaded .transition-delay-2000 {
    transition-delay: 2s;
  }
  body.loaded .transition-delay-2100 {
    transition-delay: 2.1s;
  }
  body.loaded .transition-delay-2200 {
    transition-delay: 2.2s;
  }
  body.loaded .transition-delay-2300 {
    transition-delay: 2.3s;
  }
  body.loaded .transition-delay-2400 {
    transition-delay: 2.4s;
  }
  body.loaded .transition-delay-2500 {
    transition-delay: 2.5s;
  }
  body.loaded .transition-delay-2600 {
    transition-delay: 2.6s;
  }
  body.loaded .transition-delay-2700 {
    transition-delay: 2.7s;
  }
  body.loaded .transition-delay-2800 {
    transition-delay: 2.8s;
  }
  body.loaded .transition-delay-2900 {
    transition-delay: 2.9s;
  }
  body.loaded .transition-delay-3000 {
    transition-delay: 3s;
  }
  body.loaded .transition-delay-3100 {
    transition-delay: 3.1s;
  }
  body.loaded .transition-delay-3200 {
    transition-delay: 3.2s;
  }
  body.loaded .transition-delay-3300 {
    transition-delay: 3.3s;
  }
  body.loaded .transition-delay-3400 {
    transition-delay: 3.4s;
  }
  body.loaded .transition-delay-3500 {
    transition-delay: 3.5s;
  }
  body.loaded .transition-delay-3600 {
    transition-delay: 3.6s;
  }
  body.loaded .transition-delay-3700 {
    transition-delay: 3.7s;
  }
  body.loaded .transition-delay-3800 {
    transition-delay: 3.8s;
  }
  body.loaded .transition-delay-3900 {
    transition-delay: 3.9s;
  }
  body.loaded .transition-delay-4000 {
    transition-delay: 4s;
  }
  body.loaded .transition-delay-4100 {
    transition-delay: 4.1s;
  }
  body.loaded .transition-delay-4200 {
    transition-delay: 4.2s;
  }
  body.loaded .transition-delay-4300 {
    transition-delay: 4.3s;
  }
  body.loaded .transition-delay-4400 {
    transition-delay: 4.4s;
  }
  body.loaded .transition-delay-4500 {
    transition-delay: 4.5s;
  }
  body.loaded .transition-delay-4600 {
    transition-delay: 4.6s;
  }
  body.loaded .transition-delay-4700 {
    transition-delay: 4.7s;
  }
  body.loaded .transition-delay-4800 {
    transition-delay: 4.8s;
  }
  body.loaded .transition-delay-4900 {
    transition-delay: 4.9s;
  }
  body.loaded .transition-delay-5000 {
    transition-delay: 5s;
  }
  body.loaded .transition-delay-5100 {
    transition-delay: 5.1s;
  }
  body.loaded .transition-delay-5200 {
    transition-delay: 5.2s;
  }
  body.loaded .transition-delay-5300 {
    transition-delay: 5.3s;
  }
  body.loaded .transition-delay-5400 {
    transition-delay: 5.4s;
  }
  body.loaded .transition-delay-5500 {
    transition-delay: 5.5s;
  }
  body.loaded .transition-delay-5600 {
    transition-delay: 5.6s;
  }
  body.loaded .transition-delay-5700 {
    transition-delay: 5.7s;
  }
  body.loaded .transition-delay-5800 {
    transition-delay: 5.8s;
  }
  body.loaded .transition-delay-5900 {
    transition-delay: 5.9s;
  }
  body.loaded .transition-delay-6000 {
    transition-delay: 6s;
  }
}
