@charset "UTF-8";
/* CSS reset framework */
/*! 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 {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
          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 {
  -webkit-box-sizing: border-box;
          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;
  overflow-x: hidden; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1, h2 {
  font-size: 2em;
  margin: 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: 0; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          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 */
  -webkit-text-decoration: underline dotted;
          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: #ffff00;
  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: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none; }

::selection {
  background-color: #b3d4fc;
  /* 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 {
  -webkit-box-sizing: border-box;
          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"] {
  -webkit-box-sizing: border-box;
          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; }

/* ============= 
     Variables
   ============= */
/* ============= 
     General
   ============= */
html {
  height: 100%; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0; }

h1, h2, h3, h4, h5, h6, p, span, ul, li, a, button, input, textarea {
  direction: rtl;
  font-family: "open_sans_hebrew";
  color: #fefefe;
  font-weight: 300;
  letter-spacing: 0.6px; }

ul {
  list-style-type: none; }

a {
  cursor: pointer;
  text-decoration: none; }
  a.no-pointer {
    cursor: default; }

i {
  display: block; }

.basassach__title {
  font-size: 40px; }

.basassach-font-color--black {
  color: #000; }

.basassach-font-color--blue-2 {
  color: #629bc8; }

.basassach__title--2 {
  font-size: 30px; }

.basassach__title--3 {
  font-size: 25px; }

.basassach__inp-title--4 {
  margin-bottom: 35px;
  font-weight: normal;
  font-size: 19px;
  color: #000; }

.basassach__underline {
  width: 20%;
  height: 4px;
  margin-top: 15px;
  border: none; }

.basassach__underline--orange {
  background-color: #F15A31; }

.basassach__subtitle {
  font-size: 17px; }

.basassach__running-text {
  font-size: 16px; }
  .basassach__running-text.basassach-font-color--black {
    letter-spacing: 0;
    font-weight: normal; }

.basassach__running-text-big {
  font-size: 16px; }

.basassach__text-bold-light {
  font-weight: bolder;
  letter-spacing: 0;
  line-height: 1.2em; }

.basassach__text-bold {
  font-weight: bold; }

.basassach__emphesize {
  color: #000;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0; }

.basassach__button {
  height: 45px;
  width: 150px;
  padding: 2px;
  border-radius: 3px;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
  background-color: #e34a21;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  will-change: transform; }
  .basassach__button.more-info-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .basassach__button:hover {
    -webkit-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
            transform: matrix(1.2, 0, 0, 1.2, 0, 0); }

.basassach__button__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.basassach__inp-square-list li:before {
  content: "\25A0";
  position: absolute;
  right: -5px;
  color: #F15A31;
  margin: 0 -10px 0 5px; }

.basassach__no-margin--top {
  margin-top: 0; }

.basassach__margin-bottom--small {
  margin-bottom: 15px; }

/* ============= 
     body view
   ============= */
.body__view {
  height: 100%; }

.doesnt-have-reference {
  display: none; }

/* ==================================== 
   general - logo pop-enlarge animation
   ==================================== */
@-webkit-keyframes pop-enlarge {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes pop-enlarge {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/* ====================================== 
   home | section 5 | contact us - arrow pop
   ====================================== */
@-webkit-keyframes pop-left {
  0% {
    -webkit-transform: matrix(0.3, 0, 0, 1, 0, 0);
            transform: matrix(0.3, 0, 0, 1, 0, 0); }
  30% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0); }
  45% {
    -webkit-transform: matrix(0.6, 0, 0, 1, 0, 0);
            transform: matrix(0.6, 0, 0, 1, 0, 0); }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0); } }
@keyframes pop-left {
  0% {
    -webkit-transform: matrix(0.3, 0, 0, 1, 0, 0);
            transform: matrix(0.3, 0, 0, 1, 0, 0); }
  30% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0); }
  45% {
    -webkit-transform: matrix(0.6, 0, 0, 1, 0, 0);
            transform: matrix(0.6, 0, 0, 1, 0, 0); }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0); } }

/* ====================================== 
   home | section 2 | benefit boxes pointers
   ====================================== */
@-webkit-keyframes tiny-jump {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes tiny-jump {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/* ====================================== 
   contact us - button changes to success
   ====================================== 

@keyframes contact-sent{
  0% {transform: matrix(1,0,0,1,0,0); color: $basassach-orange;}
  33% {transform: matrix(0.05,0,0,1,0,0);}
  66% {transform: matrix(1,0,0,1,0,0); background-color: $basassach-green;}
  100% {color: $text-color-white; background-color: $basassach-green;}
} */
/* ===============
   Site fonts
 ================= */
/* ===============
   Harel
 ================= */
@font-face {
  font-family: 'mfw_protocolharel';
  src: url("/assets/fonts/MFW_ProtocolHarel-Medium.woff") format("woff"), url("/assets/fonts/MFW_ProtocolHarel-Medium.ttf") format("truetype"), url("/assets/fonts/MFW_ProtocolHarel-Medium.svg#mfw_protocolharelmedium") format("svg");
  font-weight: normal; }

@font-face {
  font-family: 'mfw_protocolharel';
  src: url("/assets/fonts/MFW_ProtocolHarel-Bold.woff") format("woff"), url("/assets/fonts/MFW_ProtocolHarel-Bold.ttf") format("truetype"), url("/assets/fonts/MFW_ProtocolHarel-Bold.svg#mfw_protocolharelbold") format("svg");
  font-weight: bold; }

@font-face {
  font-family: 'mfw_protocolharel';
  src: url("/assets/fonts/MFW_ProtocolHarel-Light.woff") format("woff"), url("/assets/fonts/MFW_ProtocolHarel-Light.ttf") format("truetype"), url("/assets/fonts/MFW_ProtocolHarel-Light.svg#mfw_protocolharelbold") format("svg");
  font-weight: 300; }

/* ======================
   Google open sans hebrew
 ========================= */
@font-face {
  font-family: 'open_sans_hebrew';
  src: url("/assets/fonts/OpenSansHebrew-Regular.ttf") format("truetype");
  font-weight: normal; }

@font-face {
  font-family: 'open_sans_hebrew';
  src: url("/assets/fonts/OpenSansHebrew-Bold.ttf") format("truetype");
  font-weight: bold; }

@font-face {
  font-family: 'open_sans_hebrew';
  src: url("/assets/fonts/OpenSansHebrew-Light.ttf") format("truetype");
  font-weight: 300; }

/* ====================== 
     Basassach site logo
   ====================== */
.basassach__logo .logo__b {
  fill: #fff; }

.basassach__logo .logo__half-infinity-right {
  fill: #fff; }

.basassach__logo .logo__half-infinity-left {
  fill: #fff; }

.basassach__logo .logo__ch {
  fill: #fff; }

.basassach__logo .logo__slogan {
  fill: #fff; }

/* ============== 
     svg sprite
   ============== */
/* ========================= 
     header buttons symbols
   ========================= */
.icon .hamburger-menu__line,
.icon .login__man,
.icon .sign-up__pen,
.icon .contact-us__phone {
  fill: #fff; }

/* ============== 
     arrows
   ============== */
/* orange arrow */
.icon.arrow-stroke-orange .arrow-stroke__line {
  fill: #F15A31; }

/* blue light arrow */
.icon.arrow-stroke-blue-light .arrow-stroke__line {
  fill: #629bc8; }

/* arrows circle ghost */
/* orange arrow */
.icon.arrow-orange .arrow-orange__arrow {
  fill: none;
  stroke: #F15A31;
  stroke-width: 3;
  stroke-miterlimit: 10; }

.icon.arrow-orange .arrow-orange__circle {
  fill: #F15A31; }

.icon.arrow-green .arrow-green__arrow {
  fill: none;
  stroke: #8DC63F;
  stroke-width: 3;
  stroke-miterlimit: 10; }

.icon.arrow-green .arrow-green__circle {
  fill: #8DC63F; }

.icon.arrow-blue .arrow-blue__arrow {
  fill: none;
  stroke: #123F6D;
  stroke-width: 3;
  stroke-miterlimit: 10; }

.icon.arrow-blue .arrow-blue__circle {
  fill: #123F6D; }

/* ====================== 
     credit card steps
   ====================== */
.icon .step-1__hand,
.icon .step-2__hand,
.icon .step-3__hand {
  fill: #F15A31; }

/* ============================= 
     credit card insurance icons
   ============================= */
.icon.drop-info .drop-info__shadow {
  fill: #F7D5CB; }

.icon.drop-info .drop-info__i-letter {
  fill: #FFFFFF; }

.icon.drop-info .deop-indo__drop-fill {
  fill: #F15A31; }

.icon.drop-info .drop-indo__letter-fill {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.8; }

.icon.drop-system .drop-system__outline {
  fill: #FFFFFF; }

.icon.drop-system .drop-system__fill {
  fill: #8DC63F; }

.icon.drop-system .drop-system__shadow {
  fill: #D1E8B2; }

.icon.drop-system .drop-system__wheel {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.8;
  stroke-miterlimit: 10; }

.icon.drop-personal-treat .drop-personal-treat__drop-line {
  fill: #FFFFFF; }

.icon.drop-personal-treat .drop-personal-treat__drop-fill {
  fill: #12406B; }

.icon.drop-personal-treat .drop-personal-treat__drop-shadow {
  fill: #CFD8E1; }

.icon.drop-personal-treat .drop-personal-treat__people {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.8;
  stroke-miterlimit: 10; }

/* ==================== 
     contact-us icons
   ==================== */
.icon.contact-us-wave-arrow .contact-us-wave-arrow__shape {
  fill: #F15A31; }

.icon.contact-us-phone .contact-us-phone__shape {
  fill: #F15A31; }

.icon.contact-us-letter .contact-us-letter__shape {
  fill: #F15A31; }

.icon.contact-us-adress .contact-us-adress__shape {
  fill: #F15A31; }

/* ==================== 
     footer contact-us icons
   ==================== */
.icon.contact-us-phone-w .contact-us-phone__shape {
  fill: #fff; }

.icon.contact-us-letter-w .contact-us-letter__shape {
  fill: #fff; }

.icon.contact-us-adress-w .contact-us-adress__shape {
  fill: #F15A31; }

/* ==================== 
    basassach logo icon
   ==================== */
.icon.basassach-logo-icon .basassach-logo-icon__shape {
  fill: #fefefe; }

/* ==================== 
    about us agenda
   ==================== */
.icon.drop-credibility .credibility__shadow {
  fill: #F7D5CB; }

.icon.drop-credibility .credibility__drop-fill {
  fill: #FFFFFF; }

.icon.drop-credibility .credibility__drop-stroke {
  fill: #F15A31; }

.icon.drop-credibility .credibility__symbol {
  fill: #EA5A33;
  stroke: #EA5A33;
  stroke-width: 0.25;
  stroke-miterlimit: 10; }

.icon.drop-integrity .drop-integrity__fill {
  fill: #FFFFFF; }

.icon.drop-integrity .drop-integrity__shadow {
  fill: #DDEFC4; }

.icon.drop-integrity .drop-integrity__stroke {
  fill: #8DC63F; }

.icon.drop-integrity .drop-integrity__symbol {
  fill: #8DBF44; }

.icon.drop-inovation .drop-inovation__drop-fill {
  fill: #FFFFFF; }

.icon.drop-inovation .drop-inovation__shadow {
  fill: #DDE6EF; }

.icon.drop-inovation .drop-inovation__drop-stroke {
  fill: #12406B; }

.icon.drop-inovation .drop-inovation__symbol {
  fill: #0F406A; }

.icon.drop-creativity .drop-creativity__shadow {
  fill: #F7D5CB; }

.icon.drop-creativity .drop-creativity__drop-fill {
  fill: #FFFFFF; }

.icon.drop-creativity .drop-creativity__drop-stroke {
  fill: #F15A31; }

.icon.drop-creativity .drop-creativity__symbol {
  fill: #EA5A33; }

.icon.drop-professionality .drop-professionality__drop-fill {
  fill: #FFFFFF; }

.icon.drop-professionality .drop-professionality__shadow {
  fill: #DDEFC4; }

.icon.drop-professionality .drop-professionality__drop-stroke {
  fill: #8DC63F; }

.icon.drop-professionality .drop-professionality__symbol {
  fill: #8DBF44; }

.icon.drop-leadership .drop-leadership__drop-fill {
  fill: #FFFFFF; }

.icon.drop-leadership .drop-leadership__shadow {
  fill: #DDE6EF; }

.icon.drop-leadership .drop-leadership__drop-stroke {
  fill: #12406B; }

/* ==================== 
    foreign trade
   ==================== */
/* check */
.icon {
  /* download file */
  /* production cost */
  /* deposit */
  /* return fortune */ }
  .icon.check .check__shape {
    fill: #F15A31; }
  .icon.file-down .file-down__square {
    fill: #F15A31; }
  .icon.file-down .file-down__symbol {
    fill: #FFFFFF; }
  .icon.prod-cost .prod-cost__shadow {
    fill: #F7D5CB; }
  .icon.prod-cost .prod-cost__drop-stroke {
    fill: #FFFFFF; }
  .icon.prod-cost .prod-cost__drop-fill {
    fill: #F15A31; }
  .icon.deposit .deposit__drop-stroke {
    fill: #FFFFFF; }
  .icon.deposit .deposit__drop-fill {
    fill: #8DC63F; }
  .icon.deposit .deposit__shadow {
    fill: #D1E8B2; }
  .icon.return-for .return-for__drop-stroke {
    fill: #FFFFFF; }
  .icon.return-for .return-for__drop-fill {
    fill: #12406B; }
  .icon.return-for .reutrn-for__shadow {
    fill: #CFD8E1; }

/* ========== 
     header
   ========== */
.body__header {
  position: fixed;
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  -webkit-box-shadow: 1px 5px 13px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 5px 13px rgba(0, 0, 0, 0.3); }
  .body__header .header__ruler {
    width: 100%;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 5%;
    background: radial-gradient(circle, #2b5d90 25%, #05274c 65%);
    -webkit-transition: background 1s;
    transition: background 1s; }
    .body__header .header__ruler .header__options {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .body__header .header__ruler .header__options.header__options--right {
        margin-left: 150px; }
        .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon {
          position: relative;
          z-index: 10;
          display: block;
          width: 33px;
          height: 18px;
          margin-bottom: 5px; }
          .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line {
            width: 100%;
            height: 2px;
            display: block;
            background-color: #fff;
            -webkit-transform-origin: 4px 0px;
                    transform-origin: 4px 0px;
            -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            z-index: 1; }
            .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line:not(:last-child) {
              margin-bottom: 6px; }
            .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line:first-child {
              -webkit-transform-origin: 0% 0%;
                      transform-origin: 0% 0%; }
            .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line:last-child(2) {
              -webkit-transform-origin: 0% 100%;
                      transform-origin: 0% 100%; }
            .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line.open {
              opacity: 1;
              -webkit-transform: rotate(45deg) translate(-2px, -2px);
                      transform: rotate(45deg) translate(-2px, -2px); }
              .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line.open:first-child {
                opacity: 1;
                -webkit-transform: rotate(45deg) translate(-2px, -5px);
                        transform: rotate(45deg) translate(-2px, -5px); }
              .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line.open:nth-child(2) {
                opacity: 0;
                -webkit-transform: rotate(0deg) scale(0.2, 0.2);
                        transform: rotate(0deg) scale(0.2, 0.2); }
              .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__icon .hamburger-menu__line.open:last-child {
                opacity: 1;
                -webkit-transform: rotate(-45deg) translate(0, -2px);
                        transform: rotate(-45deg) translate(0, -2px); }
        .body__header .header__ruler .header__options.header__options--right .buttons__menu .button__desc {
          margin: 0; }
      .body__header .header__ruler .header__options.header__options--left .header__options__button:not(:last-child) {
        margin-left: 10px; }
      .body__header .header__ruler .header__options .header__options__button {
        width: 75px;
        height: 75px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background-color: #005484;
        cursor: pointer;
        -webkit-transition: background-color 1.5s;
        transition: background-color 1.5s; }
        .body__header .header__ruler .header__options .header__options__button .button__link {
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .body__header .header__ruler .header__options .header__options__button .button__link .button__icon {
            width: 35px;
            height: 35px; }
            .body__header .header__ruler .header__options .header__options__button .button__link .button__icon .button__icon__symbol {
              width: 100%;
              height: 100%; }
          .body__header .header__ruler .header__options .header__options__button .button__link .button__desc {
            font-size: 14px;
            color: #fefefe;
            margin: 0;
height: 38px;
text-align: center;			}
    .body__header .header__ruler .header__company-logo {
      height: 120px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .body__header .header__ruler .header__company-logo .logo__icon {
        height: 100%;
        cursor: pointer;
        -webkit-transform: scale(0);
                transform: scale(0);
        -webkit-animation: pop-enlarge .5s ease-in forwards;
                animation: pop-enlarge .5s ease-in forwards;
        will-change: transform; }
        .body__header .header__ruler .header__company-logo .logo__icon .logo__icon__symbol {
          width: 100%;
          height: 100%; }
    .body__header .header__ruler.on-scroll {
      background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(43, 93, 144, 0.9)), color-stop(125%, transparent));
      background: linear-gradient(rgba(43, 93, 144, 0.9) 100%, transparent 125%); }
      .body__header .header__ruler.on-scroll .header__options__button {
        background-color: transparent; }
  .body__header .header__menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    visibility: hidden;
    -webkit-transition: visibility .5s;
    transition: visibility .5s; }
    .body__header .header__menu.open {
      visibility: visible; }
    .body__header .header__menu.closed {
      visibility: hidden; }
    .body__header .header__menu .pages {
      width: 100%;
      height: 100vh;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      z-index: 1;
      background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(32, 47, 62, 0.95)), to(#171f27));
      background: linear-gradient(to right, rgba(32, 47, 62, 0.95) 20%, #171f27 100%);
      -webkit-box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.5);
              box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.5);
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      -webkit-transition: -webkit-transform .3s ease-in-out;
      transition: -webkit-transform .3s ease-in-out;
      transition: transform .3s ease-in-out;
      transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
      border-top: 1px solid #2b5d90; }
      .body__header .header__menu .pages.open {
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
        .body__header .header__menu .pages.open .header__menu__lists-centered {
          -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
                  transform: matrix(1, 0, 0, 1, 0, 0);
          -webkit-transition-delay: 0.4s;
                  transition-delay: 0.4s; }
          .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page {
            -webkit-transform: translateY(0);
                    transform: translateY(0); }
            .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary {
              opacity: 1; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(2) {
                -webkit-transition-delay: 0.4s;
                        transition-delay: 0.4s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(3) {
                -webkit-transition-delay: 0.45s;
                        transition-delay: 0.45s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(4) {
                -webkit-transition-delay: 0.5s;
                        transition-delay: 0.5s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(5) {
                -webkit-transition-delay: 0.55s;
                        transition-delay: 0.55s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(6) {
                -webkit-transition-delay: 0.6s;
                        transition-delay: 0.6s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(7) {
                -webkit-transition-delay: 0.65s;
                        transition-delay: 0.65s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(8) {
                -webkit-transition-delay: 0.7s;
                        transition-delay: 0.7s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(9) {
                -webkit-transition-delay: 0.75s;
                        transition-delay: 0.75s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(10) {
                -webkit-transition-delay: 0.8s;
                        transition-delay: 0.8s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:nth-of-type(11) {
                -webkit-transition-delay: 0.85s;
                        transition-delay: 0.85s; }
              .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary:hover {
                text-decoration: underline; }
      .body__header .header__menu .pages.closed {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%); }
        .body__header .header__menu .pages.closed .header__menu__lists-centered {
          -webkit-transform: matrix(0.01, 0, 0, 0.01, 0, 0);
                  transform: matrix(0.01, 0, 0, 0.01, 0, 0); }
          .body__header .header__menu .pages.closed .header__menu__lists-centered .pages__page {
            -webkit-transform: translateY(-100%);
                    transform: translateY(-100%); }
      .body__header .header__menu .pages .header__menu__lists-centered {
        width: 65%;
        height: 75%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-transform: matrix(0.01, 0, 0, 0.01, 0, 0);
                transform: matrix(0.01, 0, 0, 0.01, 0, 0);
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        -webkit-transform-origin: center;
                transform-origin: center;
        direction: rtl;
        overflow: visible; }
        .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons {
          display: none; }
        .body__header .header__menu .pages .header__menu__lists-centered .pages__category {
          width: 32%;
          -ms-flex-preferred-size: auto;
              flex-basis: auto;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          padding: 15px;
          margin: 0 0 10px 10px;
          background-color: rgba(0, 0, 0, 0.2);
          border-radius: 10px; }
          .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page {
            margin-bottom: 20px;
            -webkit-transition: opacity .5s;
            transition: opacity .5s;
            text-shadow: 0px 0px 8px #000000; }
            .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page.pages__page--primary {
              margin: 0 0 10px 0;
              color: #F15A31;
              font-size: 22px;
              font-weight: 600;
              text-shadow: none; }
            .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary {
              margin-bottom: 8px;
              font-size: 15px;
              text-shadow: none; }
              .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary.not-ready {
                display: none; }
            .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page .pages__page__link {
              font-weight: normal;
              color: #fefefe; }
        .body__header .header__menu .pages .header__menu__lists-centered .header__menu__lists-separator {
          display: none;
          -ms-flex-preferred-size: 1px;
              flex-basis: 1px;
          background-color: #fefefe; }

/* ============= 
     footer
   ============= */
.body__footer {
  position: relative;
  width: 100%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 5px solid #8ec72a; }
  .body__footer .footer__menu {
    position: relative;
    width: 100%;
    height: 325px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("/assets/images/footer_back_2600x300.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 0 5%; }
    .body__footer .footer__menu .menu__column {
      position: relative;
      -ms-flex-preferred-size: 18%;
          flex-basis: 18%;
      height: 65%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 20px;
      margin-left: 5%; }
      .body__footer .footer__menu .menu__column .menu__column__title {
        font-size: 18px;
        margin-bottom: 25px; }
      .body__footer .footer__menu .menu__column .menu__column__item {
        margin-bottom: 20px;
        font-size: 15px; }
      .body__footer .footer__menu .menu__column .item-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .body__footer .footer__menu .menu__column .item-icon .item-icon__icon {
          width: 30px;
          height: 30px;
          margin-left: 10px; }
          .body__footer .footer__menu .menu__column .item-icon .item-icon__icon .item-icon__icon__symbol {
            width: 100%;
            height: 100%; }
    .body__footer .footer__menu .menu__column__separator {
      display: none; }
  .body__footer .footer__closer {
    position: relative;
    width: 100%;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 30px;
    background-color: #13406a; }
    .body__footer .footer__closer .footer__closer__icon {
      width: 100px;
      min-width: 100px;
      height: 50px;
      margin-left: 20px; }
      .body__footer .footer__closer .footer__closer__icon .basassach__icon__symbol {
        width: 100%;
        height: 100%; }
    .body__footer .footer__closer .footer__closer__text {
      color: #fefefe; }
      .body__footer .footer__closer .footer__closer__text .footer__closer__text__access {
        display: block; }

/* ================= 
     page side menu
   ================= */
.body__side-menu {
  position: fixed;
  top: 175px;
  right: 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 1; }
  .body__side-menu .side-menu__sections {
    padding: 0;
    margin: 0;
    width: 160px;
    height: 115px; }
    .body__side-menu .side-menu__sections .side-menu__sections__section {
      width: 15px;
      height: 4px;
      cursor: pointer;
      background-color: #b3b2ae;
      -webkit-transition: background-color .5s;
      transition: background-color .5s;
      margin-bottom: 20px; }
      .body__side-menu .side-menu__sections .side-menu__sections__section--desc {
        display: none;
        position: absolute;
        right: 30px;
        line-height: 4px;
        font-size: 13px;
        font-weight: normal;
        color: #F15A31; }
        .body__side-menu .side-menu__sections .side-menu__sections__section--desc:nth-child(2) {
          top: 0px; }
        .body__side-menu .side-menu__sections .side-menu__sections__section--desc:nth-child(4) {
          top: 24px; }
        .body__side-menu .side-menu__sections .side-menu__sections__section--desc:nth-child(6) {
          top: 48px; }
        .body__side-menu .side-menu__sections .side-menu__sections__section--desc:nth-child(8) {
          top: 72px; }
        .body__side-menu .side-menu__sections .side-menu__sections__section--desc:nth-child(10) {
          top: 96px; }
      .body__side-menu .side-menu__sections .side-menu__sections__section.on-drak-bg {
        background-color: #1f4d7c; }
      .body__side-menu .side-menu__sections .side-menu__sections__section.current {
        background-color: #F15A31; }
      .body__side-menu .side-menu__sections .side-menu__sections__section:hover {
        background-color: #F15A31; }
        .body__side-menu .side-menu__sections .side-menu__sections__section:hover ~ .side-menu__sections__section--desc {
          display: none; }
        .body__side-menu .side-menu__sections .side-menu__sections__section:hover + .side-menu__sections__section--desc {
          display: block; }

/* todo | find how to merge classes for same properties and type of element

/* ================== 
     sections general
   ================== */
[class^="section"] {
  width: 100%; }

/* ================== 
     overlay site
   ================== */
.header__menu__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity .5s, -webkit-transform 0 linear 2s;
  transition: opacity .5s, -webkit-transform 0 linear 2s;
  transition: opacity .5s, transform 0 linear 2s;
  transition: opacity .5s, transform 0 linear 2s, -webkit-transform 0 linear 2s;
  z-index: 1; }
  .header__menu__overlay.open {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  .header__menu__overlay.closed {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }

/* ============= 
     section 1st
   ============= */
.section--first {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* gallery */ }
  .section--first .section--first__gallery {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%; }
    .section--first .section--first__gallery .gallery__images {
      position: relative;
      width: 100%;
      height: 100%;
      background-color: #1f4d7c;
      z-index: -1; }
      .section--first .section--first__gallery .gallery__images .gallery__images__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        -webkit-transition: opacity 0.5s ease-out;
        transition: opacity 0.5s ease-out;
        will-change: opacity; }
        .section--first .section--first__gallery .gallery__images .gallery__images__image:first-child {
          background: url("/assets/images/home_sect1_back_hand_2600x790.jpg") no-repeat;
          background-position: 50%;
          background-position-x: 60%;
          background-size: cover;
          z-index: 3; }
        .section--first .section--first__gallery .gallery__images .gallery__images__image:nth-child(2) {
          background: url("/assets/images/home_sect1_back_compass_2600x790.jpg") no-repeat;
          background-position: 50%;
          background-size: cover;
          z-index: 2; }
        .section--first .section--first__gallery .gallery__images .gallery__images__image:last-child {
          background: url("/assets/images/home_sect3_back.jpg") no-repeat;
          background-position: 50%;
          background-size: cover;
          z-index: 1; }
        .section--first .section--first__gallery .gallery__images .gallery__images__image.current {
          opacity: 1; }
  .section--first .section--first__content {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5%;
    /* button */
    /* boxes */ }
    .section--first .section--first__content .content__header-simulator {
      height: 120px; }
    .section--first .section--first__content .content__head {
      width: 75%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 15px; }
      .section--first .section--first__content .content__head .content__arrow-left {
        width: 65px;
        height: 65px;
        margin-right: 10px;
        cursor: pointer; }
        .section--first .section--first__content .content__head .content__arrow-left .content__arrow-left__symbol {
          width: 100%;
          height: 100%; }
      .section--first .section--first__content .content__head .content__arrow-right {
        width: 65px;
        height: 65px;
        margin-left: 10px;
        cursor: pointer; }
        .section--first .section--first__content .content__head .content__arrow-right .content__arrow-right__symbol {
          width: 100%;
          height: 100%;
          -webkit-transform: scaleX(-1);
                  transform: scaleX(-1); }
      .section--first .section--first__content .content__head .content__text {
        position: relative;
        width: 60%;
        height: 100px;
        text-align: center; }
        .section--first .section--first__content .content__head .content__text .content__text__box {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          -webkit-transition: opacity 0.5s;
          transition: opacity 0.5s;
          will-change: opacity; }
          .section--first .section--first__content .content__head .content__text .content__text__box.current {
            opacity: 1; }
          .section--first .section--first__content .content__head .content__text .content__text__box .content__text__title {
            margin-bottom: 5px; }
    .section--first .section--first__content .content__nav {
      width: 60%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-right: 0;
      margin: 5% 0 5% 0; }
      .section--first .section--first__content .content__nav .nav__bullet {
        width: 25px;
        height: 25px;
        cursor: pointer; }
        .section--first .section--first__content .content__nav .nav__bullet:not(:last-child) {
          margin-right: 5px; }
        .section--first .section--first__content .content__nav .nav__bullet .nav__bullet__drop {
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .section--first .section--first__content .content__nav .nav__bullet .nav__bullet__drop .drop__fill {
            fill: #fff;
            fill-opacity: 0;
            stroke-width: 8px;
            stroke: #fff;
            -webkit-transition: fill-opacity 1s ease;
            transition: fill-opacity 1s ease; }
        .section--first .section--first__content .content__nav .nav__bullet.current .nav__bullet__drop .drop__fill {
          fill-opacity: 1; }
    .section--first .section--first__content .button {
      -ms-flex-item-align: center;
          align-self: center; }
      .section--first .section--first__content .button.more-info-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
    .section--first .section--first__content .action-boxes {
      width: 60%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-transform: translateY(45%);
              transform: translateY(45%);
      z-index: 1; }
      .section--first .section--first__content .action-boxes .action-boxes__box {
        width: 100%;
        -ms-flex-preferred-size: 31%;
            flex-basis: 31%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 30px 0 15px;
        background-color: #05274c;
        border-radius: 5px; }
        .section--first .section--first__content .action-boxes .action-boxes__box .action-boxes__box__title {
          padding: 0 25px;
          margin-bottom: 20px;
          color: #629bc8;
          font-size: 25px; }
        .section--first .section--first__content .action-boxes .action-boxes__box .action-boxes__box__link {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          color: #fefefe;
          padding: 6px 25px 6px 15px; }
          .section--first .section--first__content .action-boxes .action-boxes__box .action-boxes__box__link:not(:last-child) {
            border-bottom: 1px solid rgba(98, 155, 200, 0.4); }
          .section--first .section--first__content .action-boxes .action-boxes__box .action-boxes__box__link .link__icon {
            width: 22px;
            height: 22px; }
            .section--first .section--first__content .action-boxes .action-boxes__box .action-boxes__box__link .link__icon .link__icon__symbol {
              width: 100%;
              height: 100%; }

/* ============= 
    section 2nd
   ============= */
.section--second {
  position: relative;
  height: 1150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .section--second .section--second__background-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/home_sect2_back_2600x1250.jpg") no-repeat;
    background-position: 50%;
    background-size: cover; }
  .section--second .section--second__credit {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .section--second .section--second__credit .credit__title {
      width: 60%;
      -ms-flex-item-align: center;
          align-self: center;
      text-align: center;
      margin: 150px 0 0 0; }
    .section--second .section--second__credit .credit__title-underline {
      width: 10%; }
    .section--second .section--second__credit .credit__paragraph-video {
      width: 60%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
      margin: 125px 0; }
      .section--second .section--second__credit .credit__paragraph-video .credit__video-area {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%; }

      .section--second .section--second__credit .credit__paragraph-video .credit__video-area  .credit__video-area__image {
        display: none; }            

      .section--second .section--second__credit .credit__paragraph-video .credit__paragraph {
        width: 100%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        -ms-flex-item-align: end;
            align-self: flex-end;
        padding: 25px 0px;
        margin: 0 0 0 15px; }
        .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__text {
          margin-bottom: 20px; }
        .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse; }
          .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center; }
            .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box:not(:last-child) {
              margin-left: 15px; }
            .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon {
              width: 40px;
              height: 40px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              margin-left: 8px;
              -webkit-transform: translateY(0);
                      transform: translateY(0);
              -webkit-transition: -webkit-transform .5s;
              transition: -webkit-transform .5s;
              transition: transform .5s;
              transition: transform .5s, -webkit-transform .5s;
              will-change: transform; }
              .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon.tiny-jump {
                -webkit-animation: tiny-jump .5s linear 1s forwards;
                        animation: tiny-jump .5s linear 1s forwards; }
              .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon.box__icon--first {
                -webkit-animation-delay: 0.5s;
                        animation-delay: 0.5s; }
              .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon.box__icon--second {
                -webkit-animation-delay: 1s;
                        animation-delay: 1s; }
              .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon.box__icon--third {
                -webkit-animation-delay: 1.5s;
                        animation-delay: 1.5s; }
              .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon .box__icon__symbol {
                width: 100%;
                height: 100%; }
            .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__desc {
              margin-top: 10px;
              font-weight: normal; }
    .section--second .section--second__credit .button {
      -ms-flex-item-align: center;
          align-self: center;
      margin-top: 5%; }

/* ============= 
    section 3
   ============= */
.section--third {
  position: relative;
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .section--third .section--third__background-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/home_sect3_back_2600x800.jpg") no-repeat;
    background-position-x: 50%;
    background-size: cover; }
  .section--third .section--third__info {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .section--third .section--third__info .info__title {
      width: 60%;
      -ms-flex-item-align: center;
          align-self: center;
      text-align: center; }
    .section--third .section--third__info .info__title-underline {
      width: 10%;
      margin-bottom: 50px; }
    .section--third .section--third__info .info__boxes {
      width: 60%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .section--third .section--third__info .info__boxes .box {
        position: relative;
        -ms-flex-preferred-size: 32%;
            flex-basis: 32%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .section--third .section--third__info .info__boxes .box .box__icon {
          width: 230px;
          height: 230px;
          -ms-flex-item-align: center;
              align-self: center;
          margin-bottom: 30px; }
          .section--third .section--third__info .info__boxes .box .box__icon .box__icon__symbol {
            width: 100%;
            height: 100%; }
        .section--third .section--third__info .info__boxes .box .box__title {
          text-align: center;
          margin-bottom: 10px; }
        .section--third .section--third__info .info__boxes .box .box__paragraph {
          text-align: center;
          padding: 0 50px;
          margin-bottom: 30px; }
        .section--third .section--third__info .info__boxes .box .box__arrow {
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          width: 50px;
          height: 50px;
          -ms-flex-item-align: center;
              align-self: center;
          cursor: pointer;
          -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
                  transform: matrix(1, 0, 0, 1, 0, 0);
          -webkit-transition: -webkit-transform .2s ease-in-out;
          transition: -webkit-transform .2s ease-in-out;
          transition: transform .2s ease-in-out;
          transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
          will-change: transform; }
          .section--third .section--third__info .info__boxes .box .box__arrow:hover {
            -webkit-transform: matrix(1.3, 0, 0, 1.3, 0, 0);
                    transform: matrix(1.3, 0, 0, 1.3, 0, 0); }
          .section--third .section--third__info .info__boxes .box .box__arrow .box__arrow__symbol {
            width: 100%;
            height: 100%; }

/* ============= 
    section 4th
   ============= */
.section--fourth {
  position: relative;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .section--fourth .section--fourth__background-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/home_sect4_back_2600x800.jpg") no-repeat;
    background-position: 50%;
    background-size: cover; }
  .section--fourth .section--fourth__experts {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .section--fourth .section--fourth__experts .experts__title {
      width: 60%;
      -ms-flex-item-align: center;
          align-self: center;
      text-align: center; }
    .section--fourth .section--fourth__experts .experts__title-underline {
      width: 12%;
      margin-bottom: 130px; }
    .section--fourth .section--fourth__experts .experts__boxes {
      width: 70%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .section--fourth .section--fourth__experts .experts__boxes .box {
        -ms-flex-preferred-size: 19%;
            flex-basis: 19%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 32px 12px;
        border-radius: 3px;
        background-color: rgba(255, 255, 255, 0.9);
        -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
                box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3); }
        .section--fourth .section--fourth__experts .experts__boxes .box .box__title {
          text-align: center;
          margin-bottom: 20px; }
        .section--fourth .section--fourth__experts .experts__boxes .box .box__paragraph {
          text-align: center; }
    .section--fourth .section--fourth__experts .contact-us-header-anchor {
      position: absolute;
      bottom: 0;
      height: 120px;
      width: 120px; }

/* ========================= 
    section 5th | contact us
   ========================= */
.section--fifth {
  position: relative;
  height: 700px; }
  .section--fifth .section--fifth__contact-us {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
    .section--fifth .section--fifth__contact-us .contact-us__contact {
      position: relative;
      width: 50%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-item-align: center;
          align-self: center;
      padding: 45px 0 0 0; }
      .section--fifth .section--fifth__contact-us .contact-us__contact .contact__title {
        width: 70%;
        text-align: center; }
      .section--fifth .section--fifth__contact-us .contact-us__contact .contact__title-underline {
        margin-bottom: 80px; }
      .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form {
        position: relative;
        width: 45%;
        height: 60%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        overflow: hidden; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__label-title {
          position: absolute;
          right: -30%;
          opacity: 0; }
          .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__label-title:nth-of-type(2) {
            top: 16%; }
          .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__label-title:nth-of-type(3) {
            top: 32%; }
          .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__label-title:nth-of-type(4) {
            top: 48%; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__field {
          width: 100%;
          -ms-flex-preferred-size: 13%;
              flex-basis: 13%;
          margin-bottom: 2px;
          border: none;
          border: 1px solid #b3b2ae;
          border-radius: 3px;
          border-color: #b3b2ae;
          text-indent: 10px;
          color: #123F6D; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__invalid {
          font-size: 13px;
          font-weight: normal;
          color: #b71616;
          margin-bottom: 10px;
          -webkit-transition: opacity .4s;
          transition: opacity .4s;
          will-change: opacity; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__message {
          -ms-flex-preferred-size: 40%;
              flex-basis: 40%;
          padding: 10px 0;
          margin-bottom: 25px;
          max-height: 120px;
          overflow-x: hidden; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__button {
          -ms-flex-preferred-size: 15%;
              flex-basis: 15%;
          border: none;
          color: #fefefe;
          -webkit-transition: background .5s ease-in-out;
          transition: background .5s ease-in-out; }
          .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__button.success {
            background-color: #8DC63F; }
          .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__button:hover {
            -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
                    transform: matrix(1, 0, 0, 1, 0, 0); }
    .section--fifth .section--fifth__contact-us .contact-us__options {
      position: relative;
      width: 50%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      .section--fifth .section--fifth__contact-us .contact-us__options .contact-us__background {
        width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        background: url("/assets/images/home_sect5_back_1250x1100.jpg") no-repeat;
        background-position: 50%;
        background-size: cover; }
      .section--fifth .section--fifth__contact-us .contact-us__options .media {
        position: absolute;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 80%;
        height: 130px;
        background-color: #2e4f7c;
        border-bottom-left-radius: 5px; }
        .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow {
          height: 86px;
          -ms-flex-preferred-size: 22px;
              flex-basis: 22px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-left: 4%; }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow .arrow__icon {
            width: 100%;
            height: 100%; }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow .arrow__icon__symbol {
            width: 100%;
            height: 100%;
            -webkit-transform: matrix(0.3, 0, 0, 1, 0, 0);
                    transform: matrix(0.3, 0, 0, 1, 0, 0);
            -webkit-transform-origin: right;
                    transform-origin: right;
            -webkit-transition: -webkit-transform 1s ease-in-out;
            transition: -webkit-transform 1s ease-in-out;
            transition: transform 1s ease-in-out;
            transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }
            .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow .arrow__icon__symbol.pop-left {
              -webkit-animation: pop-left 0.5s ease-in-out forwards;
                      animation: pop-left 0.5s ease-in-out forwards; }
        .section--fifth .section--fifth__contact-us .contact-us__options .media .media__kind {
          height: 65%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__kind:not(:last-child) {
            margin-left: 15px; }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__kind .media-kind__icon {
            width: 40px;
            height: 40px;
            margin-left: 10px; }
            .section--fifth .section--fifth__contact-us .contact-us__options .media .media__kind .media-kind__icon .media-kind__icon__symbol {
              width: 100%;
              height: 100%; }

/* ================= 
     inner page
   ================= */
/* ================= 
     background image
   ================= */
.page__background-image {
  position: relative;
  width: 100%;
  height: 420px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-bottom: 5px solid #8ec72a; }

/* ============== 
    main section
   ============== */
.inner-page__section--main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 100px 50px;
  background-color: #efefef; }

/* ================= 
     headline
   ================= */
inner-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 55px; }
  inner-headline .inner-underline {
    width: 75%; }

/* ================= 
     paragrapgh
   ================= */
.inner-paragrapgh {
  margin-bottom: 5%; }
  .inner-paragrapgh.basassach__margin-bottom--small {
    margin-bottom: 15px; }
  .inner-paragrapgh.basassach__inner-title {
    font-size: 19px;
    font-weight: normal;
    margin-bottom: 35px; }
    .inner-paragrapgh.basassach__inner-title.basassach__text-bold {
      font-size: 19px;
      font-weight: bold; }

/* ===================== 
   square bullets list
   ===================== */
inner-list-square-bullets,
inner-list-square-bullets-second,
inner-list-square-bullets-third,
inner-list-square-bullets-fourth,
inner-list-square-bullets-fifth,
inner-list-square-bullets-sixth,
inner-list-square-bullets-seventh,
inner-list-square-bullets-eighth,
inner-list-square-bullets-ninth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5%; }
  inner-list-square-bullets.basassach__margin-bottom--small,
  inner-list-square-bullets-second.basassach__margin-bottom--small,
  inner-list-square-bullets-third.basassach__margin-bottom--small,
  inner-list-square-bullets-fourth.basassach__margin-bottom--small,
  inner-list-square-bullets-fifth.basassach__margin-bottom--small,
  inner-list-square-bullets-sixth.basassach__margin-bottom--small,
  inner-list-square-bullets-seventh.basassach__margin-bottom--small,
  inner-list-square-bullets-eighth.basassach__margin-bottom--small,
  inner-list-square-bullets-ninth.basassach__margin-bottom--small {
    margin-bottom: 15px; }
  inner-list-square-bullets .text,
  inner-list-square-bullets-second .text,
  inner-list-square-bullets-third .text,
  inner-list-square-bullets-fourth .text,
  inner-list-square-bullets-fifth .text,
  inner-list-square-bullets-sixth .text,
  inner-list-square-bullets-seventh .text,
  inner-list-square-bullets-eighth .text,
  inner-list-square-bullets-ninth .text {
    margin-bottom: 5px; }
  inner-list-square-bullets .highlights,
  inner-list-square-bullets-second .highlights,
  inner-list-square-bullets-third .highlights,
  inner-list-square-bullets-fourth .highlights,
  inner-list-square-bullets-fifth .highlights,
  inner-list-square-bullets-sixth .highlights,
  inner-list-square-bullets-seventh .highlights,
  inner-list-square-bullets-eighth .highlights,
  inner-list-square-bullets-ninth .highlights {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 15px; }
    inner-list-square-bullets .highlights .highlights__highlight,
    inner-list-square-bullets-second .highlights .highlights__highlight,
    inner-list-square-bullets-third .highlights .highlights__highlight,
    inner-list-square-bullets-fourth .highlights .highlights__highlight,
    inner-list-square-bullets-fifth .highlights .highlights__highlight,
    inner-list-square-bullets-sixth .highlights .highlights__highlight,
    inner-list-square-bullets-seventh .highlights .highlights__highlight,
    inner-list-square-bullets-eighth .highlights .highlights__highlight,
    inner-list-square-bullets-ninth .highlights .highlights__highlight {
      position: relative; }
      inner-list-square-bullets .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-second .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-third .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-fourth .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-fifth .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-sixth .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-seventh .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-eighth .highlights .highlights__highlight .highlight__text-bold,
      inner-list-square-bullets-ninth .highlights .highlights__highlight .highlight__text-bold {
        font-weight: bold; }
      inner-list-square-bullets .highlights .highlights__highlight a,
      inner-list-square-bullets-second .highlights .highlights__highlight a,
      inner-list-square-bullets-third .highlights .highlights__highlight a,
      inner-list-square-bullets-fourth .highlights .highlights__highlight a,
      inner-list-square-bullets-fifth .highlights .highlights__highlight a,
      inner-list-square-bullets-sixth .highlights .highlights__highlight a,
      inner-list-square-bullets-seventh .highlights .highlights__highlight a,
      inner-list-square-bullets-eighth .highlights .highlights__highlight a,
      inner-list-square-bullets-ninth .highlights .highlights__highlight a {
        color: #000;
        text-decoration: underline; }

/* ================= 
     advantages list
   ================= */
inner-list-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3%; }
  inner-list-advantages .advantages .advantage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 15px; }
    inner-list-advantages .advantages .advantage .advantage__icon {
      width: 18px;
      height: 18px;
      margin: 0 0 5px 6px; }
      inner-list-advantages .advantages .advantage .advantage__icon .advantage__icon__symbol {
        width: 100%;
        height: 100%; }
    inner-list-advantages .advantages .advantage .basassach__running-text {
      margin-top: 3px; }

/* ===================== 
     download files list
   ===================== */
inner-download-files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3%; }
  inner-download-files .download-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    inner-download-files .download-boxes .download-box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 2%; }
      inner-download-files .download-boxes .download-box .download-box__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        inner-download-files .download-boxes .download-box .download-box__link .box__icon {
          width: 50px;
          height: 50px;
          margin-left: 15px; }
          inner-download-files .download-boxes .download-box .download-box__link .box__icon .box__icon__symbol {
            width: 100%;
            height: 100%; }
        inner-download-files .download-boxes .download-box .download-box__link .box__desc .box__desc__title {
          margin-bottom: 0; }
        inner-download-files .download-boxes .download-box .download-box__link .box__desc .box__desc__date {
          margin: 0; }
  inner-download-files .link {
    margin-right: 65px;
    font-size: 16px;
    color: #F15A31; }

/* ============ 
     Separator
   ============ */
inner-separator {
  width: 100%; }
  inner-separator .separator {
    margin: 0 0 3% 0;
    border-width: 2px;
    opacity: 0.3; }

/* ==============
   about us add 
   ============== */
/* =================================== 
     complementary solutions section 
   =================================== */
.section--agenda {
  position: relative;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .section--agenda .agenda__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/home_sect3_back_2600x800.jpg) no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: -1; }
  .section--agenda .agenda__title-underline {
    width: 9%;
    margin-bottom: 100px; }
  .section--agenda .agenda-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80%; }
    .section--agenda .agenda-boxes .agenda-boxes__box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-preferred-size: 15%;
          flex-basis: 15%; }
      .section--agenda .agenda-boxes .agenda-boxes__box .box__icon {
        width: 150px;
        height: 150px;
        margin-bottom: 30px; }
        .section--agenda .agenda-boxes .agenda-boxes__box .box__icon .box__icon__symbol {
          width: 100%;
          height: 100%; }
      .section--agenda .agenda-boxes .agenda-boxes__box .box__head {
        text-align: center;
        margin-bottom: 20px; }
      .section--agenda .agenda-boxes .agenda-boxes__box .box__text {
        text-align: center;
        margin-bottom: 20px; }
      .section--agenda .agenda-boxes .agenda-boxes__box .box__arrow {
        width: 50px;
        height: 50px; }

/* =================================== 
     high rating section 
   =================================== */
.section--high-rat {
  position: relative;
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10% 0 0 0; }
  .section--high-rat .high-rat__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/home_sect1_back_hand_2600x790.jpg") no-repeat;
    background-position-x: 65%;
    background-position-y: 50%;
    background-size: cover;
    z-index: -1; }
  .section--high-rat .high-rat__title {
    margin-bottom: 1%; }
  .section--high-rat .high-rat__subtitle {
    margin-bottom: 10%; }

/* =================== 
     contact us page 
   =================== */
inner-bg-image.contact-us-page .page__background-image {
  height: 120px;
  background: #05274c; }

/* =================== 
    Organizational structure page 
=================== */
inner-bg-image.orgnizational-struc__img .page__background-image {
  height: 620px; }

.inner-page__section--main.organizational-structure {
  padding: 0; }

/* =================== 
    role-holders 
=================== */
.inner-list-square-ustyle inner-list-square-bullets-fourth .title,
.inner-list-square-ustyle inner-list-square-bullets-fifth .title,
.inner-list-square-ustyle inner-list-square-bullets-sixth .title,
.inner-list-square-ustyle inner-list-square-bullets-seventh .title,
.inner-list-square-ustyle inner-list-square-bullets-eighth .title {
  margin-bottom: 0; }

.inner-list-square-ustyle inner-list-square-bullets-fourth .text,
.inner-list-square-ustyle inner-list-square-bullets-fifth .text,
.inner-list-square-ustyle inner-list-square-bullets-sixth .text,
.inner-list-square-ustyle inner-list-square-bullets-seventh .text,
.inner-list-square-ustyle inner-list-square-bullets-eighth .text {
  margin-bottom: 20px;
  color: #888; }

/* =================== 
    tablet break point 
=================== */
@media screen and (max-width: 879px) {
  /* ================= 
            background image
        ================= */
  /* ============== 
            main section
        ============== */
  /* ================= 
            headline
        ================= */
  inner-headline {
    width: 100%; }
    inner-headline .inner-title {
      width: 100%; }
  /* ================= 
            paragrapgh
        ================= */
  .inner-paragrapgh {
    width: 100%; }
  /* ===================== 
        square bullets list
        ===================== */
  inner-list-square-bullets,
  inner-list-square-bullets-second,
  inner-list-square-bullets-third,
  inner-list-square-bullets-fourth,
  inner-list-square-bullets-fifth,
  inner-list-square-bullets-sixth,
  inner-list-square-bullets-seventh,
  inner-list-square-bullets-eighth,
  inner-list-square-bullets-ninth {
    width: 100%; }
  /* ================= 
            advantages list
        ================= */
  inner-list-advantages {
    width: 100%; }
  /* ===================== 
            download files list
        ===================== */
  inner-download-files {
    width: 100%; }
  /* ============ 
            Separator
        ============ */
  /* ==============
        about us add 
        ============== */
  /* =================================== 
            complementary solutions section 
        =================================== */
  .section--agenda {
    height: 1000px; }
    .section--agenda .agenda-boxes {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
  /* =================================== 
            high rating section 
        =================================== */
  .section--high-rat {
    height: 1500px; }
  /* =================== 
            contact us page 
        =================== */
  inner-bg-image.contact-us-page .page__background-image {
    height: 120px;
    background: #05274c; }
  /* =================== 
            Organizational structure page 
        =================== */
  inner-bg-image.orgnizational-struc__img .page__background-image {
    display: none; }
  inner-headline.orgnizational-struc__head {
    margin-top: 120px; } }

/* ================= 
     inner page
   ================= */
.basassach__inner-title {
  margin-bottom: 30px; }

.basassach__inner-text {
  margin-bottom: 25px; }

/* ================= 
     background image
   ================= */
.page__image {
  position: relative;
  width: 100%;
  height: 420px;
  background: url(/assets/images/foreign-trade_main_back_2600x420.jpg) no-repeat;
  background-position: 50%;
  background-size: cover;
  border-bottom: 5px solid #8ec72a; }

/* ================= 
     main section 
   ================= */
.inner-page__section--main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 100px 50px;
  background-color: #efefef; }
  .inner-page__section--main .main__title-underline {
    width: 10%;
    margin-bottom: 55px; }
  .inner-page__section--main .main__paragraph {
    margin-bottom: 30px; }
  .inner-page__section--main .main__prog-highlights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5%; }
    .inner-page__section--main .main__prog-highlights .main__prog-highlights__highlights {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0 15px; }
  .inner-page__section--main .main__trade-advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3%; }
    .inner-page__section--main .main__trade-advantages .main__trade-advantages__advantages .advantages__advantage {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 15px; }
      .inner-page__section--main .main__trade-advantages .main__trade-advantages__advantages .advantages__advantage .advantage__icon {
        width: 18px;
        height: 18px;
        margin: 0 0 5px 6px; }
        .inner-page__section--main .main__trade-advantages .main__trade-advantages__advantages .advantages__advantage .advantage__icon .advantage__icon__symbol {
          width: 100%;
          height: 100%; }
  .inner-page__section--main .main__separator {
    width: 100%;
    margin: 0 0 3% 0;
    border-width: 2px;
    opacity: 0.3; }
  .inner-page__section--main .main__download-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3%; }
    .inner-page__section--main .main__download-files .main__download-files__download-boxes {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .inner-page__section--main .main__download-files .main__download-files__download-boxes .download-boxes__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 2%; }
        .inner-page__section--main .main__download-files .main__download-files__download-boxes .download-boxes__box .box__icon {
          width: 50px;
          height: 50px;
          margin-left: 15px; }
          .inner-page__section--main .main__download-files .main__download-files__download-boxes .download-boxes__box .box__icon .box__icon__symbol {
            width: 100%;
            height: 100%; }
        .inner-page__section--main .main__download-files .main__download-files__download-boxes .download-boxes__box .box__desc .box__desc__title {
          margin-bottom: 0; }
        .inner-page__section--main .main__download-files .main__download-files__download-boxes .download-boxes__box .box__desc .box__desc__date {
          margin: 0; }
    .inner-page__section--main .main__download-files .main__download-files__link {
      margin-right: 65px;
      color: #F15A31; }

/* =================================== 
     complementary solutions section 
   =================================== */
.main__comp-solutions {
  position: relative;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .main__comp-solutions .main__comp-solutions__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/home_sect3_back_2600x800.jpg) no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: -1; }
  .main__comp-solutions .main__comp-solutions__title {
    margin-top: 120px; }
  .main__comp-solutions .main__comp-solutions__title-underline {
    width: 10%;
    margin-bottom: 100px; }
  .main__comp-solutions .main__comp-solutions__comp-sol__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80%; }
    .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%; }
      .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__icon {
        width: 200px;
        height: 200px;
        margin-bottom: 30px; }
        .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__icon .box__icon__symbol {
          width: 100%;
          height: 100%; }
      .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__head {
        margin-bottom: 20px; }
      .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__text {
        text-align: center;
        margin-bottom: 20px; }
      .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__arrow {
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .main__comp-solutions .main__comp-solutions__comp-sol__boxes .comp-sol__boxes__box .box__arrow .box__arrow__symbol {
          width: 100%;
          height: 100%; }

/* ================= 
     background image
   ================= */
.page__image--about-us {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("/assets/images/about-us_main_back_1920x420.jpg") no-repeat;
  background-position: 50%;
  background-size: cover;
  border-bottom: 5px solid #8ec72a; }

/* ================= 
     about-us section 
   ================= */
.section--about-us {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 100px 50px;
  background-color: #efefef; }
  .section--about-us .about-us__title-underline {
    width: 10%;
    margin-bottom: 35px; }
  .section--about-us .about-us__paragraph {
    width: 100%;
    margin-bottom: 30px;
    font-weight: normal; }
    .section--about-us .about-us__paragraph.about-us__list-title {
      margin-bottom: 5px; }
  .section--about-us .about-us__insurance-cases {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 15px;
    margin-bottom: 15px; }

/* ===================================== 
    tablet breakpoint - aka 879px
   ===================================== */
@media screen and (max-width: 879px) {
  /* ================= 
        page side menu
      ================= */
  .body__side-menu {
    display: none; }
  /* ========== 
     header
   ========== */
  .body__header {
    position: absolute; }
    .body__header .header__ruler .header__options.header__options--right {
      margin-left: 0; }
    .body__header .header__ruler .header__options.header__options--left .header__options__button:not(:last-child) {
      display: none; }
    .body__header .header__ruler .header__company-logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .body__header .header__ruler .header__company-logo .logo__icon {
        width: 75%; }
    .body__header .header__menu {
      height: auto; }
      .body__header .header__menu.open {
        -webkit-transform: translateX(0);
                transform: translateX(0); }
      .body__header .header__menu .pages {
        height: auto;
        padding-top: 120px;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-transform: translateX(100%);
                transform: translateX(100%); }
        .body__header .header__menu .pages.open .header__menu__lists-centered {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          width: 75%; }
          .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category {
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
            width: 100%;
            padding: 15px 0;
            background-color: transparent; }
        .body__header .header__menu .pages .header__menu__lists-centered {
          -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
                  transform: matrix(1, 0, 0, 1, 0, 0);
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
          .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-pack: distribute;
                justify-content: space-around;
            margin-bottom: 15px; }
            .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons .pages__page--button {
              -ms-flex-preferred-size: 45%;
                  flex-basis: 45%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-weight: bolder;
              text-shadow: none; }
          .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page.pages__page--primary {
            font-size: 30px; }
          .body__header .header__menu .pages .header__menu__lists-centered .pages__category .pages__page.pages__page--secondary {
            font-size: 17px; }
          .body__header .header__menu .pages .header__menu__lists-centered .header__menu__lists-separator {
            display: block;
            width: 100%;
            -ms-flex-item-align: center;
                align-self: center; }
            .body__header .header__menu .pages .header__menu__lists-centered .header__menu__lists-separator:nth-child(2) {
              display: block; }
  /* ============== 
        section 1st
      ============== */
  .section--first {
    height: 2000px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .section--first .section--first__gallery {
      position: relative;
      height: 500px; }
      .section--first .section--first__gallery .gallery__images .gallery__images__image:nth-child(2) {
        background-position-x: 75%; }
    .section--first .section--first__content {
      position: relative;
      padding: 60px 0 0 0;
      margin-top: 0;
      background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, #2b5d90), color-stop(65%, #05274c));
      background: linear-gradient(to top, #2b5d90 25%, #05274c 65%);
      /* button */
      /* boxes */ }
      .section--first .section--first__content .content__header-simulator {
        display: none; }
      .section--first .section--first__content .content__head {
        width: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 100px; }
        .section--first .section--first__content .content__head .content__text {
          width: 80%; }
      .section--first .section--first__content .button {
        margin-bottom: 50px; }
      .section--first .section--first__content .action-boxes {
        width: 80%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-transform: translateY(0);
                transform: translateY(0); }
        .section--first .section--first__content .action-boxes .action-boxes__box {
          -ms-flex-preferred-size: auto;
              flex-basis: auto; }
          .section--first .section--first__content .action-boxes .action-boxes__box:not(:last-child) {
            margin-bottom: 15px; }
  /* ============== 
        section 2nd
      ============== */
  .section--second {
    padding: 50px 0; }
    .section--second .section--second__background-wrap {
      background-position-x: 30%; }
    .section--second .section--second__credit {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .section--second .section--second__credit .credit__title {
        width: 80%;
        margin-top: 0; }
      .section--second .section--second__credit .credit__title-underline {
        width: 20%;
        margin-bottom: 30px; }
      .section--second .section--second__credit .credit__paragraph-video {
        width: 80%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        margin: 0; }
        .section--second .section--second__credit .credit__paragraph-video .credit__video-area {
          width: 100%;
          -ms-flex-preferred-size: 450px;
              flex-basis: 450px;
          cursor: pointer; }
        .section--second .section--second__credit .credit__paragraph-video .credit__paragraph {
          margin: 0 0 50px 0; }
          .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__text {
            text-align: center; }
          .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes {
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
      .section--second .section--second__credit .button {
        -ms-flex-item-align: center;
            align-self: center;
        margin-top: 5%; }
  /* ============== 
        section 3th
      ============== */
  .section--third {
    height: 1650px;
    padding: 50px 0; }
    .section--third .section--third__info {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 50px 0; }
      .section--third .section--third__info .info__title {
        width: 90%; }
      .section--third .section--third__info .info__title-underline {
        width: 20%; }
      .section--third .section--third__info .info__boxes {
        width: 80%;
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
        .section--third .section--third__info .info__boxes .box {
          -ms-flex-preferred-size: auto;
              flex-basis: auto;
          margin-bottom: 30px; }
          .section--third .section--third__info .info__boxes .box .box__icon {
            width: 200px;
            height: 200px;
            margin-bottom: 0; }
          .section--third .section--third__info .info__boxes .box .box__arrow {
            position: relative;
            left: 0;
            bottom: auto; }
  /* ============== 
        section 4th
      ============== */
  .section--fourth {
    height: 1200px;
    padding: 50px 0; }
    .section--fourth .section--fourth__experts {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .section--fourth .section--fourth__experts .experts__title {
        width: 90%; }
      .section--fourth .section--fourth__experts .experts__title-underline {
        width: 25%;
        margin-bottom: 40px; }
      .section--fourth .section--fourth__experts .experts__boxes {
        width: 65%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .section--fourth .section--fourth__experts .experts__boxes .box {
          -ms-flex-preferred-size: auto;
              flex-basis: auto;
          margin-bottom: 15px; }
  /* ============== 
        section 5th
      ============== */
  .section--fifth {
    height: 1000px; }
    .section--fifth .section--fifth__contact-us {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%; }
      .section--fifth .section--fifth__contact-us .contact-us__contact {
        width: 100%;
        -ms-flex-preferred-size: 600px;
            flex-basis: 600px;
        padding-bottom: 40px; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__title {
          width: 90%; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__title-underline {
          margin-bottom: 40px; }
        .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form {
          height: 70%;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; }
      .section--fifth .section--fifth__contact-us .contact-us__options {
        width: 100%;
        -ms-flex-preferred-size: 400px;
            flex-basis: 400px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .section--fifth .section--fifth__contact-us .contact-us__options .media {
          right: auto;
          top: 0;
          height: 70%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-bottom-right-radius: 5px;
          background-color: rgba(46, 79, 124, 0.9); }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow {
            display: none; }
          .section--fifth .section--fifth__contact-us .contact-us__options .media .media__kind {
            height: auto;
            margin: 0 0 0 25px; }
  /* ============== 
        footer
      ============== */
  .body__footer {
    height: 950px; }
    .body__footer .footer__menu {
      height: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .body__footer .footer__menu .menu__column {
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-left: 0; }
        .body__footer .footer__menu .menu__column .menu__column__title {
          font-size: 25px;
          margin-bottom: 15px;
          text-shadow: -1px 1px 3px rgba(0, 0, 0, 0.4); }
      .body__footer .footer__menu .menu__column__separator {
        display: block;
        width: 30%;
        height: 2px;
        background-color: #F15A31;
        -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
                box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); }
    .body__footer .footer__closer {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

/* ===================================== 
    mobile breakpoint - aka 500px
   ===================================== */
@media screen and (max-width: 500px) {
  /* ================= 
        page side menu
      ================= */
  /* ========== 
     header
   ========== */
  .body__header {
    position: absolute; }
    .body__header .header__ruler .header__company-logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .body__header .header__ruler .header__company-logo .logo__icon {
        width: 75%; }
    .body__header .header__menu {
      height: auto; }
      .body__header .header__menu.open {
        -webkit-transform: translateX(0);
                transform: translateX(0); }
      .body__header .header__menu .pages {
        height: auto;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-transform: translateX(100%);
                transform: translateX(100%); }
        .body__header .header__menu .pages.open .header__menu__lists-centered {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          width: 75%; }
          .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category {
            -ms-flex-preferred-size: auto;
                flex-basis: auto; }
        .body__header .header__menu .pages .header__menu__lists-centered {
          -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
                  transform: matrix(1, 0, 0, 1, 0, 0);
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
          .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-pack: distribute;
                justify-content: space-around;
            margin-bottom: 15px; }
            .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons .pages__page--button {
              -ms-flex-preferred-size: 45%;
                  flex-basis: 45%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-weight: bolder;
              text-shadow: none; }
          .body__header .header__menu .pages .header__menu__lists-centered .header__menu__lists-separator {
            margin-top: 20px;
            width: 100%;
            -ms-flex-item-align: center;
                align-self: center; }
            .body__header .header__menu .pages .header__menu__lists-centered .header__menu__lists-separator:nth-child(2) {
              display: block; }
      .body__header .header__menu .header__menu__overlay {
        height: 8000px; }
  /* ============== 
        section 1st
      ============== */

  .section--first{
    display: block;
    height: auto;
  }

  .section--first .section--first__gallery {
    height: 320px; }
    .section--first .section--first__gallery .gallery__images .gallery__images__image:first-child {
      background-position-x: 70%; }
    .section--first .section--first__gallery .gallery__images .gallery__images__image:nth-child(2) {
      background-position-x: 70%; }
    .section--first .section--first__gallery .gallery__images .gallery__images__image:last-child {
      background-position-x: 70%; }
  .section--first .section--first__content {
        padding: 60px 0 60px 0;
    /* boxes */ }
    .section--first .section--first__content .content__header-simulator {
      display: none; }
    .section--first .section--first__content .content__head {
      margin-bottom: 170px; }

    /* navigation */
    .section--first .section--first__content .content__nav {
      margin: 5% auto; 
    }

    /* button */
    .section--first .section--first__content .more-info-button {
      margin: 20px auto 50px;
    }
      
  /* ============== 
        section 2nd
      ============== */
  .section--second {
    height: 1200px; }
    .section--second .section--second__background-wrap {
      background: #7a98b6 no-repeat;
      background-position-x: 36.8%; 
    }

    .section--second .section--second__credit {
      display: block;
      height: auto;
    }

    .section--second .section--second__credit .credit__title{
      margin: 0 auto;
    }

    .section--second .section--second__credit .credit__title-underline{
      margin: 15px auto;
    }

    .section--second .section--second__credit .credit__paragraph-video{
      margin: 0 auto;
    }

    .section--second .section--second__credit .credit__paragraph-video .credit__video-area{
      transform: scale(1.5);
      flex-basis: 0;
      margin-bottom: 0;
    }


    .section--second .section--second__credit .credit__paragraph-video .credit__video-area .credit__video-area__image{
      display: block;
    }


    .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon {
      width: 50px;
      height: 50px;
      margin-left: 0; }

    .section--second .section--second__credit .button {
      margin: 25% auto 0;
    }

  /* ============== 
        section 3th
      ============== */

      .section--third{
        display: block;
        height: auto;
      }

      .section--third .section--third__info .info__title{
        margin: 0 auto;
        margin-bottom: 25px;
      }

      .section--third .section--third__info .info__title-underline{
        margin: 0 auto;
      }

      .section--third .section--third__info .info__boxes{
        margin: 0 auto;
      }

      .section--third .section--third__info {
        position: relative;
      }


  /* ============== 
        section 4th
      ============== */

      .section--fourth{
          display: block;
          height: auto;
          background: #7a98b6;
      }

      .section--fourth .section--fourth__background-wrap{
          background: none;
      }

      .section--fourth .section--fourth__experts{
          display: block;
          position: relative;
          height: auto
      }

      .section--fourth .section--fourth__experts .experts__title{
        margin: 0 auto;
      }

      .section--fourth .section--fourth__experts .experts__title-underline{
        margin: 0 auto;
      }

      .section--fourth .section--fourth__experts .experts__boxes{
        margin: 50px auto;
      }

  /* ============== 
        section 5th
      ============== */
  .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form {
    width: 75%; }
	
	.section--fifth .section--fifth__contact-us .contact-us__contact {
		padding: 20px 0 0 0 !important;
	}
	
	.section--fifth .section--fifth__contact-us .contact-us__contact .contact__title {
		margin-top: 0 !important;
	}
  /* ============== 
        footer
      ============== */
  .body__footer .footer__closer {
    height: 200px; }
    .body__footer .footer__closer .footer__closer__text .footer__closer__text__access {
      margin-top: 5px; } }

/* ============================ 
     solutions for Ie10+ bugs
   ============================ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* particles js fallback - not working in ie */
  #particles-js.section--third__background-wrap {
    background-size: cover;
    background-position: 50% 50%; }
  /* general */
  ul, h4, p {
    margin: 0; }
  h3 {
    margin-top: 0; }
  /* ================= 
     page side menu
   ================= */
  .body__side-menu .side-menu__sections {
    width: 200px; }
  /* ============= 
   section 1st
   ============= */
  .section--first .section--first__content {
    padding-top: 165px;
    margin-top: 0;
    /* button */
    /* boxes */ }
    .section--first .section--first__content .content__nav {
      margin-bottom: 5%; }
    .section--first .section--first__content .button.more-info-button {
      height: 75px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 20px 0; }
    .section--first .section--first__content .action-boxes {
      width: 75%;
      -webkit-transform: translateY(15%);
              transform: translateY(15%); }
  /* ============= 
        section 2nd
      ============= */
  .section--second .section--second__credit .credit__paragraph-video {
    width: 75%; }
  /* ============= 
          section 3rd
        ============= */
  .section--third .section--third__info .info__boxes {
    width: 75%; }
    .section--third .section--third__info .info__boxes .box .box__paragraph {
      padding: 0 20px; }
  /* ============= 
          section 4th
        ============= */
  .section--fourth .section--fourth__experts .experts__boxes {
    width: 75%;
    padding: 0; }
    .section--fourth .section--fourth__experts .experts__boxes .box {
      -ms-flex-preferred-size: 16%;
          flex-basis: 16%; }
  /* ========================= 
        section 5th | contact us
      ========================= */
  .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form {
    width: 55%; }
    .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__field {
      -ms-flex-preferred-size: 8%;
          flex-basis: 8%; }
    .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__message {
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%; }
    .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__button {
      -ms-flex-preferred-size: 8%;
          flex-basis: 8%; }
  .section--fifth .section--fifth__contact-us .contact-us__options .media {
    width: 95%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0; }
    .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow .arrow__icon__symbol {
      -webkit-transform-origin: left;
              transform-origin: left; }
  /* ============= 
        footer
      ============= */ }

/* ----------------- */
/* tablet breakpoint */
/* ----------------- */
@media screen and (max-width: 879px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* particles js fallback - not working in ie */
  /* general */
  /* ========== 
          header
        ========== */
  .body__header .header__menu .pages .header__menu__lists-centered .pages__category--mobile-buttons {
    width: 100%; }
  /* ============= 
        section 1st
      ============= */
  .section--first .section--first__content {
    padding-top: 40px;
    /* button */
    /* boxes */ }
    .section--first .section--first__content .action-boxes .action-boxes {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .section--first .section--first__content .action-boxes .action-boxes .action-boxes__box {
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
  /* ============= 
     section 2nd
   ============= */
  .section--second .section--second__credit .button {
    margin-top: 35%; }
  /* ============= 
        section 3rd
      ============= */
  .section--third .section--third__info .info__boxes .box .box__icon {
    margin-bottom: 0; }
  /* ============= 
          section 4th
        ============= */
  .section--fourth .section--fourth__experts .experts__boxes {
    width: 80%; }
    .section--fourth .section--fourth__experts .experts__boxes .box {
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
  /* ========================= 
        section 5th | contact us
      ========================= */
  .section--fifth .section--fifth__contact-us .contact-us__contact {
    -ms-flex-preferred-size: 500px;
        flex-basis: 500px; }
    .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__field {
      -ms-flex-preferred-size: 7%;
          flex-basis: 7%; }
    .section--fifth .section--fifth__contact-us .contact-us__contact .contact__form .form__button {
      -ms-flex-preferred-size: 8%;
          flex-basis: 8%; }
  .section--fifth .section--fifth__contact-us .contact-us__options {
    -ms-flex-preferred-size: 500px;
        flex-basis: 500px; }
    .section--fifth .section--fifth__contact-us .contact-us__options .media {
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      padding-right: 0; }
      .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow {
        margin-left: 0; }
        .section--fifth .section--fifth__contact-us .contact-us__options .media .media__arrow .arrow__icon__symbol {
          -webkit-transform-origin: left;
                  transform-origin: left; }
  /* ============= 
        footer
      ============= */
  .body__footer .footer__menu .menu__column {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%; }
  .body__footer .footer__closer {
    height: 125px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

/* ----------------- */
/* mobile breakpoint */
/* ----------------- */
@media screen and (max-width: 500px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* particles js fallback - not working in ie */
  /* general */
  ul {
    padding: 0; }
  /* ========== 
          header
        ========== */
  .body__header .header__ruler .header__options.header__options--right {
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  .body__header .header__ruler .header__options.header__options--left {
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  .body__header .header__ruler .header__company-logo {
    -ms-flex-preferred-size: 58%;
        flex-basis: 58%; }
    .body__header .header__ruler .header__company-logo .logo__icon .logo__icon__symbol {
      -ms-flex-preferred-size: 65%;
          flex-basis: 65%; }
  .body__header .header__menu .pages.open .header__menu__lists-centered .pages__category {
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  /* ============= 
        section 1st
      ============= */
  .section--first .section--first__content {
    /* button */
    /* boxes */ }
    .section--first .section--first__content .content__head .content__arrow-left {
      width: 45px;
      height: 45px; }
    .section--first .section--first__content .content__head .content__arrow-right {
      width: 45px;
      height: 45px; }
    .section--first .section--first__content .content__head .content__text {
      width: 60%; }
  /* ============= 
     section 2nd
   ============= */
  .section--second .section--second__credit .credit__paragraph-video {
    width: 90%; }
    .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .section--second .section--second__credit .credit__paragraph-video .credit__paragraph .credit__paragraph__benef-boxes .benef-boxes__box .box__icon {
        width: 40px;
        height: 40px; }
  .section--second .section--second__credit .button {
    margin-top: 250px; }
  /* ============= 
        section 3rd
      ============= */
  /* ============= 
          section 4th
        ============= */
  /* ========================= 
        section 5th | contact us
      ========================= */
  /* ============= 
        footer
      ============= */
  .body__footer .footer__closer {
    height: 150px; }
    .body__footer .footer__closer .footer__closer__text {
      width: 100%;
      text-align: center; } }

/* ===========
   Particles
   =========== */
/* ---- base ---- 

html,body{ 
	width:100%;
	height:100%;
	background:#111;
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  font:normal 75% Arial, Helvetica, sans-serif;
} */
canvas {
  display: block;
  vertical-align: bottom; }

/* ---- particles.js container ---- */
#particles-js {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

.fancybox-enabled {
  overflow: hidden; }

.fancybox-enabled body {
  overflow: visible;
  height: 100%; }

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

.fancybox-container ~ .fancybox-container {
  z-index: 99992; }

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .25s,visibility 0s linear .25s;
  transition: opacity .25s,visibility 0s linear .25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-show-caption .fancybox-caption-wrap, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .25s,visibility 0s;
  transition: opacity .25s,visibility 0s; }

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-toolbar {
  top: 0;
  right: 0; }

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translateZ(0); }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: opacity,-webkit-transform;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.fancybox-slide:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block; }

.fancybox-slide--image {
  overflow: visible; }

.fancybox-slide--image:before {
  display: none; }

.fancybox-slide--video .fancybox-content, .fancybox-slide--video iframe {
  background: #000; }

.fancybox-slide--map .fancybox-content, .fancybox-slide--map iframe {
  background: #e5e3df; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-image, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff; }

.fancybox-iframe {
  display: block;
  padding: 0;
  border: 0;
  height: 100%; }

.fancybox-error, .fancybox-iframe {
  margin: 0;
  width: 100%;
  background: #fff; }

.fancybox-error {
  padding: 40px;
  max-width: 380px;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px Helvetica Neue,Helvetica,Arial,sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial,Helvetica Neue,Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  -webkit-transition: background .25s;
  transition: background .25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px; }

.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa; }

.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff; }

.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(20%, rgba(0, 0, 0, 0.1)), color-stop(40%, rgba(0, 0, 0, 0.2)), color-stop(80%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
  pointer-events: none; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a, .fancybox-caption button, .fancybox-caption select {
  pointer-events: all; }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none; }

.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none; }

.fancybox-button, .fancybox-infobar__body {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8); }

.fancybox-button:after, .fancybox-button:before {
  content: "";
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: .9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block; }

.fancybox-button[disabled]:after, .fancybox-button[disabled]:before {
  opacity: .3; }

.fancybox-button--left:after, .fancybox-button--right:after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor; }

.fancybox-button--left:after {
  left: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.fancybox-button--right:after {
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close:after, .fancybox-button--close:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity .25s;
  transition: opacity .25s; }

.fancybox-arrow:after {
  content: "";
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px; }

.fancybox-arrow--right {
  right: 0; }

.fancybox-arrow--left {
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1); }

.fancybox-arrow--left:after, .fancybox-arrow--right:after {
  left: 0; }

.fancybox-show-nav .fancybox-arrow {
  opacity: .6; }

.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: .3; }

.fancybox-loading {
  border: 6px solid rgba(99, 99, 99, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: a .8s infinite linear;
  animation: a .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

.fancybox-fx-slide.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--current {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1; }

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1; }

.fancybox-fx-rotate.fancybox-slide--previous {
  -webkit-transform: rotate(-1turn);
  transform: rotate(-1turn);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--next {
  -webkit-transform: rotate(1turn);
  transform: rotate(1turn);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--current {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1; }

.fancybox-fx-circular.fancybox-slide--previous {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--next {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--current {
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  opacity: 1; }

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1); }

@media (max-width: 800px) {
  .fancybox-infobar {
    left: 0;
    margin-left: 0; }
  .fancybox-button--left, .fancybox-button--right {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

.fancybox-button--fullscreen:before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none; }

.fancybox-button--pause:before, .fancybox-button--play:before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent; }

.fancybox-button--play:before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px; }

.fancybox-button--pause:before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px; }

.fancybox-button--thumbs, .fancybox-thumbs {
  display: none; }

@media (min-width: 800px) {
  .fancybox-button--thumbs {
    display: inline-block; }
  .fancybox-button--thumbs span {
    font-size: 23px; }
  .fancybox-button--thumbs:before {
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    -webkit-box-shadow: 0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0;
            box-shadow: 0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0; }
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 99995; }
  .fancybox-show-thumbs .fancybox-thumbs {
    display: block; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 220px; }
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0; }
  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1); }
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1; } }

/* ===============
   Angular css
 ================= */
/* ===============
   Form
 ================= */
.form__field.form__name + .form__invalid,
.form__field.form__phone + .form__invalid,
.form__field.form__email + .form__invalid {
  opacity: 0; }

.form__field.form__name.ng-invalid + .form__invalid,
.form__field.form__phone.ng-invalid + .form__invalid,
.form__field.form__email.ng-invalid + .form__invalid {
  opacity: 1; }

.form__field.form__name.ng-valid + .form__invalid,
.form__field.form__phone.ng-valid + .form__invalid,
.form__field.form__email.ng-valid + .form__invalid {
  opacity: 0; }

.form__field.form__name.ng-pristine + .form__invalid,
.form__field.form__phone.ng-pristine + .form__invalid,
.form__field.form__email.ng-pristine + .form__invalid {
  opacity: 0; }

.h-a11y {
  margin: 0;
  padding: 0;
  list-style: none; }
  .h-a11y a {
    position: absolute;
    right: 0;
    top: -100px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    z-index: 99; }
    .h-a11y a:focus {
      top: 0; }

	  
	  
	  
.hamburger-menu:focus .button__icon {
	outline: 3px solid rgba(0, 178, 255, 0.7);
}







@media screen and (max-width: 879px) {
	.pages__category--mobile-buttons {
	display: block !important;
	text-align: center !important;
	}

	.pages__category--mobile-buttons li {
		display: inline-block !important;
		margin: 20px 10px;
	}	
}







/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 40px auto;
  padding: 20px 30px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
  font-family: Arial;
  color: #000;
}
/* The Close Button */
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal table {
  direction: rtl;
}

.modal td {
  padding: 10px;
  vertical-align: top;
}

.modal tr > td:first-child {
  font-weight: bold;
  width: 170px;
}

.modal h2 {
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.modal-content .head {
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.modal-content img {
  max-width: 100%;
}
