@charset "utf-8";

/* Existing Css */

a {
  text-decoration: none;
  color: unset;
}

/*------------------------------------------*/
/*-------------How to install-----------------------*/

.appInstall{
  width: 100%;
  padding:5vmin;
  padding-top: 8vmax;
  display: flex;
  justify-content: center;
}

.install_text {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  width:400px;
  padding:5px 20px;
  margin-top: 2vmin;
}

.install_header {
  text-align: left;
  color: white;
  margin: 4vmin 0;
  width: 100%;
}

.install_header h1 {
  margin: 0;
  font-size: clamp( 13px ,7vmin, 40px );
  margin-bottom: 3vmin;
}

.install_header p {
  font-size: clamp( 12px ,5vmin, 25px );
  margin: 0;
}

.install_nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width:100%;
}

.install_nav_item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:3vmin;
  filter:grayscale(100%);
  position:relative;
  padding-left: 2vmin;
}

.install_nav_active{
	filter:none;
}

.install_nav_item img {
  height: 8vmin;
  min-height: 40px;
	z-index: 2;
  position:absolute;
  left:0;
  top:50%;
  transform:translate3d(-20%,-50%,0);
}

.install_nav_item span{
  font-size: clamp( 11px ,3vmin, 20px );
  font-weight: bold;
	cursor:pointer;
  background: linear-gradient(#fbc25c,#d1883b);
  color: black;
  border: solid 1px #fbc25c;
  width:25vmin;
  min-width: 120px;
  height: 6.5vmin;
  min-height: 35px;
  display:flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}


.step_item {
  width: 100%;
  max-width: 400px;
  display:flex;
  align-items: center;
  height:1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  position:absolute;
}

.step_show{
  height:auto;
  opacity: 1;
  pointer-events: all;
  position:static;
}


.slider {
  width: 100%;
}

.swiper-button-prev, .swiper-button-next {
  color: black !important;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vmin;
}

.swiper-slide img {
  width: 70%;
  z-index: 2;
}

.step_text {
  display: flex;
  align-items: center;
  width:100%;
  border-radius: 1vmin;
  text-align: center;
  margin-bottom: 3vmin;
}

.step_text h1 {
  margin: 0;
  color: black;
  font-size: clamp( 12px ,3vmin, 20px );
  white-space: nowrap;
  font-weight: bold;
  background: linear-gradient(to right, #ff8a2b, #fbc25c);
  margin-right: 2vmin;
  padding:1vmin 1vmin;
  padding-right: 3vmin;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

.step_text p {
  font-size: clamp( 12px ,3vmin, 18px );
  margin: 0;
  text-align: left;
}

@media (max-width: 950px) {
/* CSS styles for viewports 950px and below */

.appInstall{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.install_text {
  width:100%;
  text-align: center;
}

.install_header {
  text-align: center;
}


.install_nav {
  display: flex;
  flex-direction: row;
  width:100%;
  justify-content: center;
  margin:4vmin 0;
}

.install_nav_item {
  margin:0 3vmin;
}


.step_item {
  max-width: 80%;
}


}
