/*--------------------------------------------------------------
TABLE OF CONTENT
----------------------------------------------------------------
1.0 VARIABLE
|  1.1 COLOR
|  1.2 TYPOGRAPHY
|  1.3 LAYOUT
2.0 FOUNDATION
3.0 TYPOGRAPHY
4.0 IMAGE
5.0 LAYOUT
6.0 COMPONENT
|  6.1 CTA
|  6.2 BUTTON
|  6.3 TOGGLE
|  6.4 CARD
|  6.5 LIST
7.0 SECTION
|  7.1 HEADER
|  7.2 HERO
|  7.3 CUSTOMER
|  7.4 FEATURE
|  7.5 PRICING
|  7.6 TESTIMONIAL
|  7.7 CLOSE
|  7.8 FOOTER
8.0 MEDIA
|  8.1 768PX
|  8.2 1024PX
|  8.3 1200PX
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 VARIABLE
--------------------------------------------------------------*/

:root {


  --size-title-font: 32px;

  --size-ui-margin-side: 100px;

  --size-copyright-font: 16px;

  

  /*------------------------------------------------------------
  |
  | 1.1 COLOR
  |
  ------------------------------------------------------------*/


  --color-body-background: #555555;

  --color-float-front: #444444;
  --color-float-side:  #333333;
  --color-float-top:   #333333;
  --color-float-side-border: #000000;

  --color-on-float: #333333;

  --color-float-shadow: #000000;

  --color-char-default: white;

}






html { 
  box-sizing: border-box; 
  scroll-behavior: smooth;
  min-width: 400px;
}

body {
  margin: 0;
  background-color: var(--color-body-background);
  color: var(--color-char-default);
}



h1,
h2,
p,
ul { margin: 0; }



.layout-container{
  margin: 0 var(--size-ui-margin-side);
}

.text-nowrap{
  white-space: nowrap;
}

.header-title{
  font-size: var(--size-title-font);
  color: white;
  text-decoration: none;
  text-shadow:  -3px 10px 7px var(--color-float-shadow);
}


/* floating----------------------------------------------------------- */

.floating-container{
  background-color: var(--color-float-front);
  margin: 10px 0;
  padding: 10px;
  transform: skewY(-5deg);
  transition: 1s;
  border-color: #1a1a1a;
}
.floating-container::before{
  content: "";
  position: absolute;
  border-top: thin solid var(--color-float-side-border);
  top: 0px;
  left: -10px;
  width: 10px;
  height: 100%;
  background-color: var(--color-float-side);
  transform-origin: right;
  transform: skewY(45deg);
}
.floating-container::after{
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  width: 100%;
  height: 10px;
  background-color: var(--color-float-top);
  transform-origin: bottom;
  transform: skewX(45deg);
}

.floating-container:hover{
  transform: skewY(-4deg);
}

.floating-shadow{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10px;
  box-shadow: -10px 30px 15px var(--color-float-shadow);
}

.floating-title-container{
  z-index: 1;
  transform: skewY(-5deg);
  text-shadow: -3px 10px 7px var(--color-float-shadow);
  white-space: nowrap;
}




/* app-------------------------------------------------------------------- */
.app-container{
  max-width: 600px;
  margin: 0px auto 50px auto;
  filter: blur(100px);
  transition: 0.1s;
}
.app-container:hover{
  filter: blur(0px);
}

/* app-title */
.app-title{
  display: inline;
}
.app-subtitle{
  display: inline;
}

/* app-image */
.app-images-container{
  height: 50vh;
  text-align: center;
}
.app-image-container{
  display: inline-block;
  height: 100%;
  text-align: center;
}
.app-image{
  height: 100%;
  filter: drop-shadow(-3px 10px 20px rgba(0,0,0,1));
}

/* app-button */
.app-button-container{
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.app-button {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 10px;
  height: 50px;
  max-height: 5vh;
  text-align:center;
  border: none;
  background-size: 300% 100%;

  border-radius: 50px;
  /* moz-transition: all .4s ease-in-out; */
  /* -o-transition: all .4s ease-in-out; */
  /* -webkit-transition: all .4s ease-in-out; */
  transition: all .4s ease-in-out;
}
.app-button:hover {
  background-position: 100% 0;
  /* moz-transition: all .4s ease-in-out; */
  /* -o-transition: all .4s ease-in-out; */
  /* -webkit-transition: all .4s ease-in-out; */
  transition: all .4s ease-in-out;
}
.app-button:focus {
  outline: none;
}
.app-button-download{
  width: 70%;
  background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.app-button-policy{
  width: 50%;
  background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}


/* policy-------------------------------------------------------------------- */

.policy-sub-container{
  background-color: var(--color-float-front);
  margin-bottom: 30px;
}
.policy-title{
  font-size: 20px;
}

.policy-subtitle{
  font-size: 20px;
}
.policy-text-container{
  margin-top: 10px;
}

.policy-link-container{
  display: block;
  padding: 10px;
  color: white;
  background-color: var(--color-on-float);
  border-radius: 10px;
  text-decoration: none;
  word-break: break-all;
}


/* policy-------------------------------------------------------------------- */

footer{
  margin-top: 50px;
  z-index: -1;
}
.footer-copyright{
  font-size: var(--size-copyright-font);
}


/*--------------------------------------------------------------
|
| 8.1 768PX
|
--------------------------------------------------------------*/

@media screen and (max-width: 600px) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  
  :root {

    --size-ui-margin-side: 50px;

    --size-title-font: 27px;

    --size-copyright-font: 12px



  }

 
}

