/*------------------------------------------------------------------
[Main Stylesheet]

Project     :  Miwlo - Landing Page HTML Template
Version     :  1.0.1
Primary Use :  Saas & Software Startup
Last change :  04/03/2022[Initial Release!]
Updated By  :  ThemesTrace
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

01. Body / Typography
02. Header Area
03. Miwlo App Landing
04. Miwlo Saas Landing
05. Miwlo Product Landing
06. Miwlo Digital Landing
07. About
08. Contact
09. Blog
10. Footer

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

/*------------------------------------------------------------------
[Color codes]

# Dark: #01024e
# Grey: #c7c7c7
# Primary Color: #ff6464
# */

/*------------------------------------------------------------------
[Typography]

Body            :   18px font-family: 'Nunito', sans-serif;
Headers         :   'Lora', serif;
Input, textarea :   'Nunito', sans-serif;
Sidebar heading :   'Quicksand', sans-serif;

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

/*
01. Body / Typography
==========================================================
*/

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");

body {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #231f20;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
}

p {
  color: #231f20;
}

img {
  max-width: 100%;
}

.miwlo-shrink {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.miwlo-btn-pill,
.miwlo-btn-border {
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  width: max-content;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-btn-pill {
  background-color: #6513e1;
  color: #fff;
  border: 2px solid transparent;
}

.miwlo-btn-pill span,
.miwlo-btn-border span {
  display: block;
  color: #898989;
  font-size: 14px;
  line-height: 1;
}

.miwlo-header-area-mobile .miwlo-btn-pill span,
.miwlo-header-area-mobile .miwlo-btn-border span {
  color: #fff;
  font-size: 18px;
}

.miwlo-btn-pill:hover span {
  color: #6513e1 !important;
}

.miwlo-btn-pill .icon,
.miwlo-btn-border .icon {
  font-size: 30px;
  margin-right: 13px;
}

.miwlo-btn-pill:hover {
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #6513e1;
  color: #6513e1;
}

.miwlo-btn-border {
  border: 2px solid #6513e1;
  color: #6513e1;
}

.miwlo-btn-border:hover {
  text-decoration: none;
  color: #fff;
  background-color: #6513e1;
  border: 2px solid transparent;
}

.miwlo-btn-pill.radius,
.miwlo-btn-border.radius {
  border-radius: 50px;
}

.miwlo-btn-pill.primary,
.miwlo-btn-border.primary {
  border-radius: 10px;
}

.miwlo-btn-pill.btn-orange {
  background-color: #f55959;
}

.miwlo-btn-pill.btn-orange:hover {
  border: 2px solid #f55959;
  background-color: transparent;
  color: #f55959;
}

.miwlo-btn-pill.btn-orange:hover span {
  color: #f55959;
}

.miwlo-btn-border.btn-orange {
  border: 2px solid #f55959;
  color: #f55959;
}

.miwlo-btn-border.btn-orange:hover {
  background-color: #f55959;
  border: 2px solid transparent;
}

.miwlo-btn-border.btn-black {
  border: 2px solid #231f20;
  color: #231f20;
}

.miwlo-btn-border.btn-black:hover {
  background-color: #231f20;
  color: #fff;
  border: 2px solid transparent;
}

.miwlo-btn-pill.btn-black {
  background-color: #231f20;
}

.miwlo-btn-pill.btn-black:hover {
  border: 2px solid #231f20;
  background-color: transparent;
  color: #231f20;
}

.miwlo-btn-pill.btn-black:hover span {
  color: #231f20;
}

.section-heading {
  font-weight: 600;
}

.section-subheading {
  color: #797979;
}

.section-subheading-orange {
  color: #f55959;
}

.section-subheading,
.section-subheading-orange {
  font-family: "Quicksand", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../images/shape/dot-grid.png);
}

.loading-text h1 {
  background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif);
  background-size: cover;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  font-size: 120px;
}

/*
02. Header Area
==========================================================
*/

.header-area-desktop {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navbar-brand img {
  width: 115px;
}

.miwlo-white-bg {
  background-color: #fff;
}

.header-area-desktop.fixed {
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}

.miwlo-initial-navbar {
  padding: 0;
}

.miwlo-initial-navbar ul.navbar-nav>li>a {
  position: relative;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 100px;
  color: #231f20;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-initial-navbar ul.navbar-nav>li:not(:last-child) {
  margin-right: 30px;
}

.miwlo-white-menu .miwlo-initial-navbar .navbar-collapse>ul.navbar-nav>li>a,
.miwlo-white-menu .miwlo-initial-navbar .navbar-collapse>ul.navbar-nav>li>a:hover {
  color: #fff;
}

.miwlo-white-menu.fixed .miwlo-initial-navbar ul.navbar-nav li a,
.miwlo-white-menu.fixed .miwlo-initial-navbar ul.navbar-nav li a:hover {
  color: #231f20;
}

.fixed .miwlo-initial-navbar>ul.navbar-nav>li a {
  line-height: 80px;
  height: 80px;
}

.mega-menu-wrap a p {
  position: relative;
  display: block;
  width: max-content;
  margin: auto;
}

.miwlo-dropdown-menu li a {
  position: relative;
}

.miwlo-initial-navbar .collapse>ul.navbar-nav>li>a:before,
.mega-menu-wrap a p:before,
.miwlo-dropdown-menu li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 0.13em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.86, 0.2, 0.17, 1);
}

.miwlo-header-blue .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a:before,
.miwlo-header-blue .mega-menu-wrap a p:before {
  border-color: #6513e1;
}

.miwlo-header-orange .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a:before,
.miwlo-header-orange .mega-menu-wrap a p:before {
  border-color: #f55959;
}

.miwlo-header-blue .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a.active,
.miwlo-header-blue .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a:hover {
  color: #6513e1;
}

.miwlo-header-orange .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a.active,
.miwlo-header-orange .miwlo-initial-navbar .collapse>ul.navbar-nav>li>a:hover {
  color: #f55959;
}

.miwlo-initial-navbar ul.navbar-nav li a:hover:before,
.miwlo-initial-navbar ul.navbar-nav li a.active:before,
.mega-menu-wrap a:hover p:before {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Dropdown menu css */

.miwlo-initial-navbar ul li ul.sub-menu {
  position: absolute;
  background-color: #fff;
  width: 250px;
  z-index: 9;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  transform: translate(0, 10px);
  transition:
    opacity 200ms ease-in,
    transform 200ms ease-in,
    visibility 200ms ease-in;
}

.miwlo-initial-navbar ul li:hover>ul.sub-menu {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}

.miwlo-initial-navbar ul li ul.sub-menu li:first-child a {
  padding-top: 24px;
}

.miwlo-initial-navbar ul li ul.sub-menu li:last-child a {
  padding-bottom: 24px;
}

.miwlo-initial-navbar ul li ul.sub-menu li a {
  color: #01024e;
  line-height: 1;
  padding: 0;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
  margin-right: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-initial-navbar ul li ul.sub-menu li:hover a {
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 30, 0.06);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

li.mega-drop-down {
  position: static;
}

.miwlo-dropdown {
  position: relative;
}

.mega-menu,
.miwlo-dropdown-menu {
  right: 0;
  padding-top: 0;
  position: absolute;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  display: block;
  top: 100%;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}

.mega-menu {
  left: 0;
}

.miwlo-dropdown-menu {
  width: max-content;
  left: -50px;
}

.miwlo-dropdown-menu {
  margin: 0;
  padding: 30px;
  list-style: none;
}

.miwlo-dropdown-menu li:not(:last-child) {
  padding-bottom: 10px;
}

.miwlo-dropdown-menu li a {
  text-decoration: none;
}

.miwlo-dropdown-menu li a:hover {
  color: #231f20;
}

.mega-drop-down:hover .mega-menu,
.miwlo-dropdown:hover .miwlo-dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mega-menu-wrap {
  padding: 30px;
}

.mega-menu-wrap a,
.mega-menu-wrap a:hover {
  text-decoration: none;
}

.mega-menu-wrap a:hover>img {
  opacity: 0.5;
}

.mega-menu-wrap a img {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #efefef;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.mega-menu-wrap a p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.mega-menu-wrap .col-md-3:not(:nth-of-type(-n + 4)) {
  margin-top: 30px;
}

.button-wrapper {
  list-style: none;
}

/*
03. Miwlo App Landing
==========================================================
*/

.miwlo-app-landing-banner-wrap {
  position: relative;
  background-color: #eaf6fb;
}

.app-landing-top-shape .small-dot-wrapper,
.app-landing-top-shape .app-circle-shape,
.app-landing-top-shape .circle-dot-left,
.app-landing-top-shape .circle-dot-right,
.app-landing-bottom-shape .app-line-dot-small-bottom,
.app-landing-bottom-shape .circle-dot-bottom-left {
  position: absolute;
}

.app-landing-top-shape .app-circle-shape {
  top: -45px;
  -webkit-animation: spin 3s ease-in infinite;
  -moz-animation: spin 3s ease-in infinite;
  animation: spin 3s ease-in infinite;
}

.app-landing-top-shape .small-dot-wrapper {
  top: 130px;
  left: 30px;
}

.app-landing-bottom-shape .app-line-dot-small-bottom {
  bottom: 100px;
  left: 48%;
}

.app-landing-bottom-shape .circle-dot-bottom-left {
  left: 50px;
  bottom: 150px;
}

.miwlo-app-landing-banner-text h2 {
  font-family: "Lora", serif;
  font-weight: 400;
}

.miwlo-app-landing-banner-text a {
  margin-top: 20px;
  margin-right: 15px;
}

.miwlo-app-landing-banner-right {
  position: relative;
}

.miwlo-app-landing-banner-image,
.miwlo-app-landing-banner-image .mobile {
  position: relative;
  z-index: 1;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.miwlo-app-landing-banner-image .mobile {
  width: 75%;
  display: block;
  margin: auto;
}

.app-landing-moible-bg {
  opacity: 0.7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.miwlo-why-choose-wrap {
  position: relative;
}

.miwlo-why-choose-left-shape,
.miwlo-why-choose-right-shape {
  position: absolute;
}

.miwlo-why-choose-left-shape {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.miwlo-why-choose-right-shape {
  right: 0;
  top: 0;
  z-index: -1;
}

.why-choice-options {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 4%);
  padding: 50px 40px;
  border-radius: 20px;
  height: 100%;
}

.why-choice-options h2 {
  font-size: 60px;
  margin-bottom: 10px;
}

.why-choice-options h2+p {
  opacity: 0.8;
}

.why-choice-options p {
  margin-bottom: 0;
}

.why-choice-options-img-wrap {
  position: relative;
  padding-bottom: 30px;
}

.why-choice-options-img-wrap:before {
  position: absolute;
  content: "";
}

.why-choice-icon {
  width: 68px;
  height: 68px;
  display: block;
  margin: 0 auto;
  color: var(--accent);
}

/* .why-choice-options.option-one .why-choice-icon {
    color: #7c4dff;
}

.why-choice-options.option-two .why-choice-icon {
    color: #ff6b6b;
}

.why-choice-options.option-three .why-choice-icon {
    color: #0ea5e9;
}

.why-choice-options.option-four .why-choice-icon {
    color: #f97316;
}

.miwlo-contact-details-wrap .why-choice-options.option-one .why-choice-icon {
    color: #22c55e;
}

.miwlo-contact-details-wrap .why-choice-options.option-two .why-choice-icon {
    color: #3b82f6;
} */

.why-choice-options a {
  margin-top: 10px;
}

.why-choice-options.option-two .miwlo-btn-pill {
  border-color: #f55959;
  background-color: #f55959;
  color: #fff;
}

.why-choice-options.option-two .miwlo-btn-pill:hover {
  background-color: #fff;
  color: #f55959;
}

.why-choice-options.option-three .miwlo-btn-pill {
  border-color: #49beb7;
  background-color: #49beb7;
  color: #fff;
}

.why-choice-options.option-three .miwlo-btn-pill:hover {
  background-color: #fff;
  color: #49beb7;
}

.miwlo-features-wrap {
  position: relative;
}

.miwlo-feature-img-wrapper {
  position: relative;
}

.miwlo-feature-img {
  position: relative;
  z-index: 1;
}

.miwlo-features-text-wrapper h3 {
  font-family: "Lora", serif;
  font-weight: 400;
}

.miwlo-feature-img img {
  border-radius: 5px;
}



.miwlo-feature-img-shape {
  position: absolute;
  top: -50px;
  right: 40px;
}

.miwlo-features-text-wrapper ul {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
}

.miwlo-features-text-wrapper ul li {
  position: relative;
  padding-left: 45px;
}

.miwlo-features-text-wrapper ul li:nth-child(odd):before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 3px;
  left: 0;
  background-image: url("../images/shape/list-bullet-01.png");
}

.miwlo-features-text-wrapper ul li:nth-child(even):before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 3px;
  left: 0;
  background-image: url("../images/shape/list-bullet-02.png");
}

.feature-circle-dot-left,
.feature-circle-dot-bottom-left,
.feature-triangle-shape {
  position: absolute;
}

.feature-one .feature-circle-dot-left {
  top: 0;
  left: 200px;
}

.feature-one .feature-circle-dot-bottom-left {
  bottom: -100px;
  left: 250px;
}

.feature-one .feature-triangle-shape {
  right: 0;
  bottom: -100px;
}

.feature-two .feature-circle-dot-left {
  top: 0;
  right: 200px;
}

.feature-two .feature-circle-dot-bottom-left {
  bottom: 0px;
  right: 250px;
}

.feature-two .feature-triangle-shape {
  left: 0;
  bottom: -100px;
}

.miwlo-download-app-wrap {
  position: relative;
  overflow: hidden;
  background-color: #eaf6fb;
}

.miwlo-download-shape {
  position: absolute;
  top: -1px;
  left: -1px;
}

.miwlo-download-app-text {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.miwlo-download-app-text h3 {
  font-family: "Lora", serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.download-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.download-btn i {
  font-size: 1.25rem;
}

.download-btn span {
  font-size: 0.875rem;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.miwlo-download-app-screenshot {
  position: relative;
  text-align: center;
  padding: 2rem 0;
}

.miwlo-download-app-screenshot img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 991px) {
  .miwlo-download-app-wrap {
    overflow: visible;
  }

  .download-buttons {
    max-width: 100%;
  }

  .download-btn {
    justify-content: center;
  }

  .miwlo-download-app-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .miwlo-download-app-screenshot {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .miwlo-download-app-wrap {
    padding-bottom: 4rem;
  }

  .download-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .download-btn {
    padding: 0.75rem 1.25rem;
  }

  .miwlo-download-app-text h3 {
    font-size: 1.75rem;
  }

  .download-description {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .miwlo-download-app-wrap {
    padding-bottom: 4.5rem;
  }
}

.miwlo-app-screenshot-text {
  margin-bottom: 65px;
}

.miwlo-app-screenshot-preview {
  position: relative;
}

.miwlo-app-screenshot-wrap .swiper-container {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.miwlo-app-screenshot-wrap .swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.miwlo-app-screenshot-wrap .swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.miwlo-app-screenshot-wrap .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  box-sizing: content-box;
}

.miwlo-app-screenshot-wrap .swiper-container-android .swiper-slide,
.miwlo-app-screenshot-wrap .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.miwlo-app-screenshot-wrap .swiper-container-multirow>.swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.miwlo-app-screenshot-wrap .swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.miwlo-app-screenshot-wrap .swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.miwlo-app-screenshot-wrap .swiper-3d .swiper-slide-shadow-left,
.miwlo-app-screenshot-wrap .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.miwlo-app-screenshot-wrap .swiper-slide img {
  display: block;
  margin: auto;
  width: 100%;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 4%);
}

.miwlo-app-screenshot-wrap .swiper-container-autoheight,
.miwlo-app-screenshot-wrap .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.miwlo-app-screenshot-wrap .swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property:
    height,
    -webkit-transform;
  transition-property:
    height,
    -webkit-transform;
  transition-property: transform, height;
  transition-property:
    transform,
    height,
    -webkit-transform;
}

.miwlo-app-screenshot-wrap .swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.miwlo-app-screenshot-wrap .swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.miwlo-app-screenshot-wrap .swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.miwlo-app-screenshot-wrap .swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-cube-shadow,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-bottom,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-left,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-right,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-top,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-bottom,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-left,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-right,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-left,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-right,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-top,
.miwlo-app-screenshot-wrap .swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: none;
}

.miwlo-app-screenshot-wrap .swiper-container-coverflow .swiper-wrapper,
.miwlo-app-screenshot-wrap .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}

.miwlo-app-screenshot-wrap .miwlo-app-screenshot-slide .swiper-slide {
  width: 250px;
  transform: unset !important;
}

.miwlo-app-screenshot-wrap .swiper-slide .slider-image .preview-icon {
  z-index: -1;
  width: calc(100% - 30px);
}

.miwlo-app-screenshot-wrap .swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}

.miwlo-app-screenshot-wrap .slider-image img {
  transform: scale(0.9);
}

.miwlo-app-screenshot-wrap .swiper-slide-prev .slider-image img,
.miwlo-app-screenshot-wrap .swiper-slide-next .slider-image img {
  transform: scale(1);
}

.miwlo-app-screenshot-wrap .swiper-slide-prev .slider-image img {
  margin-left: -15px;
}

.miwlo-app-screenshot-wrap .swiper-slide-next .slider-image img {
  margin-right: -15px;
}

.miwlo-app-screenshot-wrap .swiper-slide-active .slider-image img {
  transform: scale(1.1);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-app-screenshot-wrap .swiper-next,
.miwlo-app-screenshot-wrap .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #231f20;
  background-color: #231f20;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  padding: 10px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-app-screenshot-wrap .swiper-next:hover,
.miwlo-app-screenshot-wrap .swiper-prev:hover {
  background-color: #fff;
  color: #231f20;
}

.miwlo-app-screenshot-wrap .swiper-next:focus,
.miwlo-app-screenshot-wrap .swiper-prev:focus {
  outline: 0;
}

.pezo-screenshot-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  margin-top: 40px;
}

.pezo-screenshot-stage {
  position: relative;
  width: min(720px, 100%);
  height: clamp(360px, 52vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  touch-action: pan-y;
}

.pezo-screenshot-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pezo-screenshot-slide {
  position: absolute;
  width: clamp(220px, 32vw, 300px);
  height: clamp(420px, 58vw, 520px);
  border-radius: 32px;
  overflow: hidden;
  transform: translateX(calc(var(--offset, 0) * 62%)) translateY(10px) scale(0.78);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
  background: #fff;
}

.pezo-screenshot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pezo-screenshot-slide.is-active {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.pezo-screenshot-slide.is-left {
  transform: translateX(-60%) translateY(14px) scale(0.88);
  opacity: 0.92;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.pezo-screenshot-slide.is-right {
  transform: translateX(60%) translateY(14px) scale(0.88);
  opacity: 0.92;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.pezo-screenshot-slide.is-hidden {
  opacity: 0;
  z-index: 1;
}

.pezo-screenshot-nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #231f20;
  background-color: #231f20;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.pezo-screenshot-nav:hover {
  background-color: #fff;
  color: #231f20;
  transform: translateY(-2px);
}

.pezo-screenshot-nav:focus {
  outline: 2px solid #231f20;
  outline-offset: 4px;
}

.pezo-screenshot-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.pezo-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  .pezo-screenshot-slide,
  .pezo-screenshot-nav {
    transition: none;
  }
}

.miwlo-app-testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-triangle-shape {
  position: absolute;
  right: 0;
  bottom: 200px;
}

.miwlo-app-testimonial-text {
  position: relative;
  overflow: hidden;
  padding: 150px 80px 145px 80px;
  background-color: #eaf6fb;
  border-radius: 0px 30px 30px 0;
}

.miwlo-app-testimonial-text h2 {
  font-family: "Lora", serif;
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 1;
}

.miwlo-testimonial-text-icon {
  position: absolute;
  top: 60px;
  left: 40px;
}

.miwlo-testimonial-text-icon .layer div {
  position: relative;
  padding: 25px;
  width: 90px;
  height: 90px;
  border: 2px solid #231f20;
  border-radius: 50%;
}

.miwlo-testimonial-text-shape {
  position: absolute;
  bottom: 90px;
  left: 40px;
  opacity: 0.3;
}

.miwlo-app-testimonial-shape {
  position: absolute;
  top: -25px;
  left: -35px;
  transform: scale(0.8);
}

.miwlo-app-testimonial-slide-container {
  position: relative;
  overflow: hidden;
}

.miwlo-testimonial-slide-shape-top {
  position: absolute !important;
  left: 20px;
  top: -10px;
}

.miwlo-testimonial-slide-shape-bottom {
  position: absolute !important;
  right: 50px;
  bottom: 10px;
}

.miwlo-app-testimonial-single-slide p {
  font-weight: 300;
}

.pezo-testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pezo-testimonial-rating {
  color: #f7a100;
  font-size: 20px;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
}

.pezo-testimonial-rating i+i {
  margin-left: 6px;
}

.pezo-testimonial-title {
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 0;
}

.pezo-testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pezo-testimonial-body p {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.7;
  font-size: 16px;
}

.pezo-testimonial-author {
  margin-top: auto;
  font-weight: 700;
  color: #231f20;
  font-size: 16px;
}

.testimonial-pagination {
  margin-top: 45px;
}

.testimonial-pagination.swiper-pagination-bullets {
  bottom: 30px;
  position: relative;
}

.testimonial-pagination .swiper-pagination-bullet {
  margin: 0 15px !important;
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 0;
  opacity: 0.7;
  width: 64px;
  height: 64px;
}

.testimonial-pagination .swiper-pagination-bullet:focus {
  outline: 0;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet .client-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #231f20;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  box-shadow: 0 12px 24px rgba(15, 18, 29, 0.12);
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .client-initial {
  background: #231f20;
  color: #ffffff;
  transform: scale(1.1);
}

.miwlo-testimonial-slide-container {
  overflow: hidden;
  margin-top: 40px;
}

.mt-img-wrapper {
  position: relative;
  margin-right: 15px;
  margin-bottom: 15px;
}

.mt-img-wrapper img {
  width: 80px;
  border-radius: 5px;
}

.mt-img-wrapper:after {
  position: absolute;
  content: "";
  width: 87px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center center;
  top: -30px;
  left: 15px;
  background-image: url(../images/icons/icon-bg-01.png);
  z-index: -1;
}

.mt-qualification {
  color: #77797c;
}

.miwlo-testimonial-single-slide-review-text p {
  font-weight: 300;
  margin-bottom: 0;
}

.miwlo-who-work-with-us {
  padding-bottom: 130px;
}

.miwlo-who-work-with-us-container {
  padding: 50px 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.who-work-with-us-image {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.who-work-with-us-image:hover {
  opacity: 1;
}


.miwlo-footer-wrap {
  padding: 150px 0 145px;
  position: relative;
}

.footer-triangle-shape-top {
  position: absolute !important;
  left: 60%;
  top: 60px;
}

.footer-triangle-shape-bottom {
  position: absolute !important;
  bottom: 150px;
  left: 32%;
}

.miwlo-footer-logo {
  width: 70px;
  margin-bottom: 20px;
}

.miwlo-footer-text {
  position: relative;
  z-index: 1;
}

.miwlo-footer-text h3 {
  margin-top: 0;
}

.miwlo-footer-social,
.miwlo-footer-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.miwlo-footer-social li {
  display: inline-block;
}

.miwlo-footer-social li a {
  border: 1px solid #231f20;
  background-color: #231f20;
  padding: 5px;
  color: #fff;
  display: inline-block;
  width: 40px;
  text-align: center;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.miwlo-footer-social li a:hover {
  background-color: #fff;
  color: #231f20;
}

.miwlo-footer-text ul li {
  margin-bottom: 5px;
}

.miwlo-footer-text p a,
.miwlo-footer-social li a,
.miwlo-footer-text ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.app-circle-shape-footer {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*
07. About
==========================================================
*/

.miwlo-about-img-wrapper {
  position: relative;
  padding-left: 100px;
}

.miwlo-about-experience-wrap {
  position: absolute !important;
  top: -75px;
  left: 0;
}

.miwlo-about-experience {
  background-color: #231f20;
  padding: 28px;
  border-radius: 50%;
  display: inline-block;
  width: 200px;
  height: 200px;
  background-image: url("../images/shape/shape-31.png");
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center center;
}

.miwlo-about-experience h2 {
  margin-bottom: 0;
  font-size: 60px;
}

.miwlo-about-experience p {
  margin-bottom: 0;
  letter-spacing: 0.7px;
  font-size: 14px;
  text-transform: uppercase;
}

.miwlo-about-experience h2,
.miwlo-about-experience p {
  color: #fff;
  text-align: center;
}

.miwlo-about-img-shape {
  right: 90px;
  bottom: -110px;
  position: absolute !important;
}

.miwlo-about-text-wrapper h1 {
  font-family: "Lora", serif;
  font-weight: 400;
}

/*
08. Contact
==========================================================
*/

.miwlo-contact-details-wrap {
  position: relative;
}

.miwlo-contact-details-wrap h4 {
  margin-bottom: 10px;
}

.miwlo-contact-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.miwlo-contact-social li {
  display: inline-block;
}

.miwlo-contact-social li a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}

.miwlo-contact-social li:hover a {
  color: #231f20;
}

.miwlo-contact-area {
  padding: 75px 0;
}

.miwlo-contact-intro {
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
  color: #111827;
}

.miwlo-contact-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
}

.miwlo-contact-form form input:focus {
  border-color: none;
}

.miwlo-contact-form form .name,
.miwlo-contact-form form .phone,
.miwlo-contact-form form .email {
  width: 33.3333%;
  float: left;
}

.miwlo-contact-form form .name,
.miwlo-contact-form form .phone,
.miwlo-contact-form form .email,
.miwlo-contact-form form .message {
  background-color: #fff;
  padding: 25px 15px;
  border-radius: 0;
  border-color: #231f20;
}

.miwlo-contact-form form .name {
  border-right: 0;
  border-radius: 5px 0 0 0;
}

.miwlo-contact-form form .phone {
  border-right: 0;
}

.miwlo-contact-form form .email {
  border-radius: 0 5px 0 0;
}

.miwlo-contact-form form .message {
  border-top: 0;
  height: 200px;
  border-radius: 0 0 5px 5px;
}

.miwlo-contact-form form .submit {
  background-color: #231f20;
  border-radius: 50px;
  color: #fff;
  padding: 20px 30px;
  display: block;
  text-decoration: none;
  margin: 30px auto 0;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.miwlo-contact-form form .submit:hover {
  border-color: #231f20;
  background-color: transparent;
  color: #231f20;
}

/*
10. Footer
==========================================================
*/

/*
Pezo overrides
==========================================================
*/

.who-work-with-us-image a {
  display: inline-block;
  cursor: zoom-in;
}

.pezo-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(6px);
}

.pezo-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pezo-lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.pezo-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 18, 29, 0.45);
  overflow: hidden;
  padding: 18px;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.pezo-lightbox.is-active .pezo-lightbox-content {
  transform: scale(1);
}

.pezo-lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 18, 29, 0.25);
}

.miwlo-creative-team {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.miwlo-creative-team:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: #fbefe7;
}

.miwlo-creative-team-wrap {
  padding: 75px 0;
}

.miwlo-creative-team-wrap,
.miwlo-creative-team-text,
.miwlo-single-team-img,
.miwlo-single-team-bio {
  position: relative;
}

.miwlo-creative-team-text h3 {
  margin-bottom: 30px;
  font-size: 70px;
  font-family: "Lora", serif;
  font-weight: 400;
}

.miwlo-creative-team-shape {
  position: absolute;
  top: -1px;
  left: -1px;
}