/*------------------------------------------------------------------

  Project: La-Pizzeria Pizza App
  Author: Upsqode
  Last change:  24/11/2022 [fixed Float bug, vf]
  Primary use: Mobile Application

------------------------------------------------------------------ */

/*-----------------------[Table of contents]------------------------

1.Default CSS
2.Mobile Screen Section CSS
3.Application Feature Section CSS
4.Background Shape CSS

------------------------------------------------------------------ */

/************************* 1.Default CSS **************************/

html {
  scroll-behavior: smooth;
}
body {
  background-color: #ffffff;
  font-size: 18px;
  position: relative;
  white-space: normal;
  font-family: 'Lexend', sans-serif;
  font-weight: 900;
  color: #000215;
  height: 100%;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}
a:focus, a {
  outline: none;
  text-decoration: none;
  color: #000215;
}
a:hover {
  color: #000215;
}
*, ::after, ::before {
    box-sizing: border-box;
}
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/************************* 2.Mobile Screen Section CSS **************************/

.la-mobile-preview .row {
	-webkit-box-align: center;
}
.la-mobile-preview {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    height: 100%;
    width: 100%;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    padding: 80px 0 80px;
}
.preview-logo .logo {
	font-size: 48px;
    line-height: 60px;
    color: #DF3E08;
    font-weight: 900;
}
.sub-heading {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    padding: 25px 0 35px;
}
.la-feature-item {
	list-style-type: none;
	padding: 0;
}
ul.checkmark li {
	margin-bottom: 12px;
    list-style-type: none;
    padding: 4px 0 0 48px;
    position: relative;
    background: linear-gradient(to right, #FFEFC8, #ffefc87a 60%, #fff 75%, #fff 80%);
    padding: 6px 52px;
    display: inline-block;
    border-radius: 19px 0px 0px 19px;
    width: 80%;
}
ul.checkmark li:before {
	content: " ";
    display: block;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 12px;
    top: 15px;
    margin-top: -9px;
    background: #df3e08;
}
ul.checkmark li:after {
	content: " ";
	display: block;
	width: 9px;
    height: 16px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    position: absolute;
    left: 22px;
    top: 27%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.la-feature-name {
	font-size: 20px;
    font-weight: 500;
}
.content-col {
	padding: 50px 0;
}
.mobile-screen-design iframe {
	width: 385px;
	height: 746px;
	border: 6px solid #000215;
	border-radius: 20px;
	-webkit-box-shadow: 0 0 30px rgb(34 34 34 / 25%);
	box-shadow: 0 0 30px rgb(34 34 34 / 25%);
	background-color: #ffffff;
}
.mobile-screen-design {
	margin: 0 64px;
}
.la-pizzeria-qr {
	width: 260px;
    height: 260px;
   	background: #fff;
    padding: 5px;
    box-shadow: 0 0 8px #dddddd;
    margin: 0 auto;
}
.la-pizzeria-qr img{
	width: 100%;
	height: auto;
}
.qr-element {
	text-align: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}
.mobile-screen-design, .qr-code-col {
	position: relative;
	z-index: 1;
}
.mobile-volumn {
	content: "";
    position: absolute;
    background-color: #000215;
    top: 127px;
    left: 72px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 60px 0 0px #000215;
    width: 4px;
    height: 54px;
}
.mobile-power {
	content: "";
    position: absolute;
    background-color: #000215;
    top: 90px;
    right: 86px;
    border-radius: 0 10px 10px 0;
    width: 4px;
    height: 65px;
}
.down-arrow {
	text-align: center;
    margin: 50px 0 0;
}
.grow-round-one {
	position: absolute;
	left: 50%;
	width: 440px;
	height: 440px;
	transform: translate(-50%, -50%);
	top: 50%;
	border-radius: 50%;
}
.grow-round-one:before, .grow-round-one:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border: 1px solid #df3e08;
	border-radius: inherit; 
}
.grow-round-one:before {
	animation: animationSignal1;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation: animationSignal1;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 2.5s;
	z-index: -1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-moz-transition: all 0.5;
	-o-transition: all 0.5;
	-webkit-transition: all 0.5;
	-ms-transition: all 0.5;
	transition: all 0.5; 
}
.grow-round-one:after {
	animation: animationSignal2;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation: animationSignal2;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 2.5s;
	z-index: -1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-moz-transition: all 0.5;
	-o-transition: all 0.5;
	-webkit-transition: all 0.5;
	-ms-transition: all 0.5;
	transition: all 0.5; 
}
.grow-round-one .grow-round-two {
	position: absolute;
	left: 10%;
	top: 10%;
	height: 80%;
	width: 80%;
	border-radius: 50%; 
}
.grow-round-one .grow-round-two:before, .grow-round-one .grow-round-two:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border: 1px solid #df3e08;
	border-radius: 50%; 
}
.grow-round-one .grow-round-two:before {
	animation: animationSignal3;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation: animationSignal1;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 2.5s;
	z-index: -1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-moz-transition: all 0.5;
	-o-transition: all 0.5;
	-webkit-transition: all 0.5;
	-ms-transition: all 0.5;
	transition: all 0.5; 
}
@keyframes animationSignal1 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9); 
	}
	100% {
		transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		opacity: 0; 
	} 
}
@-webkit-keyframes animationSignal1 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9); 
	}
	100% {
		transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		opacity: 0; 
	} 
}
@keyframes animationSignal2 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9); 
	}
	100% {
		transform: scale(1.9);
		-moz-transform: scale(1.9);
		-webkit-transform: scale(1.9);
		-ms-transform: scale(1.9);
		-o-transform: scale(1.9);
		opacity: 0; 
	} 
}
@-webkit-keyframes animationSignal2 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9); 
	}
	100% {
		transform: scale(1.9);
		-moz-transform: scale(1.9);
		-webkit-transform: scale(1.9);
		-ms-transform: scale(1.9);
		-o-transform: scale(1.9);
		opacity: 0; 
	} 
}
@keyframes animationSignal3 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9); 
	}
	100% {
		transform: scale(2.2);
		-moz-transform: scale(2.2);
		-ms-transform: scale(2.2);
		-o-transform: scale(2.2);
		-webkit-transform: scale(2.2);
		opacity: 0; 
	} 
}
@-webkit-keyframes animationSignal3 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9); 
	}
	100% {
		transform: scale(2.2);
		-moz-transform: scale(2.2);
		-ms-transform: scale(2.2);
		-o-transform: scale(2.2);
		-webkit-transform: scale(2.2);
		opacity: 0; 
	} 
}
@keyframes animationSignal4 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9); 
	}
	100% {
		transform: scale(2.5);
		-moz-transform: scale(2.5);
		-webkit-transform: scale(2.5);
		-ms-transform: scale(2.5);
		-o-transform: scale(2.5);
		opacity: 0; 
	} 
}

@-webkit-keyframes animationSignal4 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9); 
	}
	100% {
		transform: scale(2.5);
		-moz-transform: scale(2.5);
		-webkit-transform: scale(2.5);
		-ms-transform: scale(2.5);
		-o-transform: scale(2.5);
		opacity: 0; 
	} 
}


/************************* 3.Application Feature Section CSS **************************/

.la-application-feature {
	padding: 40px 0 80px;
}
.feature-title:before {
	content: " ";
    display: block;
    border-bottom: 1px solid #df3e08;
    border-top: 1px solid #df3e08;
    height: 5px;
    background-color: #f8f8f8;
}
.feature-title:after {
	content: " ";
    display: block;
    border-bottom: 1px solid #df3e08;
    border-top: 1px solid #df3e08;
    height: 5px;
    background-color: #f8f8f8;
}
.feature-title {
	text-align: center;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 26px 0;
    grid-gap: 12px;
    align-items: center;
    margin: 0 auto;
    line-height: 52px;
}
.feature-heading {
	max-width: 430px;
	margin: 0 auto;
}
.feature-img {
    transition: 800ms;
    text-align: center;
}
.feature-img-wrap {
    background-color: #fff9ec;
    padding: 50px;
	transition: all 500ms ease-in-out;
    border-radius: 35px 5px 35px 5px;
}
.feature-img-wrap:hover {
    cursor: pointer;
    box-shadow: 0px 12px 30px 0px rgb(245 235 213);
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.feature-img img {
    max-width: 100%;
    height: auto;
}
.feature-name {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	text-align: center;
	padding: 20px 0;
	margin: 0;
}
.copyright-content {
	font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 30px;
}
.la-footer {
	padding: 0 0 40px;
}

.la-buy-now .button {
	margin: 0 0 0 10px;
}
.la-button-buy.la-button-inverted {
    color: #ffffff;
    border-color: #ECEFF1;
    display: inline-block;
}
.la-button-buy {
    margin: 1em 2em;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.la-button-round-l {
    border-radius: 40px;
}
.la-button-text-thick {
    font-weight: 600;
}
.la-button-text-upper {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.la-button-size-s {
    font-size: 14px;
}
.button {
    display: block;
    margin: 1em;
    padding: 1em 2em;
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
}
.la-button-buy a {
	color: #ffffff;
}
.la-button-buy:hover a {
	color:#df3e08; 
}
.la-button-buy.la-button-inverted::before, .la-button-buy.la-button-inverted::after {
    background: #df3e08;
}
.la-button-buy::before, .la-button-buy::after {
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.la-button-buy::before {
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    opacity: 0.2;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
}
.la-button-buy::before, .la-button-buy::after {
    content: '';
    position: absolute;
    border-radius: inherit;
    background: #7986cb;
    z-index: -1;
}
.la-button-buy::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(1.1, 1, 1);
    transform: scale3d(1.1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
}
.la-button-buy:hover {
    color: #df3e08;
}
.la-button-buy:hover::after, .la-button-buy:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.la-button-buy:hover::before {
    opacity: 1;
}
.la-button-buy.la-button-inverted:hover::after {
    background-color: #fff;
}
.la-button-buy:hover::after, .la-button-buy:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.la-button-buy:hover::after {
    background-color: #37474f;
}

/************************* 4.Background Shape CSS **************************/

.back-img-one img{
	position: fixed;
    top: 37px;
    bottom: 0;
    left: 35px;
    right: 0;
    z-index: -1;
}
.back-img-two img {
	position: fixed;
    left: 34%;
    top: 42%;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.back-img-three img {
	position: fixed;
    left: auto;
    right: 0;
    top: 20%;
    right: 3%;
    bottom: 0;
    z-index: -1;
}
.back-img-four img {
	position: fixed;
    bottom: 4%;
    top: auto;
    left: 5%;
    right: auto;
    z-index: -1;
}
.back-img-five img {
	position: fixed;
	top: auto;
	bottom: 13%;
	left: auto;
	right: 18%;
    z-index: -1;
}
.back-img-six img {
	position: fixed;
    top: auto;
    bottom: 12px;
    left: auto;
    right: 40%;
    z-index: -1;
}
.back-img-seven img {
	position: fixed;
    top: 3%;
    bottom: auto;
    left: auto;
    right: 25%;
    z-index: -1;
}
.rotate-img {
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.vert-move {
	-webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { 
    	transform: translateY(0); 
    }
    100% { 
    	transform: translateY(-10px); 
    }
}
@keyframes mover {
    0% { 
    	transform: translateY(0); 
    }
    100% { 
    	transform: translateY(-10px); 
    }
}