/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
 *,
 ::before,
 ::after {
   /* 1 */
   box-sizing: inherit;
   /* 2 */ 
  }
 
 /**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritence in all browsers (opinionated).
  */
 ::before,
 ::after {
   text-decoration: inherit;
   /* 1 */
   vertical-align: inherit;
   /* 2 */ }
 
 /**
  * 1. Add border box sizing in all browsers (opinionated).
  * 2. Add the default cursor in all browsers (opinionated).
  * 3. Prevent font size adjustments after orientation changes in IE and iOS.
  */
 html {
   box-sizing: border-box;
   /* 1 */
   cursor: default;
   /* 2 */
   -ms-text-size-adjust: 100%;
   /* 3 */
   -webkit-text-size-adjust: 100%;
   /* 3 */ }
 
 /* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
    ========================================================================== */
 /**
  * Add the correct display in IE 9-.
  */
 article,
 aside,
 footer,
 header,
 nav,
 section {
   display: block; }
 
 /**
  * Remove the margin in all browsers (opinionated).
  */
 body {
   margin: 0; }
 
 /**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Firefox, and Safari.
  */
 h1 {
   font-size: 2em;
   margin: .67em 0; }
 
 /* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
    ========================================================================== */
 /**
  * Add the correct display in IE 9-.
  * 1. Add the correct display in IE.
  */
 figcaption,
 figure,
 main {
   /* 1 */
   display: block; }
 
 /**
  * Add the correct margin in IE 8.
  */
 figure {
   margin: 1em 40px; }
 
 /**
  * 1. Add the correct box sizing in Firefox.
  * 2. Show the overflow in Edge and IE.
  */
 hr {
   box-sizing: content-box;
   /* 1 */
   height: 0;
   /* 1 */
   overflow: visible;
   /* 2 */ }
 
 /**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
 nav ol,
 nav ul {
   list-style: none; }
 
 /**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
 pre {
   font-family: monospace, monospace;
   /* 1 */
   font-size: 1em;
   /* 2 */ }
 
 /* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
    ========================================================================== */
 /**
  * 1. Remove the gray background on active links in IE 10.
  * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  */
 a {
   background-color: transparent;
   /* 1 */
   -webkit-text-decoration-skip: objects;
   /* 2 */ }
 
 /**
  * 1. Remove the bottom border in Firefox 39-.
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */
 abbr[title] {
   border-bottom: none;
   /* 1 */
   text-decoration: underline;
   /* 2 */
   text-decoration: underline dotted;
   /* 2 */ }
 
 /**
  * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  */
 b,
 strong {
   font-weight: inherit; }
 
 /**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
 b,
 strong {
   font-weight: bolder; }
 
 /**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
 code,
 kbd,
 samp {
   font-family: monospace, monospace;
   /* 1 */
   font-size: 1em;
   /* 2 */ }
 
 /**
  * Add the correct font style in Android 4.3-.
  */
 dfn {
   font-style: italic; }
 
 /**
  * Add the correct background and color in IE 9-.
  */
 mark {
   background-color: #000000;
   color: #000000; }
 
 /**
  * Add the correct font size in all browsers.
  */
 small {
   font-size: 80%; }
 
 /**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */
 sub,
 sup {
   font-size: 75%;
   line-height: 0;
   position: relative;
   vertical-align: baseline; }
 
 sub {
   bottom: -.25em; }
 
 sup {
   top: -.5em; }
 
 /*
  * Remove the text shadow on text selections (opinionated).
  * 1. Restore the coloring undone by defining the text shadow (opinionated).
  */
 ::-moz-selection {
   background-color: #000000;
   /* 1 */
   color: #000000;
   /* 1 */
   text-shadow: none; }
 
 ::selection {
   background-color: #000000;
   /* 1 */
   color: #000000;
   /* 1 */
   text-shadow: none; }
 
 /* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
    ========================================================================== */
 /*
  * Change the alignment on media elements in all browers (opinionated).
  */
 audio,
 canvas,
 iframe,
 img,
 svg,
 video {
   vertical-align: middle; }
 
 /**
  * Add the correct display in IE 9-.
  */
 audio,
 video {
   display: inline-block; }
 
 /**
  * Add the correct display in iOS 4-7.
  */
 audio:not([controls]) {
   display: none;
   height: 0; }
 
 /**
  * Remove the border on images inside links in IE 10-.
  */
 img {
   border-style: none; }
 
 /**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
 svg {
   fill: currentColor; }
 
 /**
  * Hide the overflow in IE.
  */
 svg:not(:root) {
   overflow: hidden; }
 
 /* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
    ========================================================================== */
 /**
  * Collapse border spacing
  */
 table {
   border-collapse: collapse; }
 
 /* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
    ========================================================================== */
 /**
  * Remove the margin in Firefox and Safari.
  */
 button,
 input,
 optgroup,
 select,
 textarea {
   margin: 0; }
 
 /**
  * Inherit styling in all browsers (opinionated).
  */
 button,
 input,
 select,
 textarea {
   background-color: transparent;
   color: inherit;
   font-size: inherit;
   line-height: inherit; }
 
 /**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
 button,
 input {
   /* 1 */
   overflow: visible; }
 
 /**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
 button,
 select {
   /* 1 */
   text-transform: none; }
 
 /**
  * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  *    controls in Android 4.
  * 2. Correct the inability to style clickable types in iOS and Safari.
  */
 button,
 html [type="button"],
 [type="reset"],
 [type="submit"] {
   -webkit-appearance: button;
   /* 2 */ }
 
 /**
  * Remove the inner border and padding in Firefox.
  */
 button::-moz-focus-inner,
 [type="button"]::-moz-focus-inner,
 [type="reset"]::-moz-focus-inner,
 [type="submit"]::-moz-focus-inner {
   border-style: none;
   padding: 0; }
 
 /**
  * Restore the focus styles unset by the previous rule.
  */
 button:-moz-focusring,
 [type="button"]:-moz-focusring,
 [type="reset"]:-moz-focusring,
 [type="submit"]:-moz-focusring {
   outline: 1px dotted ButtonText; }
 
 /**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *    `fieldset` elements in all browsers.
  */
 legend {
   box-sizing: border-box;
   /* 1 */
   color: inherit;
   /* 2 */
   display: table;
   /* 1 */
   max-width: 100%;
   /* 1 */
   padding: 0;
   /* 3 */
   white-space: normal;
   /* 1 */ }
 
 /**
  * 1. Add the correct display in IE 9-.
  * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
 progress {
   display: inline-block;
   /* 1 */
   vertical-align: baseline;
   /* 2 */ }
 
 /**
  * 1. Remove the default vertical scrollbar in IE.
  * 2. Change the resize direction on textareas in all browsers (opinionated).
  */
 textarea {
   overflow: auto;
   /* 1 */
   resize: vertical;
   /* 2 */ }
 
 /**
  * 1. Add the correct box sizing in IE 10-.
  * 2. Remove the padding in IE 10-.
  */
 [type="checkbox"],
 [type="radio"] {
   box-sizing: border-box;
   /* 1 */
   padding: 0;
   /* 2 */ }
 
 /**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
 [type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
   height: auto; }
 
 /**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
 [type="search"] {
   -webkit-appearance: textfield;
   /* 1 */
   outline-offset: -2px;
   /* 2 */ }
 
 /**
  * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  */
 [type="search"]::-webkit-search-cancel-button,
 [type="search"]::-webkit-search-decoration {
   -webkit-appearance: none; }
 
 /**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
 ::-webkit-file-upload-button {
   -webkit-appearance: button;
   /* 1 */
   font: inherit;
   /* 2 */ }
 
 /* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
    ========================================================================== */
 /*
  * Add the correct display in IE 9-.
  * 1. Add the correct display in Edge, IE, and Firefox.
  */
 details,
 menu {
   display: block; }
 
 /*
  * Add the correct display in all browsers.
  */
 summary {
   display: list-item; }
 
 /* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
    ========================================================================== */
 /**
  * Add the correct display in IE 9-.
  */
 canvas {
   display: inline-block; }
 
 /**
  * Add the correct display in IE.
  */
 template {
   display: none; }
 
 /* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
    ========================================================================== */
 /*
  * Remove the tapping delay on clickable elements (opinionated).
  * 1. Remove the tapping delay in IE 10.
  */
 a,
 area,
 button,
 input,
 label,
 select,
 summary,
 textarea,
 [tabindex] {
   -ms-touch-action: manipulation;
   /* 1 */
   touch-action: manipulation; }
 
 /**
  * Add the correct display in IE 10-.
  */
 [hidden] {
   display: none; }
 
 /* ARIA (https://w3c.github.io/html-aria/)
    ========================================================================== */
 /**
  * Change the cursor on busy elements (opinionated).
  */
 [aria-busy="true"] {
   cursor: progress; }
 
 /*
  * Change the cursor on control elements (opinionated).
  */
 [aria-controls] {
   cursor: pointer; }
 
 /*
  * Change the display on visually hidden accessible elements (opinionated).
  */
 [aria-hidden="false"][hidden]:not(:focus) {
   clip: rect(0, 0, 0, 0);
   display: inherit;
   position: absolute; }
 
 /*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements (opinionated).
  */
 [aria-disabled] {
   cursor: default; }
 
 /* Global Variables */
 /* Core */
 html {
   box-sizing: border-box; }
 
 *, *:before, *:after {
   box-sizing: inherit; }
 
 body {
   font-family: 'Open Sans', sans-serif;
   font-smoothing: antialiased;
   color: white;
   background-color: transparent; }
 
 h1, h2, h3, h4, h5, h6 {
   margin: 0; }
 
 a {
   text-decoration: none; }
 
 ::input-placeholder {
   /* Chrome/Opera/Safari */
   color: rgba(0, 0, 0, 0.6); }
 
 ::-webkit-input-placeholder {
   color: rgba(0, 0, 0, 0.6); }
 
 ::-moz-placeholder {
   /* Firefox 19+ */
   color: rgba(0, 0, 0, 0.6); }
 
 :-ms-input-placeholder {
   /* IE 10+ */
   color: rgba(0, 0, 0, 0.6); }
 
 :-moz-placeholder {
   /* Firefox 18- */
   color: rgba(0, 0, 0, 0.6); }
 
 @media screen and (max-width: 1000px) {
   body {
     background-image: linear-gradient(120deg, #000000 0%, #000000 100%); }
 
   ::input-placeholder {
     /* Chrome/Opera/Safari */
     color: #000000 0%; }
 
   ::-webkit-input-placeholder {
     color: #000000 0%; }
 
   ::-moz-placeholder {
     /* Firefox 19+ */
     color: #000000 0%; }
 
   :-ms-input-placeholder {
     /* IE 10+ */
     color: #000000 0%; }
 
   :-moz-placeholder {
     /* Firefox 18- */
     color: #000000 0%; } }
 .logo {
   position: relative;
   max-width: 90px;
   padding-bottom: 40px; }
 
 .divider {
   content: '';
   width: 100px;
   height: 4px;
   margin: 0 0 40px 0;
   background-color: #000000; }
 
 @media screen and (max-width: 1000px) {
   .logo {
     max-width: 200px; }
 
   .divider {
     margin: 3em 0 5em 0; } }
 .claim {
   font-weight: 700;
   font-variant-ligatures: normal;
   font-size: 4em;
   line-height: 1em; }
 
 .claim span:nth-child(1) {
   font-weight: 300; }
 
 .claim span:nth-child(2) {
   animation-delay: 1.8s;
   font-weight: 300;
   color: #000000; }
 
 .claim span:nth-child(3) {
   animation-delay: 3.6s;
   font-weight: 300;
   color: #000000; }
 
 .claim-words {
   position: relative;
   height: 4em;
   overflow: hidden; }
 
 .claim-words span {
   position: absolute;
   opacity: 0;
   overflow: hidden;
   color: #000000;
   animation: animateWord 7.2s linear 1 0s; }
 
 .claim span:nth-child(4) {
   animation-delay: 5.4s;
   animation-name: animateFinalWord;
   animation-fill-mode: forwards;
   color: #000000; }
 
 @keyframes animateWord {
   0% {
     opacity: 0; }
   2% {
     opacity: 0;
     transform: translateY(-30px); }
   5% {
     opacity: 1;
     transform: translateY(0px); }
   17% {
     opacity: 1;
     transform: translateY(0px); }
   20% {
     opacity: 0;
     transform: translateY(30px); }
   80% {
     opacity: 0; }
   100% {
     opacity: 0; } }
 @keyframes animateFinalWord {
   0% {
     opacity: 0; }
   2% {
     opacity: 0;
     transform: translateY(-30px); }
   5% {
     opacity: 1;
     transform: translateY(0px); }
   17% {
     opacity: 1;
     transform: translateY(0px); }
   100% {
     opacity: 1;
     transform: translateY(0px); } }
 @media screen and (max-width: 1000px) {
   .claim {
     font-size: 8em; }
 
   .claim-words {
     height: 2em; }
 
   .claim-words span {
     animation: none; }
 
   .claim span:nth-child(4) {
     opacity: 1; } }
 .networks {
   display: block;
   position: absolute;
   right: 0;
   top: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width: 100px;
   height: 100%; }
 
 .networks-item {
   opacity: .8;
   transition: opacity .3s ease; }
   .networks-item:hover {
     opacity: 1; }
   .networks-item:not(:last-of-type) {
     margin-bottom: 30px; }
 
 @media screen and (max-width: 1000px) {
   .networks {
     background: transparent;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     bottom: 0;
     right: 0;
     top: auto;
     margin-top: 120px;
     width: 100%;
     height: 60px;
     flex-direction: row; }
     .networks .networks-item {
       opacity: 1;
       margin-bottom: 0 !important; }
       .networks .networks-item:not(:last-of-type) {
         margin-right: 100px; }
     .networks .networks-item img {
       width: 60px; } }


 #signup-form-desktop {
   font-family: 'Open Sans', sans-serif;
   color: white;
   width: 600px; }
   #signup-form-desktop #signup-email {
     background: none;
     border: none;
     border-bottom: 1px solid #000000;
     font-family: 'Open Sans', sans-serif;
     font-size: 1.6em;
     font-weight: 300;
     color: #000000;
     padding: 10px 10px 10px 0;
     width: 400px; }
     #signup-form-desktop #signup-email:focus {
       outline: none; }
   #signup-form-desktop #signup-submit {
     background: #000000;
     border: none;
     padding: 10px 15px;
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     font-family: 'Open Sans', sans-serif;
     font-weight: 600;
     box-shadow: 0px 5px 6px 0px transparent;
     transform: translate3d(0, 0, 0);
     transition: box-shadow .3s ease, transform .3s ease; }
     #signup-form-desktop #signup-submit:focus {
       outline: none; }
     #signup-form-desktop #signup-submit:hover {
       cursor: pointer; }
     #signup-form-desktop #signup-submit:hover {
       box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.1);
       transform: translate3d(0, -2px, 0); }
     #signup-form-desktop #signup-submit .icon {
       position: relative;
       top: 1px;
       margin-left: 8px;
       max-width: 15px; }
   #signup-form-desktop #signup-label {
     display: block;
     font-size: .8em;
     font-weight: 700;
     color: #000000;
     opacity: 0;
     margin-top: 10px;
     transform: translate3d(0, 5px, 0);
     transition: opacity .3s ease, transform .3s ease; }
     #signup-form-desktop #signup-label.error, #signup-form-desktop #signup-label.valid {
       transform: translate3d(0, 0, 0);
       opacity: 1; }
     #signup-form-desktop #signup-label a {
       color: #000000;
       transition: color .3s ease; }
       #signup-form-desktop #signup-label a:hover {
         color: #000000; }
 

 #signup-form-mobile {
   display: none !important;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width: 100%;
   padding: 0 10%; }
   #signup-form-mobile #signup-email {
     background: none;
     border: none;
     text-align: center;
     color: #ffffff;                            /* text color of exmail textfield */  
     padding: 30px 30px 30px 0; }
     #signup-form-mobile #signup-email:focus {
       outline: none; }

       /* button itself */ 
   #signup-form-mobile #signup-submit {
     font-size: 3em;
     padding: 30px 30px;
     margin-top: 25px;
     background: #ffffff;                       /* background color of the signup button */ 
     width: 100%;
     border-radius: 12px;
     color: #000000;                            /* text color of submit button */  
     border: none; }
     #signup-form-mobile #signup-submit .icon {
       max-width: 30px;
       margin-left: 25px; }
   #signup-form-mobile #signup-email {
     font-size: 3em;
     width: 100%;
     border-bottom: 4px solid white; }

     /* label under the submit button */ 
   #signup-form-mobile #signup-label {
     display: block;
     font-size: 1em;
     font-weight: 700;
     color: #c2c2c2;                            /* color of the information label under the button */ 
     opacity: 0;
     margin-top: 10px;
     transform: translate3d(0, 5px, 0);
     transition: opacity .3s ease, transform .3s ease; }
     #signup-form-mobile #signup-label.error, #signup-form-mobile #signup-label.valid {
       transform: translate3d(0, 0, 0);
       opacity: 1; }
     #signup-form-mobile #signup-label a {
       color: #00ff55;
       transition: color .3s ease; }
       #signup-form-mobile #signup-label a:hover {
        color: #ff0000;                            /* UNKNOWN */  
      }
 
  /* Device is a Mobile device */  
 @media screen and (max-width: 1000px) {
   
   #signup-form-mobile {
     display: block !important; }
 
   #signup-form-desktop {
     display: none; } }
     
 .footer {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100vw;
   height: 150px;
   position: fixed;
   bottom: 0;
   left: 0;
   overflow: hidden;
   background: white;
   z-index: 50; }
 
 @media screen and (max-width: 1000px) {
   .footer {
     display: none; } }
 /* Main */

 /* Media Queries for Different Breakpoints 
 https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488#file-media-query-css-L7
 */
 
 /* Desktop and Tablets */
@media (min-width: 1125px) {
  
  .main-wrapper {
    background-image: linear-gradient(120deg, #000000 0%, #000000 100%);
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70vw; /* 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    margin-bottom: 150px;
    overflow-x: hidden; 
   }
}

/* Mobile and iphone X */
@media (min-width: 481px) and (max-width: 1125px) {
  
  .main-wrapper {
    background-image: linear-gradient(120deg, #000000 0%, #000000 100%);
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    margin-bottom: 150px;
    overflow-x: hidden; 
   }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  

} 


 .main-inner {
   display: flex;
   flex-direction: column;
   width: 600px;
   position: relative;
   top: 4em; }
 
 @media screen and (max-width: 1000px) {
   .main-inner {
     top: 0; }
 
   .main-wrapper {
     margin-bottom: 0;
     background: transparent; }
 
   .social-container {
     height: 250px;
     width: 100%; } 
  }
 
 /*# sourceMappingURL=style.css.map */
 
 
 
 
 
 
 
 
 /*                   */
 
 
 
 
 
 
 
 
 
 * {box-sizing:border-box}
 
 /* Slideshow container */
 .slideshow-container {
   max-width: 100vw; /*1000px;*/
   position: relative;
   margin: auto;
 }
 
 /* Hide the images by default */
 .mySlides {
     display: none;
 }
 
 /* Next & previous buttons */
 .prev, .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width: auto;
   margin-top: -22px;
   padding: 16px;
   color: white;
   font-weight: bold;
   font-size: 18px;
   transition: 0.6s ease;
   border-radius: 0 3px 3px 0;
 }
 
 /* Position the "next button" to the right */
 .next {
   right: 0;
   border-radius: 3px 0 0 3px;
 }
 
 /* On hover, add a black background color with a little bit see-through */
 .prev:hover, .next:hover {
   background-color: rgba(0,0,0,0.8);
 }
 
 /* Caption text */
 .text {
   color: #f2f2f2;
   font-size: 15px;
   padding: 8px 12px;
   position: absolute;
   bottom: 8px;
   width: 100%;
   text-align: center;
 }
 
 /* Number text (1/3 etc) */
 .numbertext {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
 }
 
 /* The dots/bullets/indicators */
 .dot {
   cursor:pointer;
   height: 15px;
   width: 15px;
   margin: 0 2px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
   transition: background-color 0.6s ease;
 }
 
 .active, .dot:hover {
   background-color: #717171;
 }
 
 /* Fading animation */
 .fade {
   -webkit-animation-name: fade;
   -webkit-animation-duration: 1.5s;
   animation-name: fade;
   animation-duration: 1.5s;
 }
 
 @-webkit-keyframes fade {
   from {opacity: .4} 
   to {opacity: 1}
 }
 
 @keyframes fade {
   from {opacity: .4} 
   to {opacity: 1}
 }