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

    Template Name: Sample - Corporate Business Bootstrap4 HTML5 Template
    Template URI: site.com
    Description: Sample - Corporate Business Bootstrap4 HTML5 Template
    Author: MD THAHERIL ISLAM
    Author URI: site.com
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css
===========================*/
/* ******************************
:: 12.0 DISCOVER AREA CSS
****************************** */

.appie-features-content>ul>li>a {
    background: #0e1133;
    color: #fff;
    line-height: 35px;
    padding: 0 9px;
    border-radius: 6px;
    border: 2px solid #0e1133;
}
.appie-features-content>ul {
    margin: 41px 0 0;
    padding: 0;
    list-style-type: none;
}
.appie-features-content>ul>li {
    display: inline-block;
    margin-right: -1px;
}
.appie-features-content>ul>li>a>i {
    padding-right: 6px;
}

.appie-features-content>ul>li>a.item-2 {
    background: #ffffff;
    color: #0e1133;
    line-height: 35px;
    padding: 0 9px;
    border-radius: 6px;
    border: 2px solid #0e1133;
}

.appie-features-content>ul>li>a.item-2:hover {
    background: #0e1133;
    color: #fff;
}
.appie-features-content>ul>li>a:hover {
    background: transparent;
    color: #0e1133;
}
.discover-area .list-box .icon {
  color: var(--primary-color-2);
}
.top-content p {
    font-size: 12px !important;
    line-height: 19px!important;
    font-family: 'poppins';
}
@media (max-width: 575px) {
  .discover-area .discover-thumb {
    max-width: 300px;
  }
}
section.section.discover-area.bg-gray.overflow-hidden.ptb_100 {
    background: #f6f9fe;
    overflow: hidden;
    padding: 100 0 100 0;
}


span.media-body {
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 500;
}
.service-text.media-body>p{
	font-family: 'Poppins';
    font-size: 13px;
    font-weight: 500;
}

img.mnimg {
    width: 70%;
}
.discover-text>h2 {
    font-size: 24px;
    margin: 0px -7px 0px -50px;
}

ul.check-list {
    margin: 0px 0px 0px -62px;
}
.service-text>h2{
	font-size: 24px;
}

ul.service-list {
    margin: -13px 0px 0px -15px;
}






/* ******************************
:: 12.0 First Section
****************************** */



@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

.icon>img {
    display: block;
    margin: 9px auto;
    width: 51%;
}



img {
  max-width: 100%;
}

.contentpage a:focus,
.contentpage input:focus,
.contentpage textarea:focus,
.contentpage button:focus {
  text-decoration: none;
  outline: none;
}

.contentpage a:focus,
.contentpage a:hover {
  text-decoration: none;
}



.contentpage h1,
.contentpage h2,
.contentpage h3,
.contentpage h4,
.contentpage h5,
.contentpage h6 {
font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0e1133;
  margin: 0px;
}

.contentpage h1 {
  font-size: 48px;
}

.contentpage h2 {
  font-size: 22px;
}

.contentpage h3 {
  font-size: 28px;
}

.contentpage h4 {
  font-size: 22px;
}

.contentpage h5 {
  font-size: 18px;
}

.contentpage h6 {
  font-size: 16px;
}

.contentpage ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.contentpage p {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: #505056;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.slick-slide {
  outline: 0;
}

/*===== All Button Style =====*/

.animated_btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #3178ae;
  padding: 0 10px;
  font-size: 15px;
  line-height: 45px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #4a4ad4;
  position: relative;
}



.animated_btn:hover {

  color: #fff;
  background-color: #0e1133;

}


.animated_btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #0e1133;
  border-radius: 6px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border: 1px solid transparent;
  left: 0;
  top: 0;
  right: 1px;
  bottom: 0;
}

.animated_btn-ios::before {
  content: "";
  background: #fff;
}


.animated_btn:hover::before {
  -webkit-transform: scale(2);
  transform: scale(1);
}


.animated_btn2 {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #3178ae;
  padding: 0 30px;
  font-size: 15px;
  line-height: 45px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #3178ae;
  position: relative;
}

.animated_btn2:hover {

  color: #031133;
}

.animated_btn2::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0e1133;
  border-radius: 6px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border: 1px solid transparent;
}

.animated_btn2:hover::before {
  -webkit-transform: scale(2);
  transform: scale(1);
}








.main-btn:hover {
  background-color: #fff;
  color: #3178ae;
  border-color: #3178ae;
}

.main-btn.main-btn-2 {
  background-color: #fff;
  color: #3178ae;
  border-color: #3178ae;
}

.main-btn.main-btn-2:hover {
  background-color: #3178ae;
  border-color: #3178ae;
  color: #fff;
}



.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #3178ae;
  padding: 0 30px;
  font-size: 15px;
  line-height: 45px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #3178ae;
}

.main-btn:hover {
  background-color: #fff;
  color: #3178ae;
  border-color: #3178ae;
}

.main-btn.main-btn-2 {
  background-color: #fff;
  color: #3178ae;
  border-color: #3178ae;
}

.main-btn.main-btn-2:hover {
  background-color: #3178ae;
  border-color: #3178ae;
  color: #fff;
}

.appie-section-title {
  padding-bottom: 25px;
}

.appie-section-title .appie-title {
    font-size: 24px;
   
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-section-title .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-section-title .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .appie-section-title .appie-title {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-section-title .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

.appie-section-title p {
    font-size: 16px;
    line-height: 28px;
    font-family: 'Poppins';
    margin-top: 11px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-section-title p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-section-title p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .appie-section-title p {
    font-size: 15px;
  }
}

.appie-section-title .main-btn {
  border-radius: 30px;
  border: 2px solid #e7eaef;
  background: #fff;
  color: #0e1133;
}

.appie-section-title .main-btn:hover {
  background: #ff3e66;
  color: #fff;
  border-color: #ff3e66;
}

.appie-section-title.appie-section-title-2 .appie-title {
  color: #fff;
}

.appie-section-title.appie-section-title-2 p {
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
}

.back-to-top a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #3178ae;
  border-radius: 6px;
  color: #fff;
}

.back-to-top.back-to-top-2 a {
  background: #ff3e66;
}

.back-to-top.back-to-top-3 a {
  background: #ff6b58;
}

.back-to-top.back-to-top-6 a {
  background: #9b2cfa;
}

.back-to-top.back-to-top-5 a {
  background: #801f82;
}

.back-to-top.back-to-top-8 a {
  background: #db0f30;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #232323;
  top: 0;
  transition: all linear 0.3s;
}

.off_canvars_overlay.active {
  opacity: .5;
  visibility: visible;
}

.offcanvas_menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas_menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .offcanvas_menu {
    display: block;
  }
}

.offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 9999;
  top: 0;
  height: 100%;
  transition: .5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 15px 30px;
  overflow-y: scroll;
}

.offcanvas_menu_wrapper::-webkit-scrollbar {
  display: none!important;
  width: 0px !important;
 }

.offcanvas_menu_wrapper.active {
  margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
  background: inherit;
  min-height: 300px;
  overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
  margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
  color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
  color: #222;
}

.offcanvas_main_menu li {
  position: relative;
}

.offcanvas_main_menu li:last-child {
  margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}

.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
  color: #3178ae;
}

.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.offcanvas_footer {
  padding-bottom: 50px;
  text-align: center;
}

.offcanvas_footer span a {
  font-size: 14px;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
  color: #3178ae;
}

.offcanvas_menu_wrapper.active .canvas_close {
  opacity: 1;
  visibility: visible;
}

.canvas_close {
  position: absolute;
  top: 10px;
  right: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
}

.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  border: 1px solid #3178ae;
  border-radius: 10px;
  background: #3178ae;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
  background: #3178ae;
  border-color: #3178ae;
  color: #fff;
}

.canvas_open a {
  font-size: 26px;
  width: 50px;
  height: 42px;
  display: block;
  line-height: 39px;
  text-align: center;
  border: 1px solid #232323;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
  color: #3178ae;
  border-color: #3178ae;
}

.offcanvas-social {
  margin-bottom: 40px;
  margin-top: 40px;
}

.offcanvas-social ul li {
  display: inline-block;
}

.offcanvas-social ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  color: #3178ae;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
  background: #3178ae;
  border-color: #3178ae;
  color: #fff;
}

.toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #0e1133;
}



.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icon/preloader.svg);
}

.preloader-close {
  position: fixed;
  z-index: 999999;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  right: 40px;
  bottom: 40px;
  font-weight: 600;
  line-height: 60px;
  background: #3178ae;
  padding: 0 15px;
  border-radius: 5px;
}

.loader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.808);
}

/*===========================
    SEARCH css
===========================*/
.search-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999999;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
}

.search-box .search-header .search-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.search-box .search-header .search-close button {
  background: none;
  border: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding-right: 35px;
  position: relative;
}

.search-box .search-header .search-close button span {
  width: 21px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  right: 0;
}

.search-box .search-header .search-close button span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-box .search-header .search-close button span:nth-child(2) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 13px;
}

.search-box .search-body {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-box .search-body .search-form {
  position: relative;
}

.search-box .search-body .search-form input {
  width: 100%;
  border: 0;
  height: 80px;
  padding-left: 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  color: #707070;
}

.search-box .search-body .search-form input::placeholder {
  color: #707070;
  opacity: 1;
}

.search-box .search-body .search-form button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  font-size: 36px;
  color: #707070;
  background: none;
  border: 0;
}

.search-box .search-footer {
  padding-bottom: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.search-box .search-footer .search-footer-content h4 {
  color: #707070;
  font-size: 24px;
}

.search-box .search-footer .search-footer-content p {
  color: #222;
  font-size: 16px;
}

.search-box.open {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/*===========================
    SHOPPING CART css
===========================*/
.amm-shopping-cart-wrapper .overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  opacity: 0;
  z-index: 99999;
  visibility: visible;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  visibility: hidden;
}

.amm-shopping-cart-wrapper .overlay.open::before {
  opacity: 0.5;
  visibility: visible;
}

.amm-shopping-cart-canvas {
  position: fixed;
  width: 400px;
  height: 100%;
  background-color: #fff;
  z-index: 99999999;
  top: 0;
  right: -400px;
  padding: 40px 40px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 767px) {
  .amm-shopping-cart-canvas {
    width: 320px;
  }
}

.amm-shopping-cart-canvas.open {
  right: 0;
}

.amm-shopping-cart-canvas .amm-shopping_cart {
  position: relative;
  height: 100%;
  width: 100%;
}

.amm-shopping-cart-canvas.amm-shopping-cart-leftbar {
  right: auto;
  left: -400px;
}

.amm-shopping-cart-canvas.amm-shopping-cart-leftbar.open {
  left: 0;
}

.amm-shopping_cart-list-items {
  overflow-y: auto;
  width: 100%;
  height: 50%;
}

.amm-shopping_cart-list-items ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.amm-shopping_cart-list-items ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.amm-shopping_cart-list-items ul li:last-child {
  border-bottom: 0;
}

.amm-single-shopping-cart {
  display: flex;
}

.amm-single-shopping-cart .cart-content {
  position: relative;
  padding-right: 30px;
}

.amm-single-shopping-cart .cart-content h6 a {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.amm-single-shopping-cart .cart-content .quality {
  font-size: 14px;
  color: #505056;
  display: block;
}

.amm-single-shopping-cart .cart-content .price {
  font-size: 14px;
  color: #3178ae;
}

.amm-single-shopping-cart .cart-content .price-discount {
  font-size: 14px;
  color: #3178ae;
}

.amm-single-shopping-cart .cart-content .price-close {
  font-size: 12px;
  color: #505056;
  position: relative;
}

.amm-single-shopping-cart .cart-content .price-close::before {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #505056;
}

.amm-single-shopping-cart .cart-content .remove {
  font-size: 14px;
  color: #ccc;
  position: absolute;
  top: 0;
  right: 0;
}

.amm-shopping_cart-top-bar h6 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.amm-shopping_cart-top-bar button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  font-size: 30px;
  background: none;
}

.amm-shopping_cart-btn {
  border-top: 1px solid #ccc;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 99;
}

.amm-shopping_cart-btn .tota h5 {
  font-size: 18px;
  font-weight: 400;
  color: #222;
}

.amm-shopping_cart-btn .tota p {
  font-size: 18px;
  color: #3178ae;
}

.amm-shopping_cart-btn .cart-btn a {
  margin: 5px 0;
  width: 100%;
}

/*===========================
    2.HEADER css
===========================*/
.appie-sticky.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1010;
  background: #fff;
  box-shadow: 0 15px 30px 0 #0000000f;
  padding-top: 10px;
  padding-bottom: 10px;
  animation: sticky 1.2s;
}

.appie-header-area {
  padding: 10px 0;
  /* position: absolute; */
  background-color: #fff;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
}

.appie-header-area.appie-header-2-area .appie-btn-box .main-btn {
  background: #ff3e66;
  border-radius: 30px;
  border-color: #ff3e66;
}

.appie-header-area.appie-header-2-area .appie-btn-box .main-btn:hover {
  background: transparent;
  color: #ff3e66;
}

.appie-header-area.appie-header-3-area.appie-sticky.sticky {
  background: #0e1133;
}

.appie-header-area.appie-header-4-area.appie-sticky.sticky {
  background: linear-gradient(90deg, #6b1fcd 0%, #374ede 100%);
}

.appie-header-area.appie-header-page-area.appie-sticky.sticky {
  background: #0a44b9;
}

.appie-header-area.appie-header-7-area.appie-sticky.sticky {
  background: #290645;
}

.appie-header-area.appie-header-error-page {
  box-shadow: 0px 10px 20px 0px rgba(14, 17, 51, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-nav-box .appie-btn-box {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-nav-box .appie-btn-box {
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .header-nav-box .appie-btn-box {
    padding-right: 30px;
  }
}

.header-nav-box .appie-btn-box .login-btn {
  color: #0e1133;
  font-size: 15px;
  font-weight: 500;
}

.header-nav-box .appie-btn-box .login-btn i {
  padding-right: 6px;
}

@media (max-width: 767px) {
  .header-nav-box .appie-btn-box .main-btn {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-nav-box .appie-btn-box .main-btn {
    padding: 0 10px;
    display: inline-block;
  }
}

.header-nav-box.header-nav-box-3 .appie-header-main-menu ul>li>a {
  color: #fff;
}

.header-nav-box.header-nav-box-3 .appie-header-main-menu ul>li .sub-menu li a {
  color: #0e1133;
}

.header-nav-box.header-nav-box-3 .appie-btn-box .login-btn {
  color: #fff;
}

.header-nav-box.header-nav-box-3 .appie-btn-box .main-btn {
  background: #ff6b58;
  border-color: #ff6b58;
}

.header-nav-box.header-nav-box-3 .appie-btn-box .main-btn:hover {
  background: transparent;
  color: #ff6b58;
}

.header-nav-box.header-nav-box-3 .toggle-btn {
  color: #fff;
  font-size: 20px;
}

.header-nav-box.header-nav-box-3.header-nav-box-inner-page .appie-btn-box .main-btn {
  border-color: #fff;
  background: transparent;
}

.header-nav-box.header-nav-box-3.header-nav-box-inner-page .appie-btn-box .main-btn:hover {
  background: #fff;
  color: #3178ae;
}

.header-nav-box.header-nav-box-5 .appie-header-main-menu ul>li>a {
  color: #fff;
}

.header-nav-box.header-nav-box-5 .appie-header-main-menu ul>li .sub-menu li a {
  color: #0e1133;
}

.header-nav-box.header-nav-box-5 .appie-btn-box .login-btn {
  color: #fff;
}

.header-nav-box.header-nav-box-5 .appie-btn-box .main-btn {
  background: #f84a6e;
  border-color: #f84a6e;
}

.header-nav-box.header-nav-box-5 .appie-btn-box .main-btn:hover {
  background: transparent;
  color: #f84a6e;
}

.header-nav-box.header-nav-box-5 .toggle-btn {
  color: #fff;
  font-size: 20px;
}

.header-nav-box.header-nav-4-box .appie-header-main-menu ul>li>a:hover {
  color: #801f82;
}

.header-nav-box.header-nav-4-box .appie-btn-box .main-btn {
  background: #801f82;
  border-color: #801f82;
}

.header-nav-box.header-nav-4-box .appie-btn-box .main-btn:hover {
  background: transparent;
  color: #801f82;
}

@media (max-width: 767px) {
  .header-nav-box.header-nav-4-box .appie-btn-box ul {
    margin-right: 10px;
  }
}

.header-nav-box.header-nav-4-box .appie-btn-box ul li {
  display: inline-block;
}

.header-nav-box.header-nav-4-box .appie-btn-box ul li a {
  font-size: 18px;
  color: #0e1133;
  margin-left: 15px;
}

.header-nav-box.header-nav-4-box .appie-btn-box ul li a.cart-btn {
  position: relative;
}

.header-nav-box.header-nav-4-box .appie-btn-box ul li a.cart-btn span {
  position: absolute;
  top: -7px;
  display: inline-block;
  right: -12px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 11px;
  background: #801f82;
  border-radius: 50%;
}

.header-nav-box.header-nav-box-6 .main-btn {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.header-nav-box.header-nav-box-6 .main-btn:hover {
  background: transparent;
  color: #9b2cfa;
}

.header-nav-box.header-nav-box-6 .appie-header-main-menu ul>li>a:hover {
  color: #9b2cfa;
}

.header-nav-box.header-nav-box-6 .appie-btn-box form {
  display: inline-block;
  margin-left: 18px;
}

@media (max-width: 767px) {
  .header-nav-box.header-nav-box-6 .appie-btn-box form {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-nav-box.header-nav-box-6 .appie-btn-box form {
    display: inline-block;
  }
}

.header-nav-box.header-nav-box-6 .appie-btn-box form .input-box {
  position: relative;
}

.header-nav-box.header-nav-box-6 .appie-btn-box form .input-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.header-nav-box.header-nav-box-6 .appie-btn-box form .input-box input {
  width: 105px;
  padding-left: 50px;
  border: 0;
  border-left: 1px solid #ddddea;
  background: transparent;
}

.header-nav-box.header-nav-box-7 .appie-header-main-menu ul>li>a {
  color: #fff;
}

.header-nav-box.header-nav-box-7 .appie-header-main-menu ul>li>a:hover {
  color: #3178ae;
}

.header-nav-box.header-nav-box-7 .appie-header-main-menu ul>li .sub-menu li a {
  color: #505056;
}

.header-nav-box.header-nav-box-7 .appie-header-main-menu ul>li .sub-menu li a:hover {
  color: #3178ae;
}

.header-nav-box.header-nav-box-7 .appie-btn-box .login-btn {
  color: #fff;
}

.header-nav-box.header-nav-box-7 .appie-btn-box .toggle-btn {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-header-main-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .appie-header-main-menu {
    display: none;
  }
}

.appie-header-main-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.appie-header-main-menu ul>li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-header-main-menu ul>li {
    margin-right: 14px;
  }
}

.appie-header-main-menu ul>li>a {
  font-size: 15px;
  font-weight: 500;
  color: #0e1133;
  line-height: 45px;
  position: relative;
}



.appie-header-main-menu ul>li>a i {
  padding-left: 6px;
}

.appie-header-main-menu ul>li>.sub-menu {
  position: absolute;
  left: 0;
  /* top: 110%; */
  width: auto;
  min-width: 220px;
  max-width: 220px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  z-index: 99;
  -webkit-box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  -moz-box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  list-style-type: none;
  margin: 0;
  padding: 15px 0;
  border-radius: 5px;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top center;
}

.appie-header-main-menu ul>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  /* top: 100%;  */
  transform: scaleY(1);






}

.appie-header-main-menu ul>li .sub-menu>li a::before {
  display: none;
}


@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .appie-header-main-menu ul>li .sub-menu {
    min-width: 200px;
    max-width: 200px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-header-main-menu ul>li .sub-menu {
    min-width: 200px;
    max-width: 200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-header-main-menu ul>li .sub-menu {
    position: relative;
    width: 100%;
    left: 0;
    top: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    transition: 0s;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .appie-header-main-menu ul>li .sub-menu {
    position: relative;
    width: 100%;
    left: 0;
    top: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    transition: 0s;
    padding: 0;
  }
}

.appie-header-main-menu ul>li .sub-menu>li {
  position: relative;
  margin-left: 0;
  display: block;
  width: 100%;
  display: block;
  margin: 3px 0;
  padding: 0px 0;
}

.appie-header-main-menu ul>li .sub-menu>li::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  transition: 1s ease-in-out;
}

.appie-header-main-menu ul>li .sub-menu>li:hover:before {
  background: #ecf0f1;
  width: 100%;
}


.appie-header-main-menu ul>li .sub-menu>li .sub-menu {
  margin-left: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-header-main-menu ul>li .sub-menu>li .sub-menu {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .appie-header-main-menu ul>li .sub-menu>li .sub-menu {
    margin-left: 0;
  }
}

.appie-header-main-menu ul>li .sub-menu>li .sub-nav-toggler {
  color: #0e1133;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.appie-header-main-menu ul>li .sub-menu>li a {
  display: block;
  padding: 0px 30px;
  position: relative;
  color: #505056;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
  margin: 0 0;
  line-height: 2.5;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .appie-header-main-menu ul>li .sub-menu>li a {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-header-main-menu ul>li .sub-menu>li a {
    padding: 0 20px;
  }
}

.appie-header-main-menu ul>li .sub-menu>li a i {
  float: right;
  font-size: 16px;
  margin-top: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-header-main-menu ul>li .sub-menu>li a i {
    display: none;
  }
}

@media (max-width: 767px) {
  .appie-header-main-menu ul>li .sub-menu>li a i {
    display: none;
  }
}

.appie-header-main-menu ul>li .sub-menu>li a .sub-nav-toggler i {
  display: inline-block;
}

.appie-header-main-menu ul>li .sub-menu>li a:hover {
  padding-left: 35px;
}

.appie-header-main-menu ul>li .sub-menu>li .sub-menu {
  right: auto;
  left: 100%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-header-main-menu ul>li .sub-menu>li .sub-menu {
    padding-left: 30px;
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -ms-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
  }
}

@media (max-width: 767px) {
  .appie-header-main-menu ul>li .sub-menu>li .sub-menu {
    padding-left: 30px;
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -ms-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
  }
}

.appie-header-main-menu ul>li .sub-menu>li .sub-menu li {
  position: relative;
}

.appie-header-main-menu ul>li .sub-menu>li .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.appie-header-main-menu ul>li .sub-menu>li .sub-menu li:hover .sub-menu {
  top: 0%;
  opacity: 1;
  visibility: visible;
}

.appie-header-main-menu ul>li .sub-menu>li:hover .sub-menu {
  top: 0%;
  opacity: 1;
  visibility: visible;
}

.appie-header-main-menu ul>li .sub-menu>li:hover .sub-nav-toggler {
  color: #3178ae;
}

.appie-header-main-menu ul>li .sub-menu>li:hover>a {
  color: #3178ae;
}



@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

.appie-header-8-area .header-nav-box .appie-btn-box .main-btn {
  background: #db0f30;
  border-color: #db0f30;
}

.appie-header-8-area .header-nav-box .appie-btn-box .main-btn:hover {
  background: #fff;
  color: #db0f30;
}

.appie-header-8-area .header-nav-box .appie-header-main-menu ul>li a:hover {
  color: #db0f30;
}



/* home dropdown CSS */
.appie-header-main-menu ul li .mega-menu-main-wrap {
  width: 1170px;
  position: absolute;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: center;
  left: -200px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  padding-top: 30px;
}

.appie-header-main-menu ul li:hover .mega-menu-main-wrap {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);

}


.appie-header-main-menu ul li .mega-menu-main-wrap .mega-menu-home li {
  display: inline-block;
  width: 18%;
  text-align: center;
  margin: 0 5px;
  margin-bottom: 15px;
}

.appie-header-main-menu ul li .mega-menu-home li a:hover {
  color: #3178ae
}

.appie-header-main-menu ul li .mega-menu-home li img {
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  height: 280px;
  transition: .5s ease-in-out;
}

.appie-header-main-menu ul li .mega-menu-home li:hover img {
  transform: translateY(-15px);
}

/* pages dropdown CSS */
.appie-header-main-menu ul li .pages-mega-menu {
  width: 1170px !important;
  position: absolute;
  background: #fff;
  padding: 15px 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  padding-top: 40px !important;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transition: .4s ease-in-out;
  transform-origin: top center;
  left: -291px;
  margin: auto;
  padding-left: 40px;
  padding-bottom: 30px;
}

.appie-header-main-menu ul li:hover .pages-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.appie-header-main-menu ul li .pages-mega-menu ul {
  float: left;
  width: auto;
}

.appie-header-main-menu ul li .pages-mega-menu ul li {
  display: block;
}

.appie-header-main-menu ul li .pages-mega-menu ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
}

.appie-header-main-menu ul li .pages-mega-menu ul li a:hover {
  color: #3178ae;
}

.appie-header-main-menu ul li .pages-mega-menu ul li:first-child a {
  font-size: 18px;
  font-weight: 500;
  position: relative;
}



.hot::after {
  content: "HOT";
  font-size: 12px;
  position: absolute;
  top: -13px;
  right: -1px;
  background: #D41212;
  height: 20px;
  line-height: 21px;
  width: 40px !important;
  display: block;
  text-align: center;
  color: #fff;
}

.hot::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 0 18px;
  border-color: transparent transparent transparent #D41212;
  position: absolute;
  right: 15px;
  bottom: 32px;
  transform: rotate(-120deg);
}

.feature::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 0 18px;
  border-color: transparent transparent transparent #D41212;
  position: absolute;
  right: 15px;
  bottom: 30px;
  transform: rotate(-120deg);
}

.feature::after {
  content: "feature";
  font-size: 13px;
  position: absolute;
  top: -10px;
  right: -1px;
  background: #D41212;
  height: 19px;
  line-height: 19px;
  width: 62px !important;
  display: block;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}


.projects::after {
  content: "PROJECTS";
  font-size: 12px;
  position: absolute;
  top: -14px;
  right: -46px;
  background: #3178ae;
  height: 20px;
  line-height: 21px;
  width: 70px !important;
  display: block;
  text-align: center;
  color: #fff;
}

.projects::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 0 13px;
  border-color: transparent transparent transparent #3178ae;
  position: absolute;
  right: 4px;
  bottom: 30px;
  transform: rotate(-120deg);
}



/* blog-mega menu CSS */
.mega-menu-recent-ports ul {
  overflow: hidden;
}

.mega-r-post {
  font-size: 18px;
  font-weight: 500;
  color: #0e1133;
  margin-top: 8px;
  margin-bottom: 25px;
}

.mega-recent-post-text img {
  float: left;
  width: 23%;
}

.mega-menu-ul-block {
  float: none !important;
  width: 325px !important;
}

.mega-recent-post-text a {
  display: block;
}

.mega-recent-post-text h5 {
  font-size: 16px;
  font-family: roboto;
  font-weight: 400;
  line-height: 20px;
  font-weight: 500;
  transition: .3s;
}

.mega-recent-post-text h5:hover {
  color: #3178ae;
}

.mega-recent-post-text ul li {
  font-size: 14px;
  color: #5E5E5E;
}

.mega-recent-post-text ul li a {
  font-size: 14px !important;
  color: #5E5E5E;
}

.mega-recent-right-txt {
  float: right;
  width: 73%;
}

.mega-menu-ul-block-lst li {
  display: inline-block !important;
}

.blog-comment {
  margin-left: -25px;
  font-weight: 400 !important;
  font-size: 14px !important;
}

.recent-right-text {
  margin-bottom: 15px !important;
  display: block !important;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.mega-menu-ul-block li:last-child {
  border: none;
}

.mega-recent-ftxt {
  text-transform: inherit !important;
}

.appie-header-main-menu ul li .blog-mega-menu {
  width: 750px !important;
}

.blog-wrap-ul {
  width: 26% !important;
}

.blog-wrap-ul:nth-child(2) {
  width: 30% !important;
}


.pages-mega-menu.mega-menu-mainn-wrap {
  padding-left: 100px !important;
}

.pages-mega-menu.mega-menu-mainn-wrap ul {
  margin: 0 25px;
}

.mega-menu-ul-block {
  margin-left: 0 !important;
}


/*===========================
    3.APPIE HERO css
===========================*/
.appie-hero-area {
    padding-top: 100px;
    padding-bottom: 110px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.appie-hero-area.appie-hero-3-area {
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 180px;
  padding-bottom: 0px;
  overflow: visible;
  z-index: 15;
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
  color: #fff;
  font-size: 70px;
  line-height: 80px;
  padding: 0 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
    font-size: 54px;
    line-height: 64px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
    font-size: 36px;
    line-height: 46px;
    padding: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
    font-size: 46px;
    line-height: 56px;
    padding: 0;
  }
}

.appie-hero-area.appie-hero-3-area .appie-hero-content p {
  color: #fff;
  opacity: 0.5;
  font-size: 18px;
  line-height: 28px;
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .hero-btns {
  margin-top: 35px;
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .hero-btns .main-btn {
  border-color: #ff6b58;
  color: #ff6b58;
  background: transparent;
  margin-right: 14px;
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .hero-btns .appie-video-popup {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .hero-btns .appie-video-popup {
    margin-top: 20px;
  }
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .hero-btns .appie-video-popup i {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  margin-right: 10px;
}

.appie-hero-area.appie-hero-3-area .appie-hero-content .thumb {
  margin-bottom: -210px;
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .thumb {
    display: none;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area .appie-hero-content .thumb {
    display: block;
    margin-bottom: -210px;
  }
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area {
  background-color: #eef1f6;
  background-image: url(../images/hero-bg-2.png);
  padding-top: 280px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area {
    padding-top: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area {
    padding-top: 120px;
    padding-bottom: 0px;
  }
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .thumb {
  margin-bottom: -110px;
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .appie-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .appie-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .appie-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .appie-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .hero-btns .appie-video-popup i {
  border-color: rgba(255, 255, 255, 0.2);
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .hero-btns .main-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.appie-hero-area.appie-hero-3-area.appie-hero-5-area .appie-hero-content .hero-btns .main-btn:hover {
  background: #f84a6e;
  color: #fff;
}

.appie-hero-area .hero-shape-1 {
  position: absolute;
  left: 0;
  top: 250px;
  z-index: -1;
  animation: linear 20s animationFramesOne infinite;
}

.appie-hero-area .hero-shape-2 {
  position: absolute;
  left: 80px;
  z-index: -1;
  top: 480px;
  animation: linear 25s animationFramesThree infinite;
}

.appie-hero-area .hero-shape-3 {
  position: absolute;
  bottom: 120px;
  right: 320px;
  z-index: -1;
  animation: linear 25s animationFramesFive infinite;
}

.appie-hero-area.appie-hero-4-area {
  background: #f9f9f9;
  background-image: url(../images/hero-shape-1.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 6% 100%;
  padding-top: 140px;
  padding-bottom: 60px;
}

.appie-hero-area.appie-hero-6-area {
  background-image: url(../images/hero-bg-3.jpg);
}

.appie-hero-area.appie-hero-7-area {
  background-image: url(../images/hero-bg-4.png);
}

.appie-hero-area.appie-hero-8-area {
  position: relative;
  z-index: 10;
}

.appie-hero-area.appie-hero-8-area .home-8-shape-1 {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: -1;
}

.appie-hero-area.appie-hero-8-area .home-8-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.appie-hero-area.appie-hero-8-area .home-8-shape-3 {
  position: absolute;
  top: 400px;
  right: 290px;
  z-index: -1;
}

.appie-hero-area.appie-hero-8-area .home-8-shape-4 {
  position: absolute;
  bottom: 195px;
  left: 195px;
  z-index: -1;
}

.appie-hero-area.appie-hero-8-area .appie-hero-content-8 .appie-title {
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  background: linear-gradient(90deg, #fb2d4e 25%, #4e88ff 75%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-area.appie-hero-8-area .appie-hero-content-8 .appie-title {
    font-size: 56px;
    line-height: 66px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area.appie-hero-8-area .appie-hero-content-8 .appie-title {
    font-size: 42px;
    line-height: 66px;
  }
}

@media (max-width: 767px) {
  .appie-hero-area.appie-hero-8-area .appie-hero-content-8 .appie-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.appie-hero-thumb-6 .thumb {
  position: relative;
  z-index: 10;
}

.appie-hero-thumb-6 .thumb .back-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-content {
    margin-bottom: 50px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .appie-hero-content {
    margin-bottom: 50px;
    text-align: center;
  }
}

.appie-hero-content>span {
  color: #3178ae;
  font-size: 14px;
  font-weight: 500;
}

.appie-hero-content .appie-title {
    font-size: 24px !important;
    line-height: 30px !important;
    margin-top: 10px;
    margin-bottom: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-content .appie-title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-content .appie-title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (max-width: 767px) {
  .appie-hero-content .appie-title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-content .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

.appie-hero-content p {
    font-family: 'Poppins';
    font-size: 12px;
    /* line-height: 21px; */
}

@media (max-width: 767px) {
  .appie-hero-content p {
    font-size: 15px;
    line-height: 26px;
  }
}

.appie-hero-content ul {
    margin: 41px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.appie-hero-content ul li {
  display: inline-block;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .appie-hero-content ul li {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-content ul li {
    margin-bottom: 0px;
  }
}

.appie-hero-content ul li a {
    background: #0e1133;
    color: #fff;
    padding: 8px 10px 8px 10px;
    border-radius: 6px;
    border: 2px solid #0e1133;
}

.appie-hero-content ul li a i {
  padding-right: 6px;
}

.appie-hero-content ul li a:hover {
  background: transparent; 
  color: #0e1133;

}

.appie-hero-content ul li a.item-2 {
  background: transparent;
  color: #0e1133;
}

.appie-hero-content ul li a.item-2:hover {
  background: #0e1133;
  color: #fff;
}

.appie-hero-content.appie-hero-content-4 {
  padding-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-content.appie-hero-content-4 {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .appie-hero-content.appie-hero-content-4 {
    padding-right: 0;
  }
}

.appie-hero-content.appie-hero-content-4>span {
  color: #801f82;
}

.appie-hero-content.appie-hero-content-4 .appie-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-content.appie-hero-content-4 .appie-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-content.appie-hero-content-4 .appie-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .appie-hero-content.appie-hero-content-4 .appie-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-content.appie-hero-content-4 .appie-title {
    font-size: 40px;
    line-height: 50px;
  }
}

.appie-hero-content.appie-hero-content-4 a.main-btn {
  border: 2px solid #801f82;
  color: #801f82;
  background: #fff;
  line-height: 55px;
  padding: 0 40px;
  font-size: 16px;
  margin-top: 40px;
}

.appie-hero-content.appie-hero-content-4 a.main-btn:hover {
  background: #801f82;
  color: #fff;
}

.appie-hero-content.appie-hero-content-6>span {
  color: #9b2cfa;
}

.appie-hero-content.appie-hero-content-6 .appie-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-content.appie-hero-content-6 .appie-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-content.appie-hero-content-6 .appie-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .appie-hero-content.appie-hero-content-6 .appie-title {
    font-size: 36px;
    line-height: 46px;
  }
}

.appie-hero-content.appie-hero-content-6 ul li a {
  background: #9b2cfa;
  border-color: #9b2cfa;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
}

.appie-hero-content.appie-hero-content-6 ul li a span {
  line-height: 20px;
}

.appie-hero-content.appie-hero-content-6 ul li a span span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 20px;
}

.appie-hero-content.appie-hero-content-6 ul li a i {
  font-size: 30px;
}

.appie-hero-content.appie-hero-content-6 ul li a:hover {
  background: #fff;
  color: #0e1133;
  border-color: #fff;
}

.appie-hero-content.appie-hero-content-6 ul li a.item-2 {
  background: #fff;
  border-color: #fff;
}

.appie-hero-content.appie-hero-content-6 ul li a.item-2:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
  color: #fff;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 .appie-title {
  color: #fff;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 p {
  color: #fff;
  opacity: 0.5;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 ul li a {
  background: #fff;
  color: #0e1133;
  border-color: #fff;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 ul li a:hover {
  background: transparent;
  border-color: #54386a;
  color: #fff;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 ul li a.item-2 {
  background: transparent;
  color: #fff;
  border-color: #54386a;
}

.appie-hero-content.appie-hero-content-6.appie-hero-content-7 ul li a.item-2:hover {
  border-color: #fff;
  background: #fff;
  color: #0e1133;
}

.appie-hero-thumb {
    position: relative;
    z-index: 10;
    text-align: right;
    width: 60%;
}

.appie-hero-thumb .thumb-2 {
    position: absolute;
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 30px 70px 0px rgb(68 1 15 / 20%);
    width: 50%;
}
.appie-hero-thumb::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    height: 250px;
    width: 249px;
    transform: translate(-50%, -50%);
    background: #ff3e66;
    border-radius: 50%;
    z-index: -1;
}
.appie-hero-thumb.appie-hero-thumb-4::before {
  height: 160px;
  width: 160px;
  top: 200px;
  left: 70px;
  background: #801f82;
  transform: translate(0%, 0%);
}

.appie-hero-thumb.appie-hero-thumb-4 .hero-dot {
  position: absolute;
  right: 70px;
  bottom: 115px;
  z-index: -1;
}

.appie-hero-area-2 {
  padding-top: 290px;
  padding-bottom: 170px;
  background: #eef1f6;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-area-2 {
    padding-top: 190px;
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area-2 {
    padding-top: 190px;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .appie-hero-area-2 {
    padding-top: 190px;
    padding-bottom: 150px;
  }
}

.appie-hero-area-2 .appie-hero-thumb-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .appie-hero-area-2 .appie-hero-thumb-3 {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-area-2 .appie-hero-thumb-3 {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .appie-hero-area-2 .appie-hero-thumb-3 {
    width: 36%;
  }
}

.appie-hero-area-2 .hero-shape-1 {
  position: absolute;
  top: 250px;
  left: 130px;
  animation: linear 20s animationFramesOne infinite;
  z-index: -1;
}

.appie-hero-area-2 .hero-shape-2 {
  position: absolute;
  bottom: 290px;
  left: 40px;
  animation: linear 20s animationFramesFour infinite;
  z-index: -1;
}

.appie-hero-area-2 .hero-shape-3 {
  position: absolute;
  top: 480px;
  right: 240px;
  animation: linear 20s animationFramesFive infinite;
  z-index: -1;
}

.appie-hero-area-2 .hero-shape-4 {
  position: absolute;
  top: 210px;
  right: 0px;
  animation: linear 20s animationFramesThree infinite;
  z-index: -1;
}

.appie-hero-content-2>span {
  font-size: 16px;
  font-weight: 500;
  color: #ff3e66;
  position: relative;
}

.appie-hero-content-2>span::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 70px;
  background-image: url(../images/hero-line.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.appie-hero-content-2 .appie-title {
  font-size: 64px;
  line-height: 70px;
  font-weight: 400;
  margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-hero-content-2 .appie-title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-hero-content-2 .appie-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .appie-hero-content-2 .appie-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-hero-content-2 .appie-title {
    font-size: 40px;
    line-height: 50px;
  }
}

.appie-hero-content-2 .appie-title span {
  font-weight: 900;
}

.appie-hero-content-2 p {
  font-size: 18px;
  color: #0e1133;
  margin-top: 22px;
}

.appie-hero-content-2 .input-box {
  position: relative;
  margin-top: 40px;
  width: 400px;
}

@media (max-width: 767px) {
  .appie-hero-content-2 .input-box {
    width: 100%;
  }
}

.appie-hero-content-2 .input-box>i {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #c3c3cc;
}

.appie-hero-content-2 .input-box input {
  width: 100%;
  height: 60px;
  border-radius: 40px;
  border: 0;
  border-left: 3px solid #ff3e66;
  padding-left: 55px;
  box-shadow: -3px 0px 0px 0px rgba(255, 62, 102, 0.004), 0px 30px 30px 0px rgba(14, 17, 51, 0.1);
}

.appie-hero-content-2 .input-box button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 0;
  color: #ff3e66;
}

.appie-hero-content-2 .hero-users {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.appie-hero-content-2 .hero-users>span {
  margin-left: 20px;
  font-size: 26px;
  font-weight: 900;
  color: #0e1133;
  width: 60px;
  display: inline-block;
  line-height: 16px;
}

.appie-hero-content-2 .hero-users>span span {
  font-size: 13px;
  font-weight: 500;
  color: #505056;
  display: inline-block;
  line-height: 13px;
}

.appie-page-title-area {
  height: 220px;
  background-image: url(../images/page-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.appie-page-title-area.appie-page-service-title-area {
  height: 650px;
  background-image: url(../images/page-title-bg.jpg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-page-title-area.appie-page-service-title-area {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .appie-page-title-area.appie-page-service-title-area {
    height: 400px;
  }
}

.appie-page-title-area.appie-page-service-title-area .appie-page-title-item .thumb {
  right: 110px;
  width: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-page-title-area.appie-page-service-title-area .appie-page-title-item .thumb {
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-page-title-area.appie-page-service-title-area .appie-page-title-item .thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .appie-page-title-area.appie-page-service-title-area .appie-page-title-item .thumb {
    display: none;
  }
}

.appie-page-title-item {
  margin-top: 20px;
  position: relative;
}

.appie-page-title-item .thumb {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 160px;
}

@media (max-width: 767px) {
  .appie-page-title-item .thumb {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-page-title-item .thumb {
    display: block;
  }
}

.appie-page-title-item span {
  color: #fff;
  font-weight: 500;
  opacity: 0.7;
  padding-bottom: 14px;
}

.appie-page-title-item .title {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .appie-page-title-item .title {
    font-size: 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-page-title-item .title {
    font-size: 32px;
  }
}

.appie-page-title-item nav {
  display: inline-block;
  margin-top: 20px;
}

.appie-page-title-item nav ol {
  background: transparent;
  padding: 0;
}

.appie-page-title-item nav ol li a {
  color: #fff;
  opacity: 0.8;
}

.appie-page-title-item nav ol li.active {
  color: #fff;
  opacity: 0.8;
}

/*===========================
    4.APPIE SERVOCE css
===========================*/
.appie-service-area {
  background: #eef1f6;
  position: relative;
  background-image: url(../images/shape/shape-1.png);
  background-position: 92% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.appie-service-area.appie-service-3-area {
  background: none;
}

@media (max-width: 767px) {
  .appie-service-area.appie-service-3-area {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-service-area.appie-service-3-area {
    padding-top: 190px;
  }
}

.appie-single-service {
    padding: 24px 10px 30px;
    background: #fff;
    width: 128%;
    height: 86%;
    overflow: hidden;
    border-radius: 6px;
    transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-single-service {
    padding: 50px 15px 43px;
  }
}

.appie-single-service .icon {
    display: inline-block;
    border-radius: 13px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 70px;
    background: linear-gradient(135deg, #84bcfa 0%, #3178ae 100%);
    box-shadow: 0px 6px 10px 0px rgb(16 73 189 / 30%);
    position: relative;
}

.appie-single-service .icon>span {
    position: absolute;
    right: -10px;
    top: -10px;
    height: 20px;
    width: 20px;
    background: #3178ae;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 3px 6px 0px rgb(14 17 51 / 10%);
    line-height: 16px;
    color: #fff;
}

.appie-single-service .appie-title {
    font-size: 13px;
    font-weight: 700;
    padding-top: 22px;
    padding-bottom: 7px;
}

.appie-single-service:hover {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  transform: translateY(-15px);
}

.appie-single-service.item-2 .icon {
  background: linear-gradient(135deg, #f7b8af 0%, #f8452d 100%);
}

.appie-single-service.item-2 .icon span {
  background: #f8452d;
}

.appie-single-service.item-3 .icon {
  background: linear-gradient(135deg, #a0eac2 0%, #31c369 100%);
}

.appie-single-service.item-3 .icon span {
  background: #31c369;
}

.appie-single-service.item-4 .icon {
    background: linear-gradient(135deg, #d8aaff 0%, #9b2cfa 100%);
}

.appie-single-service.item-4 .icon span {
  background: #9b2cfa;
}

.appie-single-service.appie-single-services-3 {
  background: transparent;
}

.appie-single-service.appie-single-services-3 .icon {
  border-radius: 50%;
  background-image: -moz-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
  background-image: -webkit-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
  background-image: -ms-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
}

.appie-single-service.appie-single-services-3 a {
  color: #505056;
  font-size: 14px;
  font-weight: 500;
  margin-top: 25px;
}

.appie-single-service.appie-single-services-3 a:hover {
  color: #ff6b58;
}

.appie-single-service.appie-single-services-3.item-2 {
  background: linear-gradient(0deg, rgba(39, 153, 246, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.appie-single-service.appie-single-services-3.item-2 .icon {
  background-image: -moz-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
  background-image: -webkit-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
  background-image: -ms-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
}

.appie-single-service.appie-single-services-3.item-3 .icon {
  background-image: -moz-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
  background-image: -webkit-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
  background-image: -ms-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
}

.appie-single-service.appie-single-services-3.item-4 {
  background: linear-gradient(0deg, rgba(119, 89, 237, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.appie-single-service.appie-single-services-3.item-4 .icon {
  background-image: -moz-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
  background-image: -webkit-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
  background-image: -ms-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
}

.appie-single-service.appie-single-services-3.appie-single-services-5 a:hover {
  color: #801f82;
}

@media (max-width: 767px) {
  .appie-services-2-area .appie-section-title {
    text-align: center !important;
  }
}

.appie-single-service-2 {
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 48px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .appie-single-service-2 {
    text-align: center;
    padding: 20px;
  }
}

.appie-single-service-2 .icon i {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #2eacfc;
  color: #fff;
  border-radius: 50%;
}

.appie-single-service-2 .title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.appie-single-service-2 a {
  font-size: 14px;
  font-weight: 500;
  color: #505056;
  margin-top: 23px;
}

.appie-single-service-2 a:hover {
  color: #ff3e66;
}

.appie-single-service-2:hover {
  box-shadow: 0px -3px 0px 0px rgba(234, 76, 137, 0.004), 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  border-top: 3px solid #2eacfc;
  transform: translateY(-10px);
}

.appie-single-service-2.item-2 .icon i {
  background: #ea4c89;
}

.appie-single-service-2.item-2:hover {
  border-top-color: #ea4c89;
}

.appie-single-service-2.item-3 .icon i {
  background: #3578ff;
}

.appie-single-service-2.item-3:hover {
  border-top-color: #3578ff;
}

.appie-single-service-2.item-4 .icon i {
  background: #f67741;
}

.appie-single-service-2.item-4:hover {
  border-top-color: #f67741;
}

.appie-single-service-2.item-5 .icon i {
  background: #6a88f7;
}

.appie-single-service-2.item-5:hover {
  border-top-color: #6a88f7;
}

.appie-single-service-2.item-6 .icon i {
  background: #3ab094;
}

.appie-single-service-2.item-6:hover {
  border-top-color: #3ab094;
}

.appie-single-service-2.appie-single-service-about {
  border-radius: 0;
  padding: 0 90px 30px 0;
  border: 0;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-single-service-2.appie-single-service-about {
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .appie-single-service-2.appie-single-service-about {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.appie-single-service-2.appie-single-service-about .icon i {
  background-color: #f1f7fe;
  color: #3178ae;
  border-radius: 35% 65% 50% 50% / 59% 50% 50% 41%;
  font-size: 20px;
}

.appie-single-service-2.appie-single-service-about:hover {
  box-shadow: none;
  margin-top: 20px;
}

.appie-single-service-2.appie-single-service-about.item-2 .icon i {
  color: #db0f30;
  background-color: #fef3f5;
  border-radius: 50% 50% 50% 50% / 50% 75% 25% 50%;
}

.appie-single-service-2.appie-single-service-about.item-3 .icon i {
  color: #9b2cfa;
  background-color: #f7eeff;
  border-radius: 25% 75% 50% 50% / 50% 50% 50% 50%;
}

.appie-single-service-2.appie-single-service-about.item-4 .icon i {
  color: #f8452d;
  background-color: #fef0ee;
  border-radius: 40% 60% 40% 60% / 40% 60% 40% 60%;
}

.appie-single-service-2.appie-single-service-about.item-5 .icon i {
  color: #31c369;
  background-color: #f4fcf7;
  border-radius: 33% 67% 50% 50% / 61% 72% 28% 39%;
}

.appie-single-service-2.appie-single-service-about.item-6 .icon i {
  color: #f6ac0e;
  background-color: #fef7e7;
  border-radius: 21% 79% 58% 42% / 50% 46% 54% 50%;
}

.appie-services-6-area .appie-section-title .main-btn:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.appie-services-6-area .appie-single-service-2 a:hover {
  color: #9b2cfa;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .service-details-sidebar {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .service-details-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.service-details-sidebar .service-category-widget {
  border-radius: 6px;
  box-shadow: 0px 30px 50px 0px rgba(14, 17, 51, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.service-details-sidebar .service-category-widget ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.service-details-sidebar .service-category-widget ul li {
  margin-bottom: 20px;
}

.service-details-sidebar .service-category-widget ul li i {
  color: #3178ae;
  width: 15px;
  margin-right: 15px;
}

.service-details-sidebar .service-category-widget ul li:last-child {
  margin-bottom: 0;
}

.service-details-sidebar .service-download-widget {
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0px 0px 50px 0px rgba(14, 17, 51, 0.1);
}

.service-details-sidebar .service-download-widget a {
  padding: 13px 30px;
  color: #505056;
}

.service-details-sidebar .service-download-widget a:hover {
  color: #3178ae;
}

.service-details-sidebar .service-download-widget i {
  color: #3178ae;
  padding-right: 15px;
}

.service-details-content .thumb {
  border-radius: 10px;
  overflow: hidden;
}

.service-details-content .content {
  padding-top: 34px;
}

.service-details-content .content .title {
  font-size: 30px;
  margin-bottom: 18px;
}

.service-details-content .content span {
  font-size: 20px;
  line-height: 30px;
  color: #0e1133;
  padding-top: 34px;
  padding-bottom: 26px;
}

.appie-services-8-area .service-thumb {
  margin-left: -50px;
  margin-right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-services-8-area .service-thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .appie-services-8-area .service-thumb {
    display: none;
  }
}

/*===========================
    5.APPIE FEATURES css
===========================*/
.appie-features-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.appie-features-area .features-shape-1 {
  position: absolute;
  left: 560px;
  top: 130px;
  animation: animationFramesOne 20s linear infinite;
  z-index: -1;
}

.appie-features-area .features-shape-2 {
  position: absolute;
  left: 500px;
  bottom: 0px;
  animation: animationFramesThree 20s linear infinite;
  z-index: -1;
}

.appie-features-area .features-shape-3 {
  position: absolute;
  right: 270px;
  bottom: 0;
  animation: animationFramesFive 20s linear infinite;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-features-tabs-btn .nav {
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .appie-features-tabs-btn .nav {
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.appie-features-tabs-btn .nav a {
    border-right: 3px solid #e8eaef;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #505056;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-features-tabs-btn .nav a {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .appie-features-tabs-btn .nav a {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
  }
}

.appie-features-tabs-btn .nav a i {
    height: 21px;
    width: 21px;
    text-align: center;
    line-height: 21px;
    background: #f1f2f7;
    color: #63636a;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    float: left;
    margin: 0px 5px 5px 2px;
}
.appie-features-tabs-btn .nav a.active {
  border-right-color: #3178ae;
  background: transparent;
  color: #3178ae;
}

.appie-features-tabs-btn .nav a.active i {
  color: #fff;
  background: #3178ae;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-features-content {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .appie-features-content {
    padding-top: 30px;
  }
}

.appie-features-content span {
  font-size: 14px;
  font-weight: 500;
  color: #3178ae;
  margin-bottom: 8px;
  display: block
}

.appie-features-content .title {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.appie-features-content .title::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #3178ae;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  0% {
    width: 0%
  }

  25% {
    width: 25%
  }

  50% {
    width: 50%
  }

  75% {
    width: 75%
  }

  100% {
    width: 100%
  }
}


@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-features-content .title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .appie-features-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.appie-features-content p {
    font-size: 12px;
    padding-bottom: 30px;
    font-family: 'Poppins';
}

.appie-features-area-2 {
  background: #0e1133;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.appie-features-area-2 .features-shape-1 {
  position: absolute;
  left: 240px;
  top: 240px;
  z-index: -1;
  animation: linear 20s animationFramesThree infinite;
}

.appie-features-area-2 .features-shape-2 {
  position: absolute;
  right: 190px;
  top: 160px;
  z-index: -1;
  animation: linear 20s animationFramesFive infinite;
}

.appie-features-area-2 .features-shape-3 {
  position: absolute;
  right: 160px;
  bottom: 260px;
  z-index: -1;
  animation: linear 20s animationFramesOne infinite;
}

.appie-features-area-2.appie-features-area-5 {
  background: #fff;
}

.appie-features-box-item {
  border: 1px solid #202234;
  padding: 25px 30px 30px 70px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 20px;
  margin-left: 100px;
  margin-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-features-box-item {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-features-box-item {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .appie-features-box-item {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 60px;
  }
}

.appie-features-box-item .title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-features-box-item .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .appie-features-box-item .title {
    font-size: 20px;
  }
}

.appie-features-box-item .title::before {
  position: absolute;
  content: '';
  left: -40px;
  top: 0;
  height: 30px;
  width: 30px;
  background: #ff3e66;
  border: 6px solid #2a182d;
  border-radius: 50%;
}

.appie-features-box-item p {
  font-size: 14px;
  opacity: 0.6;
  color: #fff;
  margin-top: 3px;
}

.appie-features-box-item:hover {
  border-color: #ff3e66;
}

.appie-features-box-item.item-2 .title::before {
  background: #2eacfc;
  border-color: #15233d;
}

.appie-features-box-item.item-2:hover {
  border-color: #2eacfc;
}

.appie-features-box-item.item-3 .title::before {
  background: #33c956;
  border-color: #15262c;
}

.appie-features-box-item.item-3:hover {
  border-color: #33c956;
}

.appie-features-box-item.appie-features-box-5-item .title {
  color: #0e1133;
}

.appie-features-box-item.appie-features-box-5-item .title::before {
  border-color: rgba(9, 8, 8, 0.21);
}

.appie-features-box-item.appie-features-box-5-item p {
  color: #505056;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-features-thumb {
    text-align: center;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .appie-features-thumb {
    text-align: center;
    margin-top: 50px;
  }
}

.appie-features-6-area .appie-features-tabs-btn .nav a.active {
  color: #9b2cfa;
  border-right-color: #9b2cfa;
}

.appie-features-6-area .appie-features-tabs-btn .nav a.active i {
  background: #9b2cfa;
}

.appie-features-6-area .appie-features-content>span {
  color: #9b2cfa;
}

.appie-features-6-area .appie-features-content a {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.appie-features-6-area .appie-features-content a:hover {
  background: #fff;
  color: #9b2cfa;
}

.appie-features-content svg {
  position: absolute;
  top: 40%;
  left: 50%;
  width: calc(90% + 20px);
  height: calc(30% + 50px);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: visible;
}

.appie-features-content svg path {
  stroke: #f39c12;
  stroke-width: 9;
  fill: none;
  stroke-dasharray: 1500;
  -webkit-animation: elementor-headline-dash 10s infinite;
  animation: elementor-headline-dash 10s infinite;
}
