@charset "UTF-8";
/* Author:
Gruppo Ottomani
www.gruppoottomani.com
*/
/* For: 

*/
/* Website: 

*/
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Prevent text selection
 */
/* line 9, scss/helpers/_helpers.scss */
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
/* line 18, scss/helpers/_helpers.scss */
.no-select.pointer {
  cursor: pointer;
}

/*
 * Floats
 */
/* line 27, scss/helpers/_helpers.scss */
.pull-right {
  float: right;
}

/* line 31, scss/helpers/_helpers.scss */
.pull-left {
  float: left;
}

/*
 * Image replacement
 */
/* line 39, scss/helpers/_helpers.scss */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

/* line 47, scss/helpers/_helpers.scss */
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
/* line 58, scss/helpers/_helpers.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
/* line 67, scss/helpers/_helpers.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
/* line 83, scss/helpers/_helpers.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
/* line 97, scss/helpers/_helpers.scss */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 113, scss/helpers/_helpers.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

/* line 119, scss/helpers/_helpers.scss */
.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
/* line 128, scss/helpers/_helpers.scss */
.clearfix {
  *zoom: 1;
}

/*
 * Old fix for floats
 * Used when don't want to wrap floating elements.
 */
/* line 137, scss/helpers/_helpers.scss */
.clear {
  clear: both;
}

/*
 * Display block
 * 
 */
/* line 145, scss/helpers/_helpers.scss */
.block {
  display: block;
}

/*
 * Box-sizing =  border-box behaviour
 * 
 */
/* line 153, scss/helpers/_helpers.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(/assets/css/scss/behaviours/boxsizing.htc);
  background-clip: padding-box !important;
}

/**
 * Transforms the target element
 * in a circle of the give radius
 */
/**
 * Transforms the target element
 * in a triangle. Accepts direction, radius and color
 * as parameters.
 * @param $direction   [n, e, s, w]
 * @param $r           radius of the semi-circle 
 *                     at the base of the triangle
 * @param $color       
 */
/*---CSS RESET---*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, scss/helpers/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, hr, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, scss/helpers/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 31, scss/helpers/_reset.scss */
body {
  line-height: 1;
}

/* line 34, scss/helpers/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 37, scss/helpers/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 40, scss/helpers/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 45, scss/helpers/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 49, scss/helpers/_reset.scss */
b, strong {
  font-weight: bold;
}

/* line 52, scss/helpers/_reset.scss */
em {
  font-style: italic;
}

/* line 56, scss/helpers/_reset.scss */
a {
  text-decoration: none;
}

/* line 59, scss/helpers/_reset.scss */
a img {
  border: none;
}

/*! normalize.css v2.0.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
/* line 74, scss/helpers/_reset.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 87, scss/helpers/_reset.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 96, scss/helpers/_reset.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 109, scss/helpers/_reset.scss */
html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/* line 122, scss/helpers/_reset.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
/* line 130, scss/helpers/_reset.scss */
a:active,
a:hover,
a:focus {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 144, scss/helpers/_reset.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 153, scss/helpers/_reset.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
/* line 161, scss/helpers/_reset.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 170, scss/helpers/_reset.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
/* line 180, scss/helpers/_reset.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 188, scss/helpers/_reset.scss */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 196, scss/helpers/_reset.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 204, scss/helpers/_reset.scss */
sup {
  top: -0.5em;
}

/* line 208, scss/helpers/_reset.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
/* line 220, scss/helpers/_reset.scss */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 228, scss/helpers/_reset.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
/* line 240, scss/helpers/_reset.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* line 252, scss/helpers/_reset.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 263, scss/helpers/_reset.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
/* line 274, scss/helpers/_reset.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 288, scss/helpers/_reset.scss */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 301, scss/helpers/_reset.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
/* line 313, scss/helpers/_reset.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
/* line 323, scss/helpers/_reset.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 335, scss/helpers/_reset.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 347, scss/helpers/_reset.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 356, scss/helpers/_reset.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
/* line 367, scss/helpers/_reset.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
/* line 382, scss/helpers/_reset.scss */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9
 */
/* line 388, scss/helpers/_reset.scss */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/* line 395, scss/helpers/_reset.scss */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/* line 402, scss/helpers/_reset.scss */
form {
  margin: 0;
}

/* line 403, scss/helpers/_reset.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Indicate that 'label' will shift focus to the associated form element */
/* line 406, scss/helpers/_reset.scss */
label {
  cursor: pointer;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
/* line 413, scss/helpers/_reset.scss */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
/* line 421, scss/helpers/_reset.scss */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
/* line 427, scss/helpers/_reset.scss */
button, input {
  line-height: normal;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
/* line 435, scss/helpers/_reset.scss */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

/*
 * Re-set default cursor for disabled elements
 */
/* line 441, scss/helpers/_reset.scss */
button[disabled], input[disabled] {
  cursor: default;
}

/*
 * Consistent box sizing and appearance
 */
/* line 447, scss/helpers/_reset.scss */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

/* line 448, scss/helpers/_reset.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 449, scss/helpers/_reset.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
/* line 455, scss/helpers/_reset.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
/* line 462, scss/helpers/_reset.scss */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Colors for form validity */
/* line 466, scss/helpers/_reset.scss */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */
/* line 473, scss/helpers/_reset.scss */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
/* line 481, scss/helpers/_reset.scss */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

/* line 482, scss/helpers/_reset.scss */
.ir br {
  display: none;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
/* line 485, scss/helpers/_reset.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
/* line 488, scss/helpers/_reset.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
/* line 491, scss/helpers/_reset.scss */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
/* line 494, scss/helpers/_reset.scss */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
/* line 497, scss/helpers/_reset.scss */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

/* line 498, scss/helpers/_reset.scss */
.clearfix:after {
  clear: both;
}

/* line 499, scss/helpers/_reset.scss */
.clearfix {
  *zoom: 1;
}

/* Float left, right and clear */
/*.left { float: left; }
.right { float: right; }*/
/* line 504, scss/helpers/_reset.scss */
.clear {
  clear: both;
  height: 0;
  line-height: 0;
}

/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  /* line 513, scss/helpers/_reset.scss */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  /* line 514, scss/helpers/_reset.scss */
  a, a:visited {
    text-decoration: underline;
  }

  /* line 515, scss/helpers/_reset.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 516, scss/helpers/_reset.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 517, scss/helpers/_reset.scss */
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  /* line 518, scss/helpers/_reset.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 519, scss/helpers/_reset.scss */
  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  /* line 520, scss/helpers/_reset.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 521, scss/helpers/_reset.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 523, scss/helpers/_reset.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 524, scss/helpers/_reset.scss */
  h2, h3 {
    page-break-after: avoid;
  }
}
/* line 3, scss/base/_typography.scss */
body {
  font-family: "Lato", sans-serif;
}

/* line 15, scss/base/_colors.scss */
.red_background {
  background-color: #BC2259;
}

/* line 19, scss/base/_colors.scss */
.blue_background {
  background-color: #014674;
}

/* line 23, scss/base/_colors.scss */
.grey_background {
  background-color: #eee;
}

/* Paths */
/* line 4, scss/base/_base.scss */
* {
  margin: 0;
}

/* line 7, scss/base/_base.scss */
html {
  height: 100%;
}
/* line 9, scss/base/_base.scss */
html.no_height {
  height: auto;
}

/* line 16, scss/base/_base.scss */
html, body {
  width: 100%;
  position: relative;
}
/* line 19, scss/base/_base.scss */
html.agreement, body.agreement {
  background-color: #56204d;
}
/* line 22, scss/base/_base.scss */
html.home, body.home {
  height: 100%;
}

/* line 27, scss/base/_base.scss */
.page-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* line 34, scss/base/_base.scss */
.page-content.intro {
  max-width: 800px;
}
/* line 37, scss/base/_base.scss */
.page-content.padding_bottom_none {
  padding-bottom: 0px;
}
/* line 41, scss/base/_base.scss */
.page-content.how_to_install {
  text-align: left;
}

/* line 46, scss/base/_base.scss */
.padding_side {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 51, scss/base/_base.scss */
.page {
  height: 100%;
  min-height: 100%;
}
/* line 54, scss/base/_base.scss */
.page.height_none {
  height: auto;
}
@media screen and (max-width: 740px) {
  /* line 51, scss/base/_base.scss */
  .page {
    height: auto;
  }
}

/* line 63, scss/base/_base.scss */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
  height: 100%;
}
@media screen and (max-width: 550px) {
  /* line 63, scss/base/_base.scss */
  .container {
    margin-top: 50px;
  }
}
/* line 74, scss/base/_base.scss */
.container.margin_top_none {
  margin-top: 0px;
}

/* Magnific Popup CSS */
/* line 2, scss/vendors/_magnific-popup.scss */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 14, scss/vendors/_magnific-popup.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 24, scss/vendors/_magnific-popup.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 36, scss/vendors/_magnific-popup.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 42, scss/vendors/_magnific-popup.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 45, scss/vendors/_magnific-popup.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 53, scss/vendors/_magnific-popup.scss */
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 57, scss/vendors/_magnific-popup.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 60, scss/vendors/_magnific-popup.scss */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 65, scss/vendors/_magnific-popup.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 71, scss/vendors/_magnific-popup.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 74, scss/vendors/_magnific-popup.scss */
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 79, scss/vendors/_magnific-popup.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 82, scss/vendors/_magnific-popup.scss */
.mfp-hide {
  display: none !important;
}

/* line 85, scss/vendors/_magnific-popup.scss */
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 95, scss/vendors/_magnific-popup.scss */
.mfp-preloader a {
  color: #cccccc;
}

/* line 97, scss/vendors/_magnific-popup.scss */
.mfp-preloader a:hover {
  color: white;
}

/* line 100, scss/vendors/_magnific-popup.scss */
.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 103, scss/vendors/_magnific-popup.scss */
.mfp-s-error .mfp-content {
  display: none;
}

/* line 106, scss/vendors/_magnific-popup.scss */
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 118, scss/vendors/_magnific-popup.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 122, scss/vendors/_magnific-popup.scss */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

/* line 138, scss/vendors/_magnific-popup.scss */
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 141, scss/vendors/_magnific-popup.scss */
.mfp-close:active {
  top: 1px;
}

/* line 144, scss/vendors/_magnific-popup.scss */
.mfp-close-btn-in .mfp-close {
  color: #333333;
}

/* line 147, scss/vendors/_magnific-popup.scss */
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

/* line 154, scss/vendors/_magnific-popup.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

/* line 162, scss/vendors/_magnific-popup.scss */
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

/* line 173, scss/vendors/_magnific-popup.scss */
.mfp-arrow:active {
  margin-top: -54px;
}

/* line 175, scss/vendors/_magnific-popup.scss */
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 178, scss/vendors/_magnific-popup.scss */
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

/* line 189, scss/vendors/_magnific-popup.scss */
.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

/* line 193, scss/vendors/_magnific-popup.scss */
.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

/* line 198, scss/vendors/_magnific-popup.scss */
.mfp-arrow-left {
  left: 0;
}

/* line 200, scss/vendors/_magnific-popup.scss */
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

/* line 203, scss/vendors/_magnific-popup.scss */
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

/* line 207, scss/vendors/_magnific-popup.scss */
.mfp-arrow-right {
  right: 0;
}

/* line 209, scss/vendors/_magnific-popup.scss */
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

/* line 212, scss/vendors/_magnific-popup.scss */
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

/* line 215, scss/vendors/_magnific-popup.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 218, scss/vendors/_magnific-popup.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 222, scss/vendors/_magnific-popup.scss */
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 225, scss/vendors/_magnific-popup.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 230, scss/vendors/_magnific-popup.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
/* line 241, scss/vendors/_magnific-popup.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
/* line 254, scss/vendors/_magnific-popup.scss */
.mfp-figure {
  line-height: 0;
}

/* line 256, scss/vendors/_magnific-popup.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

/* line 269, scss/vendors/_magnific-popup.scss */
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 274, scss/vendors/_magnific-popup.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 277, scss/vendors/_magnific-popup.scss */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 285, scss/vendors/_magnific-popup.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 292, scss/vendors/_magnific-popup.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 295, scss/vendors/_magnific-popup.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  /* line 302, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 305, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* line 307, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  /* line 310, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  /* line 313, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 323, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  /* line 325, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  /* line 328, scss/vendors/_magnific-popup.scss */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  /* line 340, scss/vendors/_magnific-popup.scss */
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  /* line 343, scss/vendors/_magnific-popup.scss */
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  /* line 346, scss/vendors/_magnific-popup.scss */
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  /* line 349, scss/vendors/_magnific-popup.scss */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* line 353, scss/vendors/_magnific-popup.scss */
.mfp-ie7 .mfp-img {
  padding: 0;
}

/* line 355, scss/vendors/_magnific-popup.scss */
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

/* line 361, scss/vendors/_magnific-popup.scss */
.mfp-ie7 .mfp-container {
  padding: 0;
}

/* line 363, scss/vendors/_magnific-popup.scss */
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

/* line 365, scss/vendors/_magnific-popup.scss */
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/**
 * fullPage 2.7.2
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 * Contribution by Jhony0311
 */
/* line 9, scss/vendors/_jquery.fullPage.scss */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: transparent;
}

/* line 18, scss/vendors/_jquery.fullPage.scss */
#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}

/* line 28, scss/vendors/_jquery.fullPage.scss */
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}

/* line 34, scss/vendors/_jquery.fullPage.scss */
.fp-slide {
  float: left;
}

/* line 37, scss/vendors/_jquery.fullPage.scss */
.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block;
}

/* line 41, scss/vendors/_jquery.fullPage.scss */
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

/* line 49, scss/vendors/_jquery.fullPage.scss */
.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

/* line 54, scss/vendors/_jquery.fullPage.scss */
.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

/* line 60, scss/vendors/_jquery.fullPage.scss */
.fp-slidesContainer {
  float: left;
  position: relative;
}

/* line 64, scss/vendors/_jquery.fullPage.scss */
.fp-controlArrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 77, scss/vendors/_jquery.fullPage.scss */
.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 84, scss/vendors/_jquery.fullPage.scss */
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

/* line 90, scss/vendors/_jquery.fullPage.scss */
.fp-scrollable {
  overflow: scroll;
}

/* line 93, scss/vendors/_jquery.fullPage.scss */
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

/* line 97, scss/vendors/_jquery.fullPage.scss */
.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
}
/* line 103, scss/vendors/_jquery.fullPage.scss */
.fp-slidesNav.bottom {
  bottom: 17px;
}
/* line 107, scss/vendors/_jquery.fullPage.scss */
.fp-slidesNav.top {
  top: 17px;
}

/* line 112, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
/* line 117, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
/* line 124, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
/* line 133, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
/* line 139, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li:hover #fp-nav ul li a.active span, #fp-slidesNav ul li:hover #fp-nav ul li a.active span, #fp-nav ul li:hover
.fp-slidesNav ul li a.active span, #fp-slidesNav ul li:hover
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
/* line 148, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
/* line 169, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}

/* line 179, scss/vendors/_jquery.fullPage.scss */
#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}
/* line 186, scss/vendors/_jquery.fullPage.scss */
#fp-nav.right {
  right: 17px;
}
/* line 189, scss/vendors/_jquery.fullPage.scss */
#fp-nav.left {
  left: 17px;
}
/* line 194, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
}
/* line 207, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}
/* line 216, scss/vendors/_jquery.fullPage.scss */
#fp-nav ul li:hover .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}
/* line 225, scss/vendors/_jquery.fullPage.scss */
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}

/* line 232, scss/vendors/_jquery.fullPage.scss */
.fp-slidesNav ul li {
  display: inline-block;
}

/* line 235, scss/vendors/_jquery.fullPage.scss */
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

/* line 1, scss/components/_buttons.scss */
.button {
  cursor: pointer;
  text-shadow: 0px 1px 0px #fff;
  background: #56204d;
  display: block;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 30px;
  width: 45%;
  margin: 30px auto 0px;
  text-align: center;
  position: relative;
}
/* line 18, scss/components/_buttons.scss */
.button:hover {
  background: #773e6d;
  cursor: pointer;
}
/* line 23, scss/components/_buttons.scss */
.button.bordeaux {
  background-color: #BC2259;
  color: #ffffff;
}
/* line 26, scss/components/_buttons.scss */
.button.bordeaux:hover {
  background-color: #930b3b;
}
/* line 31, scss/components/_buttons.scss */
.button.light_blue {
  background-color: #014674;
  color: #ffffff;
}
/* line 34, scss/components/_buttons.scss */
.button.light_blue:hover {
  background-color: #003456;
}
/* line 39, scss/components/_buttons.scss */
.button.qrcode, .button.send_link {
  width: 100%;
  font-size: 14px;
  line-height: 1.3em;
  margin: 12px 0px;
}
/* line 46, scss/components/_buttons.scss */
.button.appussy {
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid #fc567a;
}
/* line 51, scss/components/_buttons.scss */
.button.appussy img {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -12px;
}
/* line 59, scss/components/_buttons.scss */
.button.orgazhim {
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid #58b8ed;
}
/* line 64, scss/components/_buttons.scss */
.button.orgazhim img {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
}
/* line 72, scss/components/_buttons.scss */
.button.appussy2 {
  border: 2px solid #fc567a;
  background: rgba(252, 86, 122, 0.3);
  width: 70%;
}
/* line 77, scss/components/_buttons.scss */
.button.appussy2 img {
  margin-right: 10px;
}
/* line 82, scss/components/_buttons.scss */
.button.orgazhim2 {
  border: 2px solid #58b8ed;
  background: rgba(88, 184, 237, 0.3);
  width: 70%;
}
/* line 86, scss/components/_buttons.scss */
.button.orgazhim2 img {
  margin-right: 10px;
}
@media screen and (max-width: 740px) {
  /* line 1, scss/components/_buttons.scss */
  .button {
    margin-bottom: 20px;
    margin-top: 0px;
  }
}
/* line 96, scss/components/_buttons.scss */
.button.agree-btn {
  background: #fff;
  color: #56204d;
  font-weight: 800;
}
/* line 102, scss/components/_buttons.scss */
.button.download {
  width: 70%;
  background-color: #BC2259;
  margin: 30px 0 0 0;
  line-height: 46px;
  padding: 5px 10px;
  color: #ffffff;
}
/* line 109, scss/components/_buttons.scss */
.button.download.light_blue {
  background-color: #014674;
}
/* line 111, scss/components/_buttons.scss */
.button.download.light_blue:hover {
  background-color: #003456;
}
/* line 117, scss/components/_buttons.scss */
.button.download:hover {
  background-color: #930b3b;
}
/* line 121, scss/components/_buttons.scss */
.button.download.orgazhim3 {
  background-color: #58b8ed;
}
/* line 124, scss/components/_buttons.scss */
.button.download.orgazhim3:hover {
  background-color: #439ccc;
}
@media screen and (max-width: 1104px) {
  /* line 102, scss/components/_buttons.scss */
  .button.download {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  /* line 102, scss/components/_buttons.scss */
  .button.download {
    margin: 30px auto 0px;
  }
}
@media screen and (max-width: 892px) {
  /* line 1, scss/components/_buttons.scss */
  .button {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, scss/components/_buttons.scss */
  .button {
    font-size: 15px;
  }
}

/* line 145, scss/components/_buttons.scss */
.buttons_group {
  position: relative;
}
/* line 147, scss/components/_buttons.scss */
.buttons_group .button {
  margin: 0px 0px 2px;
  position: relative;
}
/* line 151, scss/components/_buttons.scss */
.buttons_group .or {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: #ffffff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin-left: -12px;
  margin-top: -12px;
  font-size: 12px;
  color: #56204d;
  text-transform: none;
  font-weight: 400;
}

/* line 1, scss/components/_floatingBackground.scss */
.cd-background-wrapper {
  position: relative;
  overflow: hidden;
}
/* line 5, scss/components/_floatingBackground.scss */
.no-touch .cd-background-wrapper {
  -moz-perspective: 4000px;
  -webkit-perspective: 4000px;
  perspective: 4000px;
}
/* line 9, scss/components/_floatingBackground.scss */
.cd-background-wrapper::before {
  /* never visible - this is used in jQuery to check the device type */
  content: 'web';
  display: none;
}
/* line 15, scss/components/_floatingBackground.scss */
.touch .cd-background-wrapper::before {
  /* never visible - this is used in jQuery to check the device type */
  content: 'mobile';
}
@media screen and (max-width: 768px) {
  /* line 1, scss/components/_floatingBackground.scss */
  .cd-background-wrapper {
    display: none;
  }
}

/* line 24, scss/components/_floatingBackground.scss */
.cd-floating-background {
  position: relative;
}
/* line 27, scss/components/_floatingBackground.scss */
.cd-floating-background img {
  display: block;
  width: 100%;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* fixes a Firefox bug - images not correctly rendered*/
  background-color: rgba(255, 255, 255, 0.01);
}
/* line 35, scss/components/_floatingBackground.scss */
.cd-floating-background img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 41, scss/components/_floatingBackground.scss */
.no-touch .cd-floating-background {
  top: 0;
  left: 0;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 47, scss/components/_floatingBackground.scss */
.no-touch .cd-floating-background.is-absolute {
  position: absolute;
}
/* line 51, scss/components/_floatingBackground.scss */
.no-touch .cd-floating-background img:first-child {
  -moz-transform: translateZ(50px);
  -ms-transform: translateZ(50px);
  -webkit-transform: translateZ(50px);
  transform: translateZ(50px);
}
/* line 55, scss/components/_floatingBackground.scss */
.no-touch .cd-floating-background img:nth-child(2) {
  -moz-transform: translateZ(290px);
  -ms-transform: translateZ(290px);
  -webkit-transform: translateZ(290px);
  transform: translateZ(290px);
}
/* line 59, scss/components/_floatingBackground.scss */
.no-touch .cd-floating-background img:nth-child(3) {
  -moz-transform: translateZ(400px);
  -ms-transform: translateZ(400px);
  -webkit-transform: translateZ(400px);
  transform: translateZ(400px);
}
/* line 64, scss/components/_floatingBackground.scss */
.no-touch.no-preserve-3d .cd-floating-background {
  /* we target browsers that don't support preserve-3d and show just a standard image - no effect visible */
  position: relative;
}

/* ---- HEADER --- */
/* line 2, scss/regions/_header.scss */
header {
  position: fixed;
  top: 0px;
  background-color: rgba(255, 255, 255, 0);
  background-size: auto 100%;
  height: 90px;
  width: 100%;
  z-index: 999;
  line-height: 80px;
  padding: 0px 30px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 550px) {
  /* line 2, scss/regions/_header.scss */
  header {
    height: 60px;
    line-height: 60px;
    background-size: 100%;
  }
}
@media screen and (max-width: 550px) {
  /* line 2, scss/regions/_header.scss */
  header {
    padding: 0px 15px;
  }
}

/* line 24, scss/regions/_header.scss */
#logo {
  float: left;
  position: relative;
  z-index: 9;
}
/* line 28, scss/regions/_header.scss */
#logo img {
  width: 198px;
  height: 54px;
}

@media screen and (max-width: 550px) {
  /* line 35, scss/regions/_header.scss */
  #logo img {
    width: 147px;
    height: 40px;
  }
}
/* line 42, scss/regions/_header.scss */
.social-list {
  float: right;
  margin-right: 30px;
  font-size: 24px;
  margin-top: 4px;
}
@media screen and (max-width: 500px) {
  /* line 42, scss/regions/_header.scss */
  .social-list {
    margin-right: 10px;
    font-size: 20px;
  }
}
/* line 51, scss/regions/_header.scss */
.social-list a {
  display: block;
  color: #fff;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 55, scss/regions/_header.scss */
.social-list a:hover {
  color: #BC2259;
}

/* line 61, scss/regions/_header.scss */
#menu-btn {
  color: #fff;
  float: right;
  font-weight: 700;
  font-size: 1.125em;
  margin-top: 4px;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 9;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 73, scss/regions/_header.scss */
.appussy #menu-btn:hover {
  color: #BC2259;
}
/* line 77, scss/regions/_header.scss */
.orgazhim #menu-btn:hover {
  color: #014674;
}
/* line 83, scss/regions/_header.scss */
.appussy #menu-btn.active {
  color: #BC2259;
}
/* line 87, scss/regions/_header.scss */
.orgazhim #menu-btn.active {
  color: #014674;
}
@media screen and (max-width: 900px) {
  /* line 61, scss/regions/_header.scss */
  #menu-btn {
    display: block;
  }
}

/* ---- MAIN NAV --- */
/* line 100, scss/regions/_header.scss */
#main-nav {
  float: right;
  margin-left: 10%;
  display: block;
}
/* line 104, scss/regions/_header.scss */
#main-nav li {
  display: inline-block;
  padding: 0px 20px;
  font-size: 1.125em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* line 109, scss/regions/_header.scss */
#main-nav li a {
  color: #fff;
  position: relative;
}
/* line 112, scss/regions/_header.scss */
#main-nav li a:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -2px;
  left: 50%;
  width: 0;
  background: #fff;
  z-index: 888;
}
/* line 122, scss/regions/_header.scss */
#main-nav li a .menu_logo {
  max-width: 200px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 900px) {
  /* line 100, scss/regions/_header.scss */
  #main-nav {
    float: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    margin: 0;
    z-index: 0;
    display: none;
    padding-top: 90px;
    background-color: #56204d;
  }
  /* line 140, scss/regions/_header.scss */
  #main-nav li {
    display: block;
    text-align: center;
    padding: 12px;
  }
  /* line 145, scss/regions/_header.scss */
  #main-nav li a .menu_logo {
    display: inline-block;
  }
  /* line 148, scss/regions/_header.scss */
  #main-nav li a .menu_text {
    display: none;
  }
}

/* --- Pagine footer --- */
/* line 4, scss/regions/_footer.scss */
footer {
  background: #56204d;
  height: 30px;
  width: 100%;
  line-height: 30px;
  text-align: right;
  margin-right: -30px;
  padding: 0px 30px;
  position: relative;
  z-index: 999;
  font-size: 15px;
}
@media screen and (max-width: 1200px) {
  /* line 4, scss/regions/_footer.scss */
  footer {
    height: auto;
    line-height: 20px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* line 24, scss/regions/_footer.scss */
#footer-list {
  margin-right: 30px;
}

/* line 28, scss/regions/_footer.scss */
.footer-item {
  display: inline-block;
  font-weight: 100;
  font-size: 0.75em;
  margin: 0px 5px;
}
/* line 34, scss/regions/_footer.scss */
.footer-item a {
  color: white;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* line 41, scss/regions/_footer.scss */
.page.alltext {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  margin-top: 30px;
  padding: 30px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* line 53, scss/regions/_footer.scss */
.terms_page {
  margin-top: 100px;
  text-align: center;
}
/* line 56, scss/regions/_footer.scss */
.terms_page .page-title {
  color: #56204d;
  border-bottom: 1px solid #56204d;
}
/* line 61, scss/regions/_footer.scss */
.terms_page .description-text {
  color: #938f8f;
}
/* line 63, scss/regions/_footer.scss */
.terms_page .description-text a {
  color: #56204d;
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  /* line 70, scss/regions/_footer.scss */
  .footer_nav {
    float: none;
  }
}

/* line 76, scss/regions/_footer.scss */
#company_details {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  /* line 76, scss/regions/_footer.scss */
  #company_details {
    float: none;
  }
}

/* line 1, scss/pages/_agreement.scss */
.agreement_page {
  background-image: url("../images/source/home/background-age3.png");
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 7, scss/pages/_agreement.scss */
.header_agreement {
  position: fixed;
  top: 0px;
  background-size: auto 100%;
  height: 80px;
  width: 100%;
  z-index: 999;
  line-height: 80px;
  padding: 0px 30px;
}
/* line 17, scss/pages/_agreement.scss */
.header_agreement.background {
  background-color: #56204d;
}

/* line 22, scss/pages/_agreement.scss */
#overall-agreement {
  margin-top: 90px;
}

/* line 26, scss/pages/_agreement.scss */
#logo-cont-agree {
  margin-top: 50px;
}
/* line 28, scss/pages/_agreement.scss */
#logo-cont-agree img {
  width: 300px;
  height: 82px;
}
@media screen and (max-width: 550px) {
  /* line 34, scss/pages/_agreement.scss */
  #logo-cont-agree img {
    width: 220px;
    height: 60.13px;
  }
}

/* line 42, scss/pages/_agreement.scss */
#age_check .page-title, #thank_you .page-title {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 30px;
}

/* line 49, scss/pages/_agreement.scss */
#terms-agreement, #thank_you_block {
  max-width: 768px;
  margin: 50px auto 0;
  padding: 50px;
  font-weight: 100;
  font-size: 1.3em;
  overflow: auto;
  text-align: left;
  text-align: center;
  color: #fff;
}
/* line 59, scss/pages/_agreement.scss */
#terms-agreement p, #thank_you_block p {
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  /* line 49, scss/pages/_agreement.scss */
  #terms-agreement, #thank_you_block {
    font-size: 1.2em;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* line 69, scss/pages/_agreement.scss */
#decline-agreement {
  float: left;
  cursor: pointer;
}
/* line 72, scss/pages/_agreement.scss */
#decline-agreement img {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 20px;
}
@media screen and (max-width: 680px) {
  /* line 69, scss/pages/_agreement.scss */
  #decline-agreement {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
}

/* line 84, scss/pages/_agreement.scss */
#accept-agreement, .send-btn {
  cursor: pointer;
  float: right;
}
/* line 87, scss/pages/_agreement.scss */
#accept-agreement img, .send-btn img {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 20px;
}
@media screen and (max-width: 680px) {
  /* line 84, scss/pages/_agreement.scss */
  #accept-agreement, .send-btn {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}

/* line 99, scss/pages/_agreement.scss */
#buttons-agree-container {
  max-width: 768px;
  margin: 0px auto;
  padding-bottom: 100px;
}

/* ---- HOME PAGE --- */
/* line 2, scss/pages/_home.scss */
.home_page {
  background-image: url(../images/source/home/home_background_slice.jpg);
  background-position: center bottom;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
/* line 11, scss/pages/_home.scss */
.home_page footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
@media screen and (max-width: 550px) {
  /* line 2, scss/pages/_home.scss */
  .home_page {
    position: static;
  }
  /* line 20, scss/pages/_home.scss */
  .home_page footer {
    position: static;
  }
}
/* line 24, scss/pages/_home.scss */
.home_page .appussy_side {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15%;
  margin-left: -18%;
}
@media screen and (max-width: 990px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    width: 17%;
    margin-left: -19%;
  }
}
@media screen and (max-width: 900px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    width: 18%;
    margin-left: -22%;
  }
}
/* line 38, scss/pages/_home.scss */
.home_page .appussy_side .logo {
  display: none;
}
/* line 40, scss/pages/_home.scss */
.home_page .appussy_side .logo img {
  max-width: 100%;
}
/* line 44, scss/pages/_home.scss */
.home_page .appussy_side .claim {
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2em;
}
/* line 49, scss/pages/_home.scss */
.home_page .appussy_side .claim strong {
  font-size: 900;
}
/* line 53, scss/pages/_home.scss */
.home_page .appussy_side .cta_button {
  display: block;
  background-color: #56204d;
  padding: 12px;
  margin-top: 24px;
  color: #ffffff;
  text-align: center;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  /* line 53, scss/pages/_home.scss */
  .home_page .appussy_side .cta_button {
    background-color: #BC2259;
  }
}
@media screen and (max-height: 480px), screen and (max-width: 768px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    width: 40%;
    left: 5%;
    top: 90px;
    margin-left: 0px;
  }
  /* line 70, scss/pages/_home.scss */
  .home_page .appussy_side .logo {
    display: block;
    text-align: center;
  }
  /* line 73, scss/pages/_home.scss */
  .home_page .appussy_side .logo img {
    width: 100%;
    max-width: 400px;
  }
  /* line 78, scss/pages/_home.scss */
  .home_page .appussy_side .claim {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    top: 25%;
  }
}
@media screen and (max-width: 550px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    padding-top: 90px;
    position: static;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 40px;
  }
}
@media screen and (max-height: 550px), screen and (max-width: 550px) {
  /* line 24, scss/pages/_home.scss */
  .home_page .appussy_side {
    background-image: url(../images/source/home/background-age3.png);
    width: 100%;
    margin-left: 0;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    top: 0px;
    left: 0px;
    margin-bottom: 0px;
  }
}
/* line 105, scss/pages/_home.scss */
.home_page .orgazhim_side {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 15%;
  margin-right: -16%;
}
@media screen and (max-width: 990px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    width: 17%;
    margin-right: -19%;
  }
}
@media screen and (max-width: 900px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    width: 18%;
    margin-right: -22%;
  }
}
/* line 119, scss/pages/_home.scss */
.home_page .orgazhim_side .logo {
  display: none;
}
/* line 121, scss/pages/_home.scss */
.home_page .orgazhim_side .logo img {
  max-width: 100%;
}
/* line 125, scss/pages/_home.scss */
.home_page .orgazhim_side .claim {
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2em;
}
/* line 130, scss/pages/_home.scss */
.home_page .orgazhim_side .claim strong {
  font-size: 900;
}
/* line 135, scss/pages/_home.scss */
.home_page .orgazhim_side .cta_button {
  display: block;
  background-color: #56204d;
  padding: 12px;
  margin-top: 24px;
  color: #ffffff;
  text-align: center;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  /* line 135, scss/pages/_home.scss */
  .home_page .orgazhim_side .cta_button {
    background-color: #014674;
  }
}
@media screen and (max-height: 480px), screen and (max-width: 768px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    width: 40%;
    right: 5%;
    top: 90px;
    margin-right: 0px;
  }
  /* line 152, scss/pages/_home.scss */
  .home_page .orgazhim_side .logo {
    display: block;
    text-align: center;
  }
  /* line 155, scss/pages/_home.scss */
  .home_page .orgazhim_side .logo img {
    width: 100%;
    max-width: 400px;
  }
  /* line 160, scss/pages/_home.scss */
  .home_page .orgazhim_side .claim {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    top: 25%;
  }
}
@media screen and (max-width: 550px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    position: static;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 40px;
  }
}
@media screen and (max-height: 550px), screen and (max-width: 550px) {
  /* line 105, scss/pages/_home.scss */
  .home_page .orgazhim_side {
    background-image: url(../images/source/home/background-age3.png);
    width: 100%;
    margin-left: 0;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    bottom: 0px;
    left: 0px;
    margin-bottom: 0px;
    padding-top: 50px;
    top: 0px;
    height: 50%;
    background-position: top right;
  }
}

/* line 191, scss/pages/_home.scss */
.big_button {
  width: 45%;
  position: absolute;
  height: 100%;
  top: 0px;
}
/* line 196, scss/pages/_home.scss */
.big_button.appussy {
  left: 0px;
}
/* line 199, scss/pages/_home.scss */
.big_button.orgazhim {
  right: 0px;
}
@media screen and (max-width: 768px) {
  /* line 191, scss/pages/_home.scss */
  .big_button {
    display: none;
  }
}

/* ---- PAGE APPS --- */
/* line 2, scss/pages/_apps_style.scss */
.page-title {
  color: #BC2259;
  font-size: 3em;
  margin: 0px 0px 30px 0px;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: 900;
}
/* line 9, scss/pages/_apps_style.scss */
.page-title.border {
  border-bottom: 2px solid #BC2259;
  width: 50%;
}
/* line 13, scss/pages/_apps_style.scss */
.page-title.orgazhim {
  color: #014674;
}
@media screen and (max-width: 900px) {
  /* line 2, scss/pages/_apps_style.scss */
  .page-title {
    width: 100%;
  }
  /* line 18, scss/pages/_apps_style.scss */
  .page-title.border {
    width: 100%;
  }
}

/* line 25, scss/pages/_apps_style.scss */
.ratings .page-title {
  font-size: 28px;
}

/* line 30, scss/pages/_apps_style.scss */
.android-text {
  color: #ffffff;
  margin: 10px 0px;
  text-align: center;
}
/* line 34, scss/pages/_apps_style.scss */
.android-text img {
  margin-left: -23px;
}

/* line 41, scss/pages/_apps_style.scss */
.description-text {
  color: #BC2259;
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: 100;
}
/* line 46, scss/pages/_apps_style.scss */
.description-text.orgazhim {
  color: #014674;
}
@media screen and (max-width: 900px) {
  /* line 41, scss/pages/_apps_style.scss */
  .description-text {
    width: 100%;
  }
}
/* line 52, scss/pages/_apps_style.scss */
.description-text.bold {
  font-weight: 700;
}
/* line 55, scss/pages/_apps_style.scss */
.description-text.biggest {
  font-size: 1.5em;
}
/* line 58, scss/pages/_apps_style.scss */
.description-text a {
  text-decoration: underline;
  color: #fc567a;
}

/* line 64, scss/pages/_apps_style.scss */
.white {
  color: #fff;
}

/* line 68, scss/pages/_apps_style.scss */
.app-descrition {
  width: 100%;
  text-align: center;
}
/* line 71, scss/pages/_apps_style.scss */
.app-descrition .description-image {
  float: right;
  width: 40%;
  margin-top: -80px;
}
@media screen and (max-width: 500px) {
  /* line 71, scss/pages/_apps_style.scss */
  .app-descrition .description-image {
    display: none;
  }
}

/* line 81, scss/pages/_apps_style.scss */
.app-gallery {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin-top: 30px;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  /* line 88, scss/pages/_apps_style.scss */
  .app-gallery.appussy {
    background: none;
    margin-top: 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  /* line 96, scss/pages/_apps_style.scss */
  .app-gallery.orgazhim {
    background: none;
    margin-top: 20px;
    margin-bottom: 80px;
  }
}

/* line 106, scss/pages/_apps_style.scss */
.image_container {
  position: relative;
}
/* line 108, scss/pages/_apps_style.scss */
.image_container.height {
  height: 510px;
}
@media screen and (max-width: 768px) {
  /* line 108, scss/pages/_apps_style.scss */
  .image_container.height {
    height: 300px;
  }
}

/* line 116, scss/pages/_apps_style.scss */
.text_image_container {
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: 12%;
  width: 31%;
}
/* line 123, scss/pages/_apps_style.scss */
.text_image_container.how_to_page {
  position: static;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background-image: url("../images/source/home/background-age3.png");
  padding: 110px 20% 50px;
  background-position: top left;
}
/* line 131, scss/pages/_apps_style.scss */
.text_image_container.how_to_page .description-text {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}
/* line 136, scss/pages/_apps_style.scss */
.orgazhim .text_image_container.how_to_page {
  background-position: top right;
}
/* line 141, scss/pages/_apps_style.scss */
.text_image_container .app_logo {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto 12px;
}
/* line 148, scss/pages/_apps_style.scss */
.text_image_container .description-text {
  font-size: 21px;
  text-align: left;
  text-shadow: 3px 3px 3px #000000;
}
@media screen and (max-width: 1100px) {
  /* line 116, scss/pages/_apps_style.scss */
  .text_image_container {
    top: 30%;
  }
}
@media screen and (max-width: 980px) {
  /* line 158, scss/pages/_apps_style.scss */
  .text_image_container .description-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 892px) {
  /* line 164, scss/pages/_apps_style.scss */
  .text_image_container .description-text {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 116, scss/pages/_apps_style.scss */
  .text_image_container {
    position: static;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    background-image: url("../images/source/home/background-age3.png");
    padding: 110px 20% 50px;
    background-position: top left;
  }
  /* line 177, scss/pages/_apps_style.scss */
  .text_image_container .description-text {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
  /* line 182, scss/pages/_apps_style.scss */
  .orgazhim .text_image_container {
    background-position: top right;
  }
}

/* line 189, scss/pages/_apps_style.scss */
.ratings {
  text-align: center;
}
/* line 191, scss/pages/_apps_style.scss */
.ratings li {
  display: inline-block;
}

/* line 199, scss/pages/_apps_style.scss */
.comments-list > li {
  display: flex;
  flex-basis: 25%;
  float: left;
  padding: 30px;
}
/* line 205, scss/pages/_apps_style.scss */
.comments-list > li.orgazhim {
  border-bottom: 1px solid #fff;
}
/* line 209, scss/pages/_apps_style.scss */
.comments-list > li:last-child {
  border-bottom: 0px;
}
@media screen and (max-width: 900px) {
  /* line 199, scss/pages/_apps_style.scss */
  .comments-list > li {
    flex-basis: 33.333%;
  }
}
@media screen and (max-width: 692px) {
  /* line 199, scss/pages/_apps_style.scss */
  .comments-list > li {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 480px) {
  /* line 199, scss/pages/_apps_style.scss */
  .comments-list > li {
    flex-basis: 100%;
    float: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/* line 229, scss/pages/_apps_style.scss */
.comments-list > li .item_container {
  width: 100%;
  height: 170px;
  display: block;
}
@media screen and (max-width: 480px) {
  /* line 229, scss/pages/_apps_style.scss */
  .comments-list > li .item_container {
    height: 210px;
  }
}
/* line 240, scss/pages/_apps_style.scss */
.comments-list.orgazhim {
  border: 3px solid #fff;
}
/* line 244, scss/pages/_apps_style.scss */
.comments-list .comment-name {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 13px;
}
/* line 251, scss/pages/_apps_style.scss */
.comments-list .comment-name.orgazhim {
  color: #8bc7ed;
}
/* line 256, scss/pages/_apps_style.scss */
.comments-list .comment-text {
  font-style: italic;
  font-weight: 300;
  margin-top: 10px;
  color: #fff;
  line-height: 24px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  font-size: 16px;
}
/* line 266, scss/pages/_apps_style.scss */
.comments-list .comment-text.orgazhim {
  color: #fff;
}
/* line 271, scss/pages/_apps_style.scss */
.comments-list .comment-text.regular {
  font-style: normal;
  border-top: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
@media screen and (max-width: 480px) {
  /* line 256, scss/pages/_apps_style.scss */
  .comments-list .comment-text {
    border-top: 0px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
  }
}
/* line 285, scss/pages/_apps_style.scss */
.comments-list span {
  display: inline-block;
  margin-bottom: 10px;
}

/* line 292, scss/pages/_apps_style.scss */
.download-section {
  position: relative;
  height: 80px;
}
@media screen and (max-width: 650px) {
  /* line 292, scss/pages/_apps_style.scss */
  .download-section {
    height: 100px;
  }
}
/* line 298, scss/pages/_apps_style.scss */
.download-section .android-logo {
  color: #000;
}
/* line 302, scss/pages/_apps_style.scss */
.download-section .download-block {
  right: 0;
  left: auto;
}
@media screen and (max-width: 768px) {
  /* line 302, scss/pages/_apps_style.scss */
  .download-section .download-block {
    top: auto;
    bottom: 0px;
    top: 0;
  }
}
@media screen and (max-width: 500px) {
  /* line 302, scss/pages/_apps_style.scss */
  .download-section .download-block {
    width: 90%;
  }
}

/* line 318, scss/pages/_apps_style.scss */
.hidden-content {
  display: none;
}

/* line 322, scss/pages/_apps_style.scss */
.double_gallery {
  width: 100%;
  position: relative;
  z-index: 111;
  height: 510px;
}
/* line 328, scss/pages/_apps_style.scss */
.double_gallery .page-title {
  position: absolute;
  z-index: 99999999;
  top: 20%;
  left: 15%;
  color: #ffffff;
  max-width: 40%;
  line-height: 1.3em;
}
@media screen and (max-width: 1024px) {
  /* line 328, scss/pages/_apps_style.scss */
  .double_gallery .page-title {
    width: 35%;
  }
}
@media screen and (max-width: 1024px) {
  /* line 328, scss/pages/_apps_style.scss */
  .double_gallery .page-title {
    font-size: 32px;
    width: 30%;
  }
}
@media screen and (max-width: 860px) {
  /* line 328, scss/pages/_apps_style.scss */
  .double_gallery .page-title {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  /* line 328, scss/pages/_apps_style.scss */
  .double_gallery .page-title {
    display: block;
    position: static;
    width: 100%;
    padding: 0px 12px;
    max-width: 100%;
    text-align: center;
    color: #BC2259;
  }
  /* line 354, scss/pages/_apps_style.scss */
  .orgazhim .double_gallery .page-title {
    color: #014674;
  }
}
/* line 360, scss/pages/_apps_style.scss */
.double_gallery .page-content {
  padding-bottom: 0px;
}
/* line 364, scss/pages/_apps_style.scss */
.double_gallery .phone_double_gallery {
  right: 10%;
  width: 460px;
  height: 461px;
  bottom: 0px;
  position: absolute;
  z-index: 333;
  background-repeat: no-repeat;
  background-size: 95% auto;
}
@media screen and (max-width: 480px) {
  /* line 364, scss/pages/_apps_style.scss */
  .double_gallery .phone_double_gallery {
    bottom: -42px;
  }
}
@media screen and (max-width: 640px) {
  /* line 364, scss/pages/_apps_style.scss */
  .double_gallery .phone_double_gallery {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  /* line 322, scss/pages/_apps_style.scss */
  .double_gallery {
    height: 660px;
  }
}

/* line 388, scss/pages/_apps_style.scss */
.background_cover {
  background-color: rgba(188, 34, 89, 0.4);
  position: absolute;
  z-index: 222;
  height: 510px;
  width: 100%;
}
/* line 394, scss/pages/_apps_style.scss */
.background_cover.orgazhim {
  background-color: rgba(1, 70, 116, 0.4);
}
@media screen and (max-width: 640px) {
  /* line 388, scss/pages/_apps_style.scss */
  .background_cover {
    display: none;
  }
}

/* line 403, scss/pages/_apps_style.scss */
.payoff_image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 790px;
  background-position: center center;
}
/* line 410, scss/pages/_apps_style.scss */
.payoff_image .phone_img_bg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -167px;
  width: 332px;
}

/* line 419, scss/pages/_apps_style.scss */
.gallery1 {
  height: 100%;
}
@media screen and (max-width: 640px) {
  /* line 419, scss/pages/_apps_style.scss */
  .gallery1 {
    display: none;
  }
}

/* line 426, scss/pages/_apps_style.scss */
.gallery_img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
}
/* line 432, scss/pages/_apps_style.scss */
.gallery_img.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
@media screen and (max-width: 640px) {
  /* line 432, scss/pages/_apps_style.scss */
  .gallery_img.blur {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@media screen and (max-width: 768px) {
  /* line 448, scss/pages/_apps_style.scss */
  .gallery_img.orgazhim {
    display: none;
  }
}

/* line 455, scss/pages/_apps_style.scss */
#prev {
  background-image: url("../images/source/icons/heart_icon_prev.svg");
  background-repeat: no-repeat;
  width: 80px;
  height: 50px;
  top: 50%;
  margin-top: -11px;
  left: 20px;
  position: absolute;
  z-index: 666;
  display: block;
  cursor: pointer;
}
/* line 468, scss/pages/_apps_style.scss */
#prev.orgazhim {
  background-image: url("../images/source/icons/star_icon_prev.svg");
}

/* line 474, scss/pages/_apps_style.scss */
#next {
  background-image: url("../images/source/icons/heart_icon_next.svg");
  background-repeat: no-repeat;
  cursor: pointer;
  width: 80px;
  height: 50px;
  top: 50%;
  margin-top: -11px;
  right: 0px;
  position: absolute;
  z-index: 666;
  display: block;
}
/* line 487, scss/pages/_apps_style.scss */
#next.orgazhim {
  background-image: url("../images/source/icons/star_icon_next.svg");
}

/* line 493, scss/pages/_apps_style.scss */
.gallery2 {
  position: absolute;
  width: 187px;
  z-index: 444;
  top: 47px;
  right: 46.4%;
  height: 305px;
}
/* line 501, scss/pages/_apps_style.scss */
.gallery2 .phone_img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
}
@media screen and (max-width: 640px) {
  /* line 493, scss/pages/_apps_style.scss */
  .gallery2 {
    display: none;
  }
}

/* line 514, scss/pages/_apps_style.scss */
.gallery3 {
  display: none;
}
@media screen and (max-width: 640px) {
  /* line 514, scss/pages/_apps_style.scss */
  .gallery3 {
    display: block;
    width: 320px;
    margin: 0 auto;
    position: relative;
  }
  /* line 521, scss/pages/_apps_style.scss */
  .gallery3 .img_mobile {
    width: 320px;
    margin: 0 auto;
    background-repeat: no-repeat;
  }
}

/* line 530, scss/pages/_apps_style.scss */
.screenshots {
  text-align: center;
}
/* line 532, scss/pages/_apps_style.scss */
.screenshots .screenshots_img {
  width: 21%;
  float: left;
  display: inline-block;
  margin-bottom: 50px;
  margin-right: 5.333333333%;
}
/* line 538, scss/pages/_apps_style.scss */
.screenshots .screenshots_img:nth-child(4n) {
  margin-right: 0px;
}
/* line 541, scss/pages/_apps_style.scss */
.screenshots .screenshots_img img {
  width: 100%;
}
@media screen and (max-width: 990px) {
  /* line 532, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img {
    margin-right: 3.5%;
    width: 31%;
  }
  /* line 547, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img:nth-child(3n) {
    margin-right: 0px;
  }
  /* line 550, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img:nth-child(4n) {
    margin-right: 3.5%;
  }
}
@media screen and (max-width: 736px) {
  /* line 532, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img {
    width: 46%;
    margin-right: 4%;
  }
  /* line 557, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img:nth-child(3n) {
    margin-right: 4%;
  }
  /* line 560, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img:nth-child(2n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 420px) {
  /* line 532, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img {
    width: 100%;
    margin-right: 0px;
  }
}
/* line 569, scss/pages/_apps_style.scss */
.screenshots .screenshots_img .phone {
  display: none;
}
@media screen and (max-width: 480px) {
  /* line 569, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img .phone {
    display: block;
  }
}
/* line 576, scss/pages/_apps_style.scss */
.screenshots .screenshots_img .web {
  display: block;
}
@media screen and (max-width: 480px) {
  /* line 576, scss/pages/_apps_style.scss */
  .screenshots .screenshots_img .web {
    display: none;
  }
}
/* line 585, scss/pages/_apps_style.scss */
.screenshots .page-title {
  color: #BC2259;
  margin-bottom: 50px;
}
/* line 588, scss/pages/_apps_style.scss */
.screenshots .page-title.orgazhim {
  color: #014674;
}

/* line 594, scss/pages/_apps_style.scss */
.flexbox_container {
  display: flex;
  flex-wrap: wrap;
}

/* line 599, scss/pages/_apps_style.scss */
.section.download {
  background-image: url("../images/source/home/background-age3.png");
  background-size: cover;
}
/* line 602, scss/pages/_apps_style.scss */
.section.download .page-title {
  color: #ffffff;
}
/* line 605, scss/pages/_apps_style.scss */
.section.download .page-content {
  max-width: 350px;
  text-align: center;
}
/* line 609, scss/pages/_apps_style.scss */
.section.download .app_logo {
  display: inline-block;
  max-width: 300px;
  margin-bottom: 30px;
}
/* line 614, scss/pages/_apps_style.scss */
.section.download .android-text {
  font-size: 24px;
  font-weight: 300;
}
/* line 617, scss/pages/_apps_style.scss */
.section.download .android-text img {
  margin-left: 12px;
}

/* line 623, scss/pages/_apps_style.scss */
.qr_wrapper {
  text-align: center;
}
/* line 625, scss/pages/_apps_style.scss */
.qr_wrapper .description-text {
  margin-bottom: 24px;
}
/* line 628, scss/pages/_apps_style.scss */
.qr_wrapper .qr_code_image {
  width: 100%;
}

/* line 634, scss/pages/_apps_style.scss */
#orgazhim_mail .page-title, #orgazhim_qr .page-title {
  color: #014674;
}
/* line 637, scss/pages/_apps_style.scss */
#orgazhim_mail .description-text, #orgazhim_qr .description-text {
  color: #014674;
}

/* line 642, scss/pages/_apps_style.scss */
.orgazhim .price_container {
  border-top: 12px #014674 solid;
}

/* line 646, scss/pages/_apps_style.scss */
.price_container {
  border-top: 12px #BC2259 solid;
  text-align: center;
}
/* line 648, scss/pages/_apps_style.scss */
.price_container .page-title {
  display: block;
  text-align: center;
}
@media screen and (max-width: 740px) {
  /* line 653, scss/pages/_apps_style.scss */
  .price_container br {
    display: none;
  }
}

/* line 659, scss/pages/_apps_style.scss */
.price_box {
  width: 30%;
  margin-right: 5%;
  text-align: center;
}
/* line 664, scss/pages/_apps_style.scss */
.price_box img {
  height: 282px;
}
/* line 668, scss/pages/_apps_style.scss */
.price_box.margin_right_none {
  margin-right: 0px;
}
/* line 672, scss/pages/_apps_style.scss */
.price_box span {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}
/* line 676, scss/pages/_apps_style.scss */
.price_box span strong {
  font-weight: 900;
}
@media screen and (max-width: 740px) {
  /* line 659, scss/pages/_apps_style.scss */
  .price_box {
    width: 100%;
    height: 360px;
    float: none;
    margin-bottom: 70px;
  }
}

/* line 689, scss/pages/_apps_style.scss */
.mail_response {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4em;
  display: none;
}

/* HOW TO INSTALL THE APPS */
/* line 699, scss/pages/_apps_style.scss */
.how_to_install_list li {
  display: block;
  margin: 10px 0px;
}
/* line 702, scss/pages/_apps_style.scss */
.how_to_install_list li:before {
  content: "•";
  margin-right: 5px;
}
/* line 707, scss/pages/_apps_style.scss */
.orgazhim .how_to_install_list li {
  color: #014674;
}

/* line 713, scss/pages/_apps_style.scss */
.install_app {
  position: absolute;
  bottom: 25px;
  left: 50px;
}
/* line 717, scss/pages/_apps_style.scss */
.install_app .bordeaux {
  color: #BC2259;
  text-decoration: underline;
}
/* line 722, scss/pages/_apps_style.scss */
.install_app .azzurro {
  color: #014674;
  text-decoration: underline;
}
/* line 727, scss/pages/_apps_style.scss */
.install_app.qr {
  text-align: center;
  position: static;
  margin-top: 30px;
  display: block;
}

@media screen and (max-width: 740px) {
  /* line 736, scss/pages/_apps_style.scss */
  .install_image {
    width: 100%;
  }
}

/* line 1, scss/pages/_contacts.scss */
.contact_section {
  text-align: center;
}
/* line 3, scss/pages/_contacts.scss */
.contact_section .page-title {
  color: #938f8f;
}
/* line 6, scss/pages/_contacts.scss */
.contact_section .border {
  border-bottom: 2px solid #938f8f;
}

/* line 11, scss/pages/_contacts.scss */
.form {
  width: 100%;
  margin: 0 auto;
}
/* line 15, scss/pages/_contacts.scss */
.form .title-cb {
  margin-bottom: 12px;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  color: #56204d;
}
/* line 23, scss/pages/_contacts.scss */
.form .contacts-intro-text {
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.8);
}
/* line 27, scss/pages/_contacts.scss */
.form label {
  display: block;
  font-size: 21px;
  color: #56204d;
  font-weight: 700;
  margin: 24px 0px 12px;
}
/* line 34, scss/pages/_contacts.scss */
.form input {
  height: 40px;
  border: 1px solid #ccc;
  width: 50%;
  font-size: 18px;
  line-height: 40px;
  padding: 0px 8px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #56204d;
  color: #56204d;
}
/* line 44, scss/pages/_contacts.scss */
.form input.full_width {
  width: 100%;
}
@media screen and (max-width: 500px) {
  /* line 34, scss/pages/_contacts.scss */
  .form input {
    width: 100%;
  }
}
/* line 52, scss/pages/_contacts.scss */
.form textarea {
  width: 100%;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #56204d;
  height: 200px;
  font-size: 18px;
  padding: 8px;
}

/* line 62, scss/pages/_contacts.scss */
.send-btn {
  border: none;
  margin: 0px;
}

/* line 68, scss/pages/_contacts.scss */
.email {
  text-align: center;
  display: block;
  width: 100px;
  height: 100px;
  font-size: 52px;
  color: #fff;
  line-height: 110px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #BC2259;
  margin: 0 auto;
}
/* line 80, scss/pages/_contacts.scss */
.orgazhim .email {
  background-color: #014674;
}

/* line 85, scss/pages/_contacts.scss */
.mfp-content {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 65px 50px;
}
/* line 91, scss/pages/_contacts.scss */
.mfp-content .contacts-intro-text {
  color: #938f8f;
}
