/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gafata&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #505056;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

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

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

i,
span,
a {
  display: inline-block;
  transition: all linear 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: #1C2242;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  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;
}

.main {
  overflow: hidden;
}

.whatsapp__container {
  position: fixed;
  background-color: #25d366;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10000;
}
.whatsapp__container .whatsapp__container--alert {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  text-align: center;
  border-radius: 10px;
  width: 155px;
  top: 25px;
  right: -2000px;
  transition: all 0.4s ease-in-out;
  z-index: 200;
}
.whatsapp__container .whatsapp__container--alert span {
  font-size: 13px;
}
.whatsapp__container a svg {
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}
.whatsapp__container a svg path {
  fill: #ffffff;
}
.whatsapp__container a:hover svg {
  transform: scale(1.1);
}
.whatsapp__container:hover .whatsapp__container--alert {
  right: 77px;
}

.whastsappMessage__container {
  background-color: #ffffff;
  border-radius: 10px;
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 350px;
  display: none;
  opacity: 0;
  z-index: 10000;
  transition: all 0.4s ease-in-out;
}
.whastsappMessage__container .whastsappMessage__container--close {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  right: 5px;
}
.whastsappMessage__container .whastsappMessage__container--close svg {
  width: 15px;
  height: 15px;
}
.whastsappMessage__container .whastsappMessage__container--close svg path {
  fill: #cccccc;
}
.whastsappMessage__container .whastsappMessage__container--text a {
  text-decoration: none;
  color: #000000;
}
.whastsappMessage__container .whastsappMessage__container--text a p {
  font-size: 15px;
}

@media screen and (max-width: 991px) {
  .whatsapp__container {
    right: 10px !important;
    width: 50px !important;
    height: 50px !important;
  }
  .whatsapp__container .whatsapp__container--alert {
    width: 155px;
    top: 14px;
    right: -2000px;
  }
  .whatsapp__container .whatsapp__container--close {
    top: -12px;
    right: 200px;
  }
  .whatsapp__container a svg {
    width: 30px !important;
    height: 30px !important;
    transition: all 0.4s ease-in-out;
  }
  .whatsapp__container a svg path {
    fill: #ffffff;
  }
  .whatsapp__container a:hover svg {
    transform: scale(1.1);
  }
  .whatsapp__container:hover .whatsapp__container--alert {
    right: 58px;
  }
  .whastsappMessage__container {
    bottom: 62px;
  }
}
.show-opacity {
  opacity: 1 !important;
}

.show-block {
  display: block !important;
}

/*===== All Button Style =====*/
.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 #E72F29;
  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: #E72F29;
}
.main-btn:hover {
  background-color: #fff;
  color: #E72F29;
  border-color: #E72F29;
}
.main-btn.main-btn-2 {
  background-color: #fff;
  color: #E72F29;
  border-color: #E72F29;
}
.main-btn.main-btn-2:hover {
  background-color: #E72F29;
  border-color: #E72F29;
  color: #fff;
}

.appie-section-title {
  padding-bottom: 25px;
}
.appie-section-title .appie-title {
  font-size: 44px;
  line-height: 54px;
}
@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: 18px;
  line-height: 28px;
  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: #1C2242;
}
.appie-section-title .main-btn:hover {
  background: #45569B;
  color: #fff;
  border-color: #45569B;
}
.appie-section-title.appie-section-title-2 .appie-title {
  color: #fff;
}
.appie-section-title.appie-section-title-2 p {
  color: #fff;
}

.whatsapp__container {
  position: fixed;
  background-color: #25d366;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10000;
}
.whatsapp__container .whatsapp__container--alert {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  text-align: center;
  border-radius: 10px;
  width: 155px;
  top: 25px;
  right: -2000px;
  transition: all 0.4s ease-in-out;
  z-index: 200;
}
.whatsapp__container .whatsapp__container--alert span {
  font-size: 13px;
}
.whatsapp__container a svg {
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}
.whatsapp__container a svg path {
  fill: #ffffff;
}
.whatsapp__container a:hover svg {
  transform: scale(1.1);
}
.whatsapp__container:hover .whatsapp__container--alert {
  right: 77px;
}

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
}
.back-to-top a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #E72F29;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.back-to-top.back-to-top-2 a {
  background: #45569B;
}
.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: 0.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: 0.5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 15px 30px;
  overflow-y: visible;
}
.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: #E72F29;
}
.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: #E72F29;
}

.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 #E72F29;
  border-radius: 10px;
  background: #E72F29;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -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: #E72F29;
  border-color: #E72F29;
  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: #E72F29;
  border-color: #E72F29;
}

.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: #E72F29;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  -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: #E72F29;
  border-color: #E72F29;
  color: #fff;
}

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

.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: #E72F29;
  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: #F4F9FF;
}

/*===========================
    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: #E72F29;
}
.amm-single-shopping-cart .cart-content .price-discount {
  font-size: 14px;
  color: #E72F29;
}
.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: #E72F29;
}
.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 rgba(0, 0, 0, 0.0588235294);
  padding-top: 20px;
  padding-bottom: 20px;
  animation: sticky 1.2s;
}

.appie-header-area {
  padding-top: 30px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
}
.appie-header-area.appie-header-2-area .appie-btn-box .main-btn {
  background: #45569B;
  border-radius: 30px;
  border-color: #45569B;
}
.appie-header-area.appie-header-2-area .appie-btn-box .main-btn:hover {
  background: transparent;
  color: #45569B;
}
.appie-header-area.appie-header-3-area.appie-sticky.sticky {
  background: #1C2242;
}
.appie-header-area.appie-header-4-area.appie-sticky.sticky {
  background: linear-gradient(90deg, rgb(107, 31, 205) 0%, rgb(55, 78, 222) 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;
}
.header-nav-box .appie-btn-box .appie-btn-lang a {
  font-size: 1.6rem;
  cursor: pointer;
}
@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: #1C2242;
  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: #1C2242;
}
.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: #E72F29;
}
.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: #1C2242;
}
.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: #1C2242;
  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: #E72F29;
}
.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: #E72F29;
}
.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: #1C2242;
  line-height: 45px;
}
.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: 250px;
  max-width: 250px;
  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;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .appie-header-main-menu ul > li .sub-menu {
    min-width: 150px;
    max-width: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-header-main-menu ul > li .sub-menu {
    min-width: 150px;
    max-width: 150px;
  }
}
@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;
}
.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: #1C2242;
  -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: #E72F29;
}
.appie-header-main-menu ul > li .sub-menu > li:hover > a {
  color: #E72F29;
}
.appie-header-main-menu ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

@-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;
}

/*===========================
    9.APPIE FAQ css 
===========================*/
.appie-faq-area {
  background: #eef1f6;
  position: relative;
  background-image: url(../images/shape/faq-shape.png);
  background-position: 94% 100%;
  background-size: auto;
  background-repeat: no-repeat;
}

.faq-accrodion {
  margin-top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-accrodion {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .faq-accrodion {
    margin-top: 30px;
  }
}
.faq-accrodion .accrodion {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.faq-accrodion .accrodion::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0px;
  right: 0px;
  border-radius: 0px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--thm-primary)), to(var(--thm-base)));
  background-image: linear-gradient(90deg, var(--thm-primary) 0%, var(--thm-base) 100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  border-radius: 5px;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.faq-accrodion .accrodion + .accrodion {
  margin-top: 30px;
}
.faq-accrodion .accrodion.active {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
}
.faq-accrodion .accrodion.active .accrodion-inner {
  margin: 0 1px;
  background-color: transparent;
  border-color: #fff;
}
.faq-accrodion .accrodion.active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.faq-accrodion .accrodion.active .accrodion-title {
  padding-bottom: 0;
}
.faq-accrodion .accrodion.active .accrodion-title::before {
  opacity: 0;
}
.faq-accrodion .accrodion.active .accrodion-title::after {
  opacity: 1;
  color: #fff;
}
.faq-accrodion .accrodion .accrodion-inner {
  background-color: #fff;
  padding: 18px 0;
  border-style: solid;
  border-width: 1px;
  border-color: #f2f4f8;
  border-radius: 0px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
.faq-accrodion .accrodion .accrodion-title {
  padding: 0px 38px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .faq-accrodion .accrodion .accrodion-title {
    padding: 0 38px 0 20px;
  }
}
.faq-accrodion .accrodion .accrodion-title::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z' fill='%23ff0000'/%3E%3C/svg%3E");
  font-family: "Font Awesome 5 Pro";
  background-position: center center;
  background-repeat: no-repeat;
  font-weight: 400;
  font-size: 14px;
  color: #E72F29;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  position: absolute;
  height: 20px;
  width: 20px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .faq-accrodion .accrodion .accrodion-title::before {
    right: 5px;
  }
}
@media (max-width: 767px) {
  .faq-accrodion .accrodion .accrodion-title::before {
    right: 20px;
  }
}
.faq-accrodion .accrodion .accrodion-title::after {
  content: "";
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z' fill='%23ff0000'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .faq-accrodion .accrodion .accrodion-title::after {
    right: 5px;
  }
}
@media (max-width: 767px) {
  .faq-accrodion .accrodion .accrodion-title::after {
    right: 20px;
  }
}
.faq-accrodion .accrodion .accrodion-title h4 {
  margin: 0;
  color: #1C2242;
  font-size: 18px;
  font-weight: 700;
}
.faq-accrodion .accrodion .accrodion-content .inner {
  padding: 0 38px;
  padding-right: 35px;
  padding-top: 22px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .faq-accrodion .accrodion .accrodion-content .inner {
    padding: 0 38px 0 20px;
  }
}
.faq-accrodion .accrodion .accrodion-content p {
  margin: 0;
  color: #505056;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.appie-faq-8-area {
  background: #eef1f6;
  position: relative;
}
.appie-faq-8-area .faq-accordion .accrodion .accrodion-inner .accrodion-title::before {
  background: #fcecef;
  color: #db0f30;
}
.appie-faq-8-area .faq-accordion .accrodion .accrodion-inner .accrodion-title::after {
  background: #db0f30;
  color: #fff;
}
.appie-faq-8-area .faq-play-box {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background-image: url(../images/faq-play-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-faq-8-area .faq-play-box {
    display: none;
  }
}
@media (max-width: 767px) {
  .appie-faq-8-area .faq-play-box {
    display: none;
  }
}
.appie-faq-8-area .faq-play-box .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appie-faq-8-area .faq-play-box .play-btn a {
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  background: #fff;
  border-radius: 50%;
  color: #E72F29;
  position: relative;
}
.appie-faq-8-area .faq-play-box .play-btn a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: linear infinite popup 1.5s;
}
.appie-faq-8-area .faq-play-box .faq-play-counter {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
}
.appie-faq-8-area .faq-play-box .faq-play-counter .box-1 {
  background: rgba(42, 109, 245, 0.9);
  padding: 50px 60px;
}
.appie-faq-8-area .faq-play-box .faq-play-counter .box-1 .title {
  font-size: 30px;
  color: #fff;
}
.appie-faq-8-area .faq-play-box .faq-play-counter .box-1 span {
  font-size: 14px;
  color: #d1dbfb;
}
.appie-faq-8-area .faq-play-box .faq-play-counter .box-1.box-2 {
  background: rgba(14, 17, 51, 0.9);
}

/*===========================
    12.APPIE COUNTER css 
===========================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-counter-area {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .appie-counter-area {
    padding-bottom: 100px;
  }
}
.appie-counter-area.appie-counter-5-area {
  background: #eef1f6;
}

.appie-single-counter {
  padding: 30px;
  position: relative;
  background: #fff;
  height: 160px;
  background-image: -moz-linear-gradient(140deg, rgb(221, 244, 253) 0%, rgb(234, 249, 255) 100%);
  background-image: -webkit-linear-gradient(140deg, rgb(221, 244, 253) 0%, rgb(234, 249, 255) 100%);
  background-image: -ms-linear-gradient(140deg, rgb(221, 244, 253) 0%, rgb(234, 249, 255) 100%);
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-single-counter {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-single-counter {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .appie-single-counter {
    margin-bottom: 90px;
  }
}
.appie-single-counter .counter-content {
  background: #fff;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 30px 40px 0px rgba(0, 41, 57, 0.1);
  padding-top: 37px;
  padding-bottom: 40px;
}
.appie-single-counter .counter-content .title {
  font-size: 40px;
  font-weight: 400;
  margin-top: 5px;
}
.appie-single-counter .counter-content .title span {
  font-weight: 700;
}
.appie-single-counter .counter-content p {
  font-size: 14px;
  font-weight: 500;
}
.appie-single-counter.item-2 {
  background-image: -moz-linear-gradient(140deg, rgb(253, 234, 211) 0%, rgb(255, 247, 238) 100%);
  background-image: -webkit-linear-gradient(140deg, rgb(253, 234, 211) 0%, rgb(255, 247, 238) 100%);
  background-image: -ms-linear-gradient(140deg, rgb(253, 234, 211) 0%, rgb(255, 247, 238) 100%);
}
.appie-single-counter.item-2 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(56, 31, 0, 0.1);
}
.appie-single-counter.item-3 {
  background-image: -moz-linear-gradient(140deg, rgb(218, 254, 219) 0%, rgb(240, 252, 240) 100%);
  background-image: -webkit-linear-gradient(140deg, rgb(218, 254, 219) 0%, rgb(240, 252, 240) 100%);
  background-image: -ms-linear-gradient(140deg, rgb(218, 254, 219) 0%, rgb(240, 252, 240) 100%);
}
.appie-single-counter.item-3 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(0, 74, 1, 0.1);
}
.appie-single-counter.item-4 {
  background-image: -moz-linear-gradient(140deg, rgb(254, 218, 244) 0%, rgb(252, 239, 247) 100%);
  background-image: -webkit-linear-gradient(140deg, rgb(254, 218, 244) 0%, rgb(252, 239, 247) 100%);
  background-image: -ms-linear-gradient(140deg, rgb(254, 218, 244) 0%, rgb(252, 239, 247) 100%);
}
.appie-single-counter.item-4 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(74, 0, 54, 0.1);
}

/*===========================
    10.APPIE PROJECT css 
===========================*/
.appie-project-area .appie-project-box {
  background-image: url(../images/project-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 40px;
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.appie-project-area .appie-project-box .subscription-form-control p {
  line-height: 1.5;
  opacity: 1;
}
.appie-project-area .appie-project-box .subscription-form-captcha {
  margin-top: 20px;
}
.appie-project-area .appie-project-box .subscription-form-captcha a {
  color: #ffffff !important;
  border-bottom: none !important;
}
.appie-project-area .appie-project-box .subscription-form-captcha-error p {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .appie-project-area .appie-project-box {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-project-area .appie-project-box {
    padding-left: 70px;
  }
}
.appie-project-area .appie-project-box .appie-project-thumb {
  position: absolute;
  right: 70px;
  bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-project-area .appie-project-box .appie-project-thumb {
    right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-project-area .appie-project-box .appie-project-thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .appie-project-area .appie-project-box .appie-project-thumb {
    display: none;
  }
}

.appie-project-content {
  padding-right: 50px;
}
.appie-project-content .title {
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .appie-project-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 767px) {
  .appie-project-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-project-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}
.appie-project-content p {
  color: #fff;
  opacity: 0.8;
}
.appie-project-content .input-box {
  display: flex;
}
@media (max-width: 767px) {
  .appie-project-content .input-box {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-project-content .input-box {
    display: flex;
  }
}
.appie-project-content .input-box input {
  width: 100%;
  height: 50px;
  padding-left: 30px;
  border-radius: 6px;
  border: 0;
}
.appie-project-content .input-box button {
  margin-left: 10px;
  padding: 0 30px;
  border-radius: 6px;
  padding: 0 25px;
  background: #1C2242;
  border: 0;
  color: #fff;
  line-height: 50px;
}
@media (max-width: 767px) {
  .appie-project-content .input-box button {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .appie-project-content .input-box button {
    margin-top: 0px;
    margin-left: 10px;
  }
}

.appie-project-3-area.appie-project-5-area {
  background: #eef1f6;
}

.appie-project-3-box {
  background-image: url(../images/project-bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 55px 70px;
  box-shadow: 0px 40px 50px 0px rgba(138, 16, 0, 0.3);
  margin-bottom: -110px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .appie-project-3-box {
    text-align: center;
  }
}
.appie-project-3-box .title {
  color: #fff;
  font-size: 46px;
  line-height: 56px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-project-3-box .title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 767px) {
  .appie-project-3-box .title {
    font-size: 35px;
    line-height: 46px;
    margin-bottom: 30px;
  }
}
.appie-project-3-box a {
  background: #fff;
  color: #1C2242;
  border-color: #fff;
  line-height: 55px;
  padding: 0 40px;
}

/*===========================
    10.APPIE FOOTER css 
===========================*/
.appie-footer-area {
  background: #eef1f6;
  padding-top: 50px;
  padding-bottom: 60px;
}
.appie-footer-area.appie-footer-3-area {
  padding-top: 180px;
}
.appie-footer-area.appie-footer-3-area.appie-footer-5-area {
  background: #fff;
}
.appie-footer-area.appie-footer-about-area {
  padding-top: 230px;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area {
  background: #fff;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-about-widget .social ul li a {
  border: 2px solid #e6e7ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-about-widget .social ul li a:hover {
  background: #db0f30;
  border-color: #db0f30;
  color: #fff;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-navigation ul li a:hover {
  color: #db0f30;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-widget-info ul li a i {
  color: #db0f30;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-copyright .apps-download-btn ul li a {
  background: #1C2242;
  color: #fff;
  border-color: #1C2242;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-copyright .apps-download-btn ul li a:hover {
  background: #fff;
  color: #1C2242;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-copyright .apps-download-btn ul li a.item-2 {
  background: #fff;
  color: #1C2242;
}
.appie-footer-area.appie-footer-about-area.appie-footer-8-area .footer-copyright .apps-download-btn ul li a.item-2:hover {
  background: #1C2242;
  color: #fff;
  border-color: #1C2242;
}

.footer-about-widget {
  padding-right: 70px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer-about-widget {
    text-align: center;
    padding-right: 0;
  }
}
.footer-about-widget p {
  padding-top: 25px;
}
.footer-about-widget > a {
  font-size: 15px;
  font-weight: 500;
  color: #1C2242;
  margin-top: 15px;
}
.footer-about-widget > a i {
  padding-left: 6px;
}
.footer-about-widget .social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-about-widget .social ul li {
  display: inline-block;
}
.footer-about-widget .social ul li a {
  height: 36px;
  width: 36px;
  text-align: center;
  background: #fff;
  color: #1C2242;
  border-radius: 6px;
  line-height: 36px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-about-widget .social ul li a:hover {
  background: #E72F29;
  color: #fff;
}
.footer-about-widget.footer-about-widget-2 ul li a:hover {
  background: #45569B;
}
.footer-about-widget.footer-about-widget-3 ul li a:hover {
  background: #ff6b58;
}
.footer-about-widget.footer-about-widget-6 ul li a:hover {
  background: #9b2cfa;
}
.footer-about-widget.footer-about-widget-5 ul li a:hover {
  background: #801f82;
}

.footer-navigation {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer-navigation {
    text-align: center;
  }
}
.footer-navigation .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-navigation ul li a {
  color: #505056;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-navigation ul li a:hover {
  color: #E72F29;
}
.footer-navigation.footer-navigation-2 ul li a:hover {
  color: #45569B;
}
.footer-navigation.footer-navigation-3 ul li a:hover {
  color: #ff6b58;
}
.footer-navigation.footer-navigation-6 ul li a:hover {
  color: #9b2cfa;
}
.footer-navigation.footer-navigation-5 ul li a:hover {
  color: #801f82;
}

.footer-widget-info {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer-widget-info {
    text-align: center;
  }
}
.footer-widget-info .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-widget-info ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-widget-info ul li a {
  color: #505056;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.footer-widget-info ul li a i {
  position: absolute;
  left: 0;
  top: 0;
  color: #E72F29;
}

.footer-copyright {
  padding-top: 35px;
  border-top: 1px solid #e1e5ec;
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-copyright {
    display: block !important;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block !important;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-copyright .apps-download-btn {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-copyright .apps-download-btn {
    margin-bottom: 20px;
  }
}
.footer-copyright .apps-download-btn ul {
  padding: 0;
  list-style-type: none;
}
.footer-copyright .apps-download-btn ul li {
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .footer-copyright .apps-download-btn ul li {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-copyright .apps-download-btn ul li {
    margin-bottom: 0px;
  }
}
.footer-copyright .apps-download-btn ul li a {
  background: #fff;
  color: #1C2242;
  line-height: 40px;
  padding: 0 23px;
  border-radius: 6px;
  border: 2px solid #fff;
}
.footer-copyright .apps-download-btn ul li a i {
  padding-right: 6px;
}
.footer-copyright .apps-download-btn ul li a:hover {
  background: transparent;
  color: #1C2242;
  border-color: #e7eaef;
}
.footer-copyright .apps-download-btn ul li a.item-2 {
  background: transparent;
  color: #1C2242;
  border-color: #e7eaef;
}
.footer-copyright .apps-download-btn ul li a.item-2:hover {
  background: #fff;
  color: #1C2242;
}

.appie-error-area {
  padding-top: 250px;
}

.appie-error-content span {
  display: block;
  font-size: 50px;
  color: #db0f30;
  font-weight: 800;
  padding-top: 40px;
}
.appie-error-content .title {
  font-size: 50px;
  font-weight: 800;
  color: #1C2242;
  padding-bottom: 11px;
}
.appie-error-content p {
  line-height: 26px;
  color: #505056;
  font-size: 16px;
  padding: 0 50px;
}
.appie-error-content a {
  border: 2px solid #E72F29;
  line-height: 45px;
  padding: 0 35px;
  border-radius: 6px;
  margin-top: 30px;
}

.appie-signup-area.appie-signup-8-area {
  background: #eef1f6;
}
.appie-signup-area.appie-signup-8-area .appie-signup-box form .input-box button {
  background: #db0f30;
}

.appie-signup-box {
  background-image: url(../images/signup-bg.jpg);
  padding: 63px 100px 60px;
  border-radius: 10px;
  box-shadow: 0px 40px 50px 0px rgba(0, 24, 72, 0.3);
  overflow: hidden;
  position: relative;
  margin-bottom: -160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-signup-box {
    padding: 30px 50px;
  }
}
@media (max-width: 767px) {
  .appie-signup-box {
    padding: 30px;
  }
}
.appie-signup-box .thumb {
  position: absolute;
  right: 70px;
  bottom: 30px;
  width: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-signup-box .thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .appie-signup-box .thumb {
    display: none;
  }
}
.appie-signup-box span {
  color: #fff;
  font-weight: 500;
}
.appie-signup-box .title {
  font-size: 46px;
  color: #fff;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .appie-signup-box .title {
    font-size: 30px;
  }
}
.appie-signup-box form {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-signup-box form {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .appie-signup-box form {
    flex-direction: column;
  }
}
.appie-signup-box form .input-box {
  margin-right: 10px;
  margin-top: 10px;
}
.appie-signup-box form .input-box input {
  width: 300px;
  background: #fff;
  line-height: 55px;
  border-radius: 6px;
  padding-left: 30px;
  border: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appie-signup-box form .input-box input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .appie-signup-box form .input-box input {
    width: 100%;
  }
}
.appie-signup-box form .input-box button {
  background: #E72F29;
  line-height: 55px;
  border: 0;
  color: #fff;
  border-radius: 6px;
  padding: 0 45px;
  font-weight: 500;
}

.appie_checkbox_common {
  margin-top: 15px;
}

.appie_checkbox_common label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 400;
}

.appie_checkbox_common label a {
  text-decoration: underline;
  color: #b3b6bc;
}

.appie_checkbox_common input[type=checkbox] {
  display: none;
}

.appie_checkbox_common input[type=checkbox] + label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -1px 15px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.appie_checkbox_common input[type=checkbox] + label span:before {
  color: #fff;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 11px;
  position: absolute;
  text-align: center;
  left: 3px;
  top: -1px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.appie_checkbox_common input[type=checkbox]:checked + label span {
  background: #2079ff;
  border-color: #2079ff;
}

.appie_checkbox_common input[type=checkbox]:checked + label span:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.appie_checkbox_common input[type=checkbox] + label span,
.appie_checkbox_common input[type=checkbox]:checked + label span {
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.appie_checkbox_common.checkbox_style2 input[type=checkbox] + label span {
  border-radius: 3px;
}

.float__live {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 20%;
  z-index: 3000;
  -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .float__live {
    width: 70%;
  }
}
.float__live .swiper-wrapper .swiper-slide-live {
  border-radius: 10px;
  overflow: hidden;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head {
  background-color: #E72F29;
  width: 100%;
  height: 20px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head span {
  color: #ffffff;
  font-size: 13px;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head i {
  color: #ffffff;
  font-size: 18px;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--video iframe {
  width: 100%;
}
.float__live .swiper-button-next,
.float__live .swiper-button-prev {
  background-color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.float__live .swiper-button-next:after,
.float__live .swiper-button-prev:after {
  font-size: 15px;
  color: #E72F29;
}

.btn-demo a {
  background: #fff;
  color: #0e1133;
  line-height: 40px;
  padding: 0 23px;
  border-radius: 6px;
  border: 2px solid #fff;
  color: #212529;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.4s ease-in;
}
.btn-demo a i {
  margin-right: 5px;
}
.btn-demo a:hover {
  background: #e7302a;
  border: 2px solid #e7302a;
  color: #fff;
}
.btn-demo a:hover i {
  transition: none;
}

.btn-acceso a {
  background: #d5d3cf;
  color: #212529;
  line-height: 40px;
  padding: 0 23px;
  border-radius: 6px;
  border: 2px solid #d5d3cf;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.4s ease-in;
}
.btn-acceso a i {
  margin-right: 5px;
}
.btn-acceso a:hover {
  background: rgba(65, 137, 230, 0.2);
}
.btn-acceso a:hover i {
  transition: none;
}

.toggle-btn {
  color: #ffffff;
  position: relative;
  text-align: right;
  transform: translate(0, 0);
}

.btn-blue-bidbit {
  background-color: #0A3356;
  border-color: #0A3356;
  color: #ffffff;
}
.btn-blue-bidbit:hover {
  background-color: rgba(10, 51, 86, 0.8);
  border-color: rgba(10, 51, 86, 0.8);
  color: #ffffff;
}

.toggle-btn.scroll {
  color: #000000;
}

.btn-login {
  color: #ffffff;
  display: block;
  padding: 0.375rem 0.75rem;
  transition: all 0.4s ease-in-out;
}
.btn-login i {
  transition: none;
}
.btn-login:hover {
  color: #e7302a;
}

.btn-login.scroll {
  color: #000000;
}
.btn-login.scroll:hover {
  color: #e7302a;
}

body .appie-header-area .appie-header-main-menu ul {
  text-align: right;
}
body .appie-header-area .appie-header-main-menu ul li > a {
  color: #ffffff;
}
body .appie-header-area .appie-header-main-menu ul li > a:hover {
  color: #e7302a;
}
body .appie-header-area .appie-header-main-menu ul li .sub-menu li > a {
  color: #000000;
}
body .appie-header-area .appie-header-main-menu ul li .sub-menu li > a:hover {
  color: #e7302a;
}
body .appie-header-area.scroll {
  background-color: white;
}
body .appie-header-area.scroll .appie-header-main-menu ul {
  text-align: right;
}
body .appie-header-area.scroll .appie-header-main-menu ul li > a {
  color: #000000;
}
body .appie-header-area.scroll .appie-header-main-menu ul li > a:hover {
  color: #e7302a;
}
body .portada__container {
  height: 75vh;
  min-height: 700px;
  position: relative;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide {
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding-bottom: 5%;
  transition: all 1s ease-in-out;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide:hover {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide {
    background-position: center center;
    align-items: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .portadaLeft {
  z-index: 200;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .portadaLeft img {
  width: 350px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .portadaLeft img {
    width: 150px;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__subtitle__text {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
  z-index: 200;
  position: relative;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__subtitle__text {
    text-align: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__subtitle__text i {
  color: #ff0000;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__title__text {
  color: #ffffff;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  z-index: 200;
  position: relative;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__title__text {
    text-align: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__content__text {
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  z-index: 200;
  position: relative;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__content__text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__button {
    text-align: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__button__text {
  font-size: 17px;
  font-weight: bold;
  z-index: 200;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown {
  position: relative;
  z-index: 200;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown__text {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown__text {
    text-align: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 {
  display: flex;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 {
    justify-content: center;
  }
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-section > div, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-section > div, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-section > div, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-section > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
  position: relative;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-section > div .simply-amount, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-section > div .simply-amount, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-section > div .simply-amount, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-section > div .simply-amount {
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  font-family: "Gafata", sans-serif;
  line-height: 0.9;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-section > div .simply-word, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-section > div .simply-word, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-section > div .simply-word, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-section > div .simply-word {
  color: #ffffff;
  font-family: "Gafata", sans-serif;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-days-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-days-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-days-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-days-section > div::after {
  content: ":";
  position: absolute;
  right: -17px;
  top: 7px;
  color: #ffffff;
  font-size: 30px;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-hours-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-hours-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-hours-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-hours-section > div::after {
  content: ":";
  position: absolute;
  right: -17px;
  top: 7px;
  color: #ffffff;
  font-size: 30px;
}
body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada .simply-minutes-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-2 .simply-minutes-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-3 .simply-minutes-section > div::after, body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide .mySwiperPortada__container__countdown .countDownPortada-4 .simply-minutes-section > div::after {
  content: ":";
  position: absolute;
  right: -17px;
  top: 7px;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide.left {
    background-position: center right;
  }
}
@media (max-width: 991px) {
  body .portada__container .mySwiperPortada .swiper-wrapper .swiper-slide.right {
    background-position: center left;
  }
}
body .portada__container .mySwiperPortada .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  transition: all 0.4s ease-in-out;
}
body .portada__container .mySwiperPortada .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #e7302a;
}
body .auctions__container {
  padding: 80px 0px;
  background-color: #eef1f6;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  body .auctions__container {
    padding: 80px 40px;
  }
}
body .auctions__container .get_auction {
  display: none;
}
body .auctions__container .mySwiperAuctions {
  overflow: visible;
}
body .auctions__container .mySwiperAuctions__auction {
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  height: 500px;
}
@media (max-width: 991px) {
  body .auctions__container .mySwiperAuctions__auction {
    margin-bottom: 40px;
  }
}
body .auctions__container .mySwiperAuctions__auction__image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 240px;
  transition: all 0.4s ease-in-out;
}
body .auctions__container .mySwiperAuctions__auction__image a {
  display: block;
  width: 100%;
  height: 100%;
}
body .auctions__container .mySwiperAuctions__auction__image:hover {
  transform: scale(1.05);
}
body .auctions__container .mySwiperAuctions__auction__info {
  padding: 15px;
  height: 256px;
  display: grid;
}
body .auctions__container .mySwiperAuctions__auction__info__title {
  height: 65px;
}
body .auctions__container .mySwiperAuctions__auction__info__title h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
body .auctions__container .mySwiperAuctions__auction__info__title h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
}
body .auctions__container .mySwiperAuctions__auction__info__title h4 i {
  font-size: 18px;
}
body .auctions__container .mySwiperAuctions__auction__info__date {
  height: 90px;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate {
  width: 100%;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate td {
  font-size: 0.8em;
  white-space: nowrap;
  margin: 0;
  padding: 5px 0;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate td h6 {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  color: #ffffff;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate td:last-child {
  text-align: right;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate td:last-child h6 {
  background-color: rgb(25, 135, 84) !important;
}
body .auctions__container .mySwiperAuctions__auction__info__date .table-remate th {
  font-size: 0.8em;
  white-space: nowrap;
}
body .auctions__container .mySwiperAuctions__auction__info__button {
  width: 100%;
  justify-self: flex-end;
  display: grid;
  align-items: flex-end;
}
body .auctions__container .mySwiperAuctions__auction__info__button a {
  width: 100%;
}
body .profile__container--card {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  body .profile__container--card {
    padding: 0px 40px;
  }
}
body .profile__container--card .card__container {
  height: 150px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 4px 25px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 4px 25px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 4px 25px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  position: relative;
  border-radius: 15px;
}
body .profile__container--card .card__container--logo {
  background-position: center center;
  background-size: cover;
  height: 100%;
}
body .profile__container--card .card__container--logo a {
  display: block;
  width: 100%;
  height: 100%;
}
body .profile__container--card .card__container--profile {
  border-radius: 50%;
  position: absolute;
  height: 100px;
  width: 100px;
  background-position: center center;
  background-size: cover;
  right: -20px;
  bottom: -50px;
}
body .profile__container--card .profile__container--title {
  margin-top: 60px;
}
body .profile__container--card .profile__container--title h3 {
  text-align: center;
}
body .profile__container--card .profile__container--title h3 a {
  font-size: 20px;
  color: #1C2242;
}
body .profile__container--card .profile__container--subtitle {
  text-align: center;
}
body .action__container {
  background-color: #f5f5f5;
  padding: 60px 0px;
  margin-bottom: 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 991px) {
  body .action__container {
    overflow: hidden;
  }
}
body .action__container--title {
  text-align: center;
}
body .action__container--title h3 {
  font-size: 36px;
}
@media (max-width: 991px) {
  body .action__container--title h3 {
    font-size: 30px;
  }
}
body .action__container--button {
  margin: 30px auto 0px;
  text-align: center;
}
body .action__container--button a {
  font-size: 32px;
  -webkit-box-shadow: 0px 19px 13px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 19px 13px -11px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 19px 13px -11px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  cursor: pointer;
  z-index: 200;
  position: relative;
  font-weight: bold;
  padding: 15px 40px;
}
body .action__container--button a:hover {
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 19px 13px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 19px 13px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 19px 13px -1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  body .action__container--button a {
    font-size: 26px;
  }
}
body .action__container--button a span {
  font-weight: 300;
}
body .action__container .cohete {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  body .action__container .cohete {
    right: -110px;
    top: 150px;
    transform: none;
  }
}
body .clientes__container {
  padding-bottom: 80px;
}
body .clientes__container .mySwiperClients .swiper-wrapper {
  height: auto;
}
body .clientes__container .mySwiperClients .swiper-wrapper .swiper-slide .swiperLogo {
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
body .clientes__container .mySwiperClients .swiper-wrapper .swiper-slide .swiperLogo:hover {
  filter: grayscale(0%);
}
body .clientes__container .mySwiperClients .swiper-pagination-clients {
  text-align: center;
  margin-bottom: 20px;
}
body .clientes__container .mySwiperClients .swiper-pagination-clients .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
body .software__container {
  background-color: #222741;
}
body .software__container--left {
  padding: 60px;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991px) {
  body .software__container--left {
    padding: 0px;
    height: 180px;
  }
}
body .software__container--right .right__container {
  padding: 60px 100px 60px 60px;
}
@media (max-width: 991px) {
  body .software__container--right .right__container {
    padding: 60px 40px;
  }
}
body .software__container--right .right__container--title {
  margin-bottom: 20px;
}
body .software__container--right .right__container--title h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 52px;
}
@media (max-width: 991px) {
  body .software__container--right .right__container--title h2 {
    font-size: 38px;
  }
}
body .software__container--right .right__container--title h2 span {
  text-transform: none;
  font-weight: 300;
  font-size: 60px;
}
@media (max-width: 991px) {
  body .software__container--right .right__container--title h2 span {
    font-size: 52px;
  }
}
body .software__container--right .right__container--subtitle {
  margin-bottom: 20px;
}
body .software__container--right .right__container--subtitle h3 {
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 991px) {
  body .software__container--right .right__container--subtitle h3 {
    font-size: 26px;
  }
}
body .software__container--right .right__container--p {
  margin-bottom: 20px;
}
body .software__container--right .right__container--p p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 991px) {
  body .software__container--right .right__container--p p {
    font-size: 20px;
  }
}
body .software__container--right .right__container--button a {
  font-size: 28px;
  color: #222741;
  padding: 5px 30px;
  font-weight: bold;
  border-radius: 20px;
}
@media (max-width: 991px) {
  body .software__container--right .right__container--button a {
    font-size: 24px;
  }
}
body .footer__container {
  background-color: #F5f5f5;
  padding-top: 30px;
}
body .footer__container--info > div {
  padding-left: 20px;
  border-right: 1px solid #f5f5f5;
}
@media (max-width: 991px) {
  body .footer__container--info > div {
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
    margin: 20px 0px;
  }
}
body .footer__container--info > div p {
  color: #505056;
}
@media (max-width: 991px) {
  body .footer__container--info > div .footer-navigation {
    text-align: left;
  }
}
body .footer__container--info > div .footer__container--contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  body .footer__container--info > div .footer__container--contact {
    padding-bottom: 20px;
  }
}
body .footer__container--info > div .footer__container--contact li {
  display: grid;
  grid-template-columns: 7% 1fr;
  align-items: center;
  margin-bottom: 10px;
}
body .footer__container--info > div .footer__container--contact li a {
  color: #212529;
  text-decoration: none;
}
body .footer__container--info > div .footer__container--contact li svg {
  width: 15px;
  height: 15px;
}
body .footer__container--info > div .footer__container--contact li svg path {
  fill: #e7302a;
}
body .footer__container--info > div .footer__container--contact li i {
  color: #e7302a;
}
body .footer__container--info > div .footer__container--redes {
  display: flex;
}
body .footer__container--info > div .footer__container--redes li {
  background-color: #ffffff;
  padding: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.4s ease-in;
  height: 40px;
  width: 40px;
}
body .footer__container--info > div .footer__container--redes li a {
  padding: 5px;
}
body .footer__container--info > div .footer__container--redes li i {
  color: #212529;
}
body .footer__container--info > div .footer__container--redes li:hover {
  background-color: #e7302a;
}
body .footer__container--info > div .footer__container--redes li:hover i {
  color: #ffffff;
}
body .footer__container--info > div .footer__container--prensa img {
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
body .footer__container--info > div .footer__container--prensa img:hover {
  filter: grayscale(0%);
}
body .footer__container--info > div:last-child {
  border-right: none;
}
@media (max-width: 991px) {
  body .footer__container--info > div:last-child {
    border-bottom: none;
  }
}

/*# sourceMappingURL=style-portal.css.map */
