/* stylelint-disable */
/* ==========================================================================
sanitize.css (reset) (https://github.com/csstools/sanitize.css)
========================================================================== */
/**
 * Document
 */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/**
 * Use the default user interface font in all browsers (opinionated).
 */
html {
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/**
 * Use the default monospace user interface font in all browsers (opinionated).
 */
code,
kbd,
samp,
pre {
  font-family: "Menlo", "Consolas", "Roboto Mono", "Ubuntu Monospace", "Noto Mono", "Oxygen Mono", "Liberation Mono", monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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 size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (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 iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type='checkbox'],
[type='radio'] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy='true'] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled='true'],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden='false'][hidden] {
  display: initial;
}

[aria-hidden='false'][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E");
}

/**
 * Change the inconsistent appearance in IE (opinionated).
 */
::-ms-expand {
  display: none;
}

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* stylelint-disable */
/* ==========================================================================
fonts
========================================================================== */
/* open-sans-300 - latin_cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: optional;
  src: local("Open Sans Light"), local("OpenSans-Light"), url("../fonts/open-sans-v17-latin_cyrillic-300.woff2") format("woff2"), url("../fonts/open-sans-v17-latin_cyrillic-300.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-regular - latin_cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans-v17-latin_cyrillic-regular.woff2") format("woff2"), url("../fonts/open-sans-v17-latin_cyrillic-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-800 - latin_cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: local("Open Sans ExtraBold"), local("OpenSans-ExtraBold"), url("../fonts/open-sans-v17-latin_cyrillic-800.woff2") format("woff2"), url("../fonts/open-sans-v17-latin_cyrillic-800.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* stylelint-disable */
/* stylelint-enable */
/* ==========================================================================
base
========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #283645;
  font-family: "Open Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

/**
 * Screen reader only
 */
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

a {
  display: inline-block;
}

/* https://css-tricks.com/introduction-reduced-motion-media-query/ */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.clearfix::after {
  display: table;
  clear: both;
  content: '';
}

/**
 * Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
 */
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex='-1']:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

abbr[title],
abbr[data-original-title] {
  border-bottom: 0;
  cursor: help;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre {
  overflow: auto;
  margin-top: 0;
  margin-bottom: 1rem;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 1rem;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

select {
  word-wrap: normal;
}

input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
  margin: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 1.5rem;
  line-height: inherit;
  white-space: normal;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

output {
  display: inline-block;
}

summary {
  cursor: pointer;
}

/* debug tools */
/* debug tools */
/* debug tools */
/* if you forgot the 'alt' attribute */
/* ==========================================================================
typography
========================================================================== */
/* ==========================================================================
grid
========================================================================== */
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 130px;
  }
}

/* ==========================================================================
buttons
========================================================================== */
.btn {
  display: inline-block;
  padding: 13px 24px 13px;
  border: 3px solid #fff;
  margin: 0;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  /* stylelint-disable */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  /* stylelint-enable */
}

.btn:focus, .btn:hover {
  background: #fff;
  box-shadow: 0 5px 7px 0 rgba(1, 1, 1, 0.75);
  color: #d22856;
}

.btn:active {
  box-shadow: none;
  color: #f2ced5;
}

.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn--rounded {
  border-radius: 25px;
}

.btn--block {
  display: block;
  width: 100%;
}

/* ==========================================================================
page
========================================================================== */
.page.nav-open {
  background-color: #283645;
}

/* ==========================================================================
page-header
========================================================================== */
.page-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: transform 0.5s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}

.page-header__inner {
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 660px) {
  .page-header__inner {
    height: 110px;
  }
}

@media (min-width: 1200px) {
  .page-header__inner {
    height: auto;
  }
}

.page-header--hidden {
  transform: translateY(-100%);
}

.nav-open .page-header {
  background-color: #283645;
}

.logo-wrapper {
  flex-shrink: 0;
}

@media (min-width: 660px) {
  .logo-wrapper {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .logo-wrapper {
    display: inline-flex;
    height: 110px;
    flex-direction: row;
    align-items: center;
  }
}

.logo {
  transition: opacity 0.2s ease-in-out;
}

.logo:focus, .logo:hover {
  opacity: 0.5;
}

.logo:active {
  opacity: 0.2;
}

.logo__image {
  width: 75px;
  height: 22px;
}

@media (min-width: 660px) {
  .logo__image {
    width: 150px;
    height: 40px;
  }
}

.page-header__nav {
  position: absolute;
  top: 65px;
  right: 0;
  left: 0;
}

@media (min-width: 660px) {
  .page-header__nav {
    top: 110px;
  }
}

@media (min-width: 1200px) {
  .page-header__nav {
    position: static;
  }
}

.main-nav {
  background-color: inherit;
  color: #fff;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
  visibility: hidden;
}

@media (min-width: 1200px) {
  .main-nav {
    opacity: 1;
    visibility: visible;
  }
}

.main-nav__list {
  display: flex;
  height: calc(100vh - 65px);
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 12px;
  border-top: 1px solid #fff;
  margin: 0;
  list-style: none;
}

@media (min-width: 660px) {
  .main-nav__list {
    height: calc(100vh - 110px);
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .main-nav__list {
    width: 600px;
    height: auto;
    align-content: center;
    justify-content: flex-end;
    padding: 0;
    border-top: 0;
  }
}

.main-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav__link {
  padding: 7px 15px;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease-out;
}

.main-nav__link:hover:not(.main-nav__link--active) {
  color: #d22856;
}

@media (min-width: 1200px) {
  .main-nav__link {
    padding: 7px 20px;
    text-transform: capitalize;
  }
}

.main-nav__link--active {
  color: #919397;
}

.nav-toggle {
  width: 50px;
  height: 40px;
  padding: 0;
  border: 0;
  margin-left: auto;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}

.nav-open .main-nav {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  position: relative;
  display: block;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 50px;
  height: 3px;
  background-color: #737373;
  border-radius: 1em;
  transition: background-color 0.15s ease-out;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  right: 0;
  left: 0;
  content: '';
}

.hamburger::before {
  top: 9px;
}

.hamburger::after {
  bottom: 9px;
}

.nav-open .hamburger {
  transform: rotate(0.625turn);
}

.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-9px);
}

.nav-open .hamburger::after {
  display: none;
}

.nav-open .hamburger,
.nav-open .hamburger::before,
.nav-open .hamburger::after {
  background-color: #fff;
}

.content-wrapper--hidden {
  display: none;
}

/* ==========================================================================
hero
========================================================================== */
.hero {
  background-color: #1d2631;
  background-image: url("../img/background-small.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 462px;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .hero {
    background-image: url("../img/background-small@2x.jpg");
  }
}

@media (min-width: 660px) {
  .hero {
    background-image: url("../img/background-medium.jpg");
    background-size: auto;
  }
}

@media (min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 660px) and (min-resolution: 144dpi), (min-width: 660px) and (min-resolution: 1.5dppx) {
  .hero {
    background-image: url("../img/background-medium@2x.jpg");
  }
}

@media (min-width: 1200px) {
  .hero {
    background-image: url("../img/background-big.jpg");
  }
}

@media (min-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1200px) and (min-resolution: 144dpi), (min-width: 1200px) and (min-resolution: 1.5dppx) {
  .hero {
    background-image: url("../img/background-big@2x.jpg");
  }
}

.hero__inner {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

@media (min-width: 660px) {
  .hero__inner {
    height: 730px;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .hero__inner {
    height: 850px;
  }
}

.hero__banner {
  position: absolute;
  z-index: 200;
  top: 132px;
  left: 50%;
  display: flex;
  width: 280px;
  height: 330px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(-50%);
}

@media (min-width: 660px) {
  .hero__banner {
    top: auto;
    bottom: 0;
    left: 55%;
    width: 477px;
    height: 545px;
    transform: translateX(-45%);
  }
}

@media (min-width: 1200px) {
  .hero__banner {
    left: 35%;
    width: 570px;
    height: 645px;
    transform: none;
  }
}

.hero__img {
  max-width: 280px;
  max-height: 330px;
}

@media (min-width: 660px) {
  .hero__img {
    max-width: 477px;
    max-height: 545px;
  }
}

@media (min-width: 1200px) {
  .hero__img {
    max-width: 570px;
    max-height: 645px;
  }
}

.hero__info {
  z-index: 300;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 462px;
}

@media (min-width: 660px) {
  .hero__info {
    width: 45%;
    padding-top: 50px;
  }
}

@media (min-width: 1200px) {
  .hero__info {
    width: 30%;
  }
}

.hero__title {
  display: none;
}

@media (min-width: 660px) {
  .hero__title {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0;
    margin-bottom: 40px;
    color: #fff;
    font-family: inherit;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    line-height: 1.15;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    margin-bottom: 50px;
    font-size: 50px;
    line-height: 1.12;
  }
}

.hero__title--rainbow {
  -webkit-animation: rainbow 10s linear infinite;
          animation: rainbow 10s linear infinite;
}

.hero__btn {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 660px) {
  .hero__btn {
    margin-top: 0;
    margin-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .hero__btn {
    margin-bottom: 45px;
  }
}

.hero__list {
  margin-bottom: 20px;
}

.hero__text {
  width: 240px;
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 1.71429;
}

@media (min-width: 660px) {
  .hero__text {
    width: 265px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.download {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  width: 205px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .download {
    margin-bottom: 40px;
  }
}

.icon--app {
  width: 46px;
  height: 57px;
}

.icon--goog {
  width: 42px;
  height: 47px;
}

.icon--mic {
  width: 44px;
  height: 42px;
}

@-webkit-keyframes rainbow {
  0% {
    color: #ea316d;
  }
  25% {
    color: #823bc5;
  }
  50% {
    color: #535efd;
  }
  75% {
    color: #ffce60;
  }
  100% {
    color: #ea316d;
  }
}

@keyframes rainbow {
  0% {
    color: #ea316d;
  }
  25% {
    color: #823bc5;
  }
  50% {
    color: #535efd;
  }
  75% {
    color: #ffce60;
  }
  100% {
    color: #ea316d;
  }
}

/* ==========================================================================
advantages
========================================================================== */
.advantages__inner {
  padding-top: 35px;
}

@media (min-width: 660px) {
  .advantages__inner {
    overflow: hidden;
    padding-top: 45px;
  }
}

@media (min-width: 1200px) {
  .advantages__inner {
    padding-top: 60px;
  }
}

.advantages__header {
  margin-bottom: 30px;
  background-color: #fff;
}

@media (min-width: 660px) {
  .advantages__header {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .advantages__header {
    margin-bottom: 70px;
  }
}

.advantages__header-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .advantages__header-inner {
    padding: 0 130px;
  }
}

.advantages__header-title {
  margin: 0;
  color: #283645;
  font-family: inherit;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 1.25;
}

.advantages__header-title--top {
  margin-bottom: 25px;
}

@media (min-width: 660px) {
  .advantages__header-title--top {
    margin-bottom: 0;
  }
}

@media (min-width: 660px) {
  .advantages__header-title {
    font-size: 40px;
    line-height: 1.25;
  }
}

@media (min-width: 1200px) {
  .advantages__header-title {
    font-size: 50px;
    line-height: 1.2;
  }
}

.advantages__main {
  background-color: #f2f2f2;
  background-image: url(../img/svg/background-triangle-white.svg);
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 100% 35px;
}

@media (min-width: 1200px) {
  .advantages__main {
    background-size: 100% 70px;
  }
}

.advantages__main-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px 40px;
  margin: 0 auto;
}

@media (min-width: 660px) {
  .advantages__main-wrapper {
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .advantages__main-wrapper {
    overflow: visible;
    max-width: 1200px;
    padding: 0 130px;
  }
}

.advantages__main-inner {
  width: 100%;
  margin-bottom: 35px;
}

@media (min-width: 1200px) {
  .advantages__main-inner {
    display: flex;
    width: 33.3333%;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0 30px 50px;
    margin: 0;
  }
}

.advantages__main-top {
  width: 100%;
}

@media (min-width: 660px) {
  .advantages__main-top {
    width: 50%;
    order: 2;
    margin-top: 55px;
    margin-left: 6%;
  }
}

@media (min-width: 1200px) {
  .advantages__main-top {
    position: relative;
    left: 0;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
  }
}

.advantages__main-img-wrapper {
  display: none;
}

@media (min-width: 1200px) {
  .advantages__main-img-wrapper {
    display: flex;
    width: 186px;
    height: 382px;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 45px;
  }
}

@media (min-width: 1200px) {
  .advantages__main-img {
    max-width: 186px;
    max-height: 382px;
  }
}

.advantages__main-title {
  margin: 0;
  margin-bottom: 15px;
  color: #000;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1.33333;
}

@media (min-width: 660px) {
  .advantages__main-title {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .advantages__main-title {
    max-width: 100%;
    margin-bottom: 25px;
    font-size: 30px;
    text-align: center;
    line-height: 1.16667;
  }
}

.advantages__main-text {
  margin: 0;
  color: #283645;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.71429;
}

@media (min-width: 660px) {
  .advantages__main-text {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .advantages__main-text {
    max-width: 100%;
    font-size: 18px;
    text-align: center;
    line-height: 1.77778;
  }
}

.advantages__main-bottom {
  max-width: 157px;
  max-height: 320px;
}

@media (min-width: 660px) {
  .advantages__main-bottom {
    max-width: 268px;
    max-height: 482px;
    order: 1;
  }
}

@media (min-width: 1200px) {
  .advantages__main-bottom {
    display: none;
  }
}

.advantages__main-bottom-img {
  max-width: 157px;
  max-height: 320px;
}

@media (min-width: 660px) {
  .advantages__main-bottom-img {
    max-width: 268px;
    max-height: 547px;
  }
}

.advantages__footer {
  display: none;
}

@media (min-width: 660px) {
  .advantages__footer {
    display: block;
    background-color: #fff;
  }
}

@media (min-width: 1200px) {
  .advantages__footer {
    background-color: #f2f2f2;
  }
}

@media (min-width: 660px) {
  .advantages__footer-inner {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .advantages__footer-inner {
    max-width: 1200px;
    justify-content: space-between;
    padding: 40px 130px 60px;
  }
}

@media (min-width: 660px) {
  .advantages__footer-img {
    display: flex;
    width: 268px;
    height: 276px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-image: url("../img/svg/timer.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 240px 276px;
  }
}

@media (min-width: 1200px) {
  .advantages__footer-img {
    width: 300px;
    height: 345px;
    background-size: contain;
  }
}

.advantages__footer-img-text {
  margin-top: 25px;
  color: #d22856;
  font-family: inherit;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

@media (min-width: 1200px) {
  .advantages__footer-img-text {
    margin-top: 43px;
    font-size: 120px;
  }
}

.advantages__footer-info {
  width: 50%;
  margin-left: 6%;
}

@media (min-width: 1200px) {
  .advantages__footer-info {
    width: 570px;
    margin-top: 35px;
  }
}

.advantages__footer-title {
  margin: 0;
  margin-bottom: 15px;
  color: #000;
  font-family: inherit;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .advantages__footer-title {
    margin-bottom: 25px;
  }
}

.advantages__footer-text {
  margin: 0;
  margin-bottom: 15px;
  color: #283645;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  line-height: 1.71429;
}

@media (min-width: 1200px) {
  .advantages__footer-text {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.77778;
  }
}

.advantages__footer-link {
  color: #d22856;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  transition: color 0.3s ease;
  line-height: 1.71429;
}

.advantages__footer-link:hover, .advantages__footer-link:focus {
  color: #283645;
  text-decoration: none;
}

.advantages__footer-link:active {
  opacity: 30%;
}

@media (min-width: 1200px) {
  .advantages__footer-link {
    font-size: 18px;
    line-height: 1.77778;
  }
}

/* ==========================================================================
reviews
========================================================================== */
.reviews {
  padding-bottom: 25px;
  background-color: #fff;
}

@media (min-width: 660px) {
  .reviews {
    padding-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .reviews {
    padding-bottom: 45px;
  }
}

.swiper-container {
  width: 100%;
  min-height: 250px;
  padding: 40px 0;
  background-image: url("../img/svg/quotes-background.svg");
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: 155px 130px;
}

@media (min-width: 660px) {
  .swiper-container {
    padding: 70px 0;
    background-size: 155px 130px;
  }
}

@media (min-width: 660px) {
  .swiper-slide {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .swiper-slide {
    padding: 0 120px;
  }
}

.swiper-slide__title {
  margin: 0;
  margin-bottom: 20px;
  color: #000;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1.66667;
}

@media (min-width: 660px) {
  .swiper-slide__title {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (min-width: 1200px) {
  .swiper-slide__title {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 1.5;
  }
}

.swiper-slide__text {
  color: #283645;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 2.14286;
}

@media (min-width: 660px) {
  .swiper-slide__text {
    font-size: 18px;
    line-height: 1.94444;
  }
}

@media (min-width: 1200px) {
  .swiper-slide__text {
    line-height: 2.22222;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

@media (min-width: 1200px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: flex !important;
    color: #bec2c7 !important;
    transition: color 0.5s;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    color: #7e868f !important;
  }
}

/* ==========================================================================
plans
========================================================================== */
.plans {
  padding: 80px 0 40px;
  background-color: #f2f2f2;
  background-image: url("../img/svg/background-triangle-white.svg");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 100% 35px;
}

@media (min-width: 660px) {
  .plans {
    padding: 100px 0 50px;
  }
}

@media (min-width: 1200px) {
  .plans {
    padding: 140px 0 70px;
    background-size: 100% 70px;
  }
}

.plans__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.plans__list {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 660px) {
  .plans__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.plans__label {
  position: absolute;
  z-index: 5;
  top: 5px;
  left: -24px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0;
  background-color: #d22856;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.14286;
  transform: rotate(-0.12turn);
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 2.14286;
}

.plans__item {
  width: 100%;
  border: 1px solid #e1e1e1;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-align: left;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.plans__item:hover {
  border-color: #818181;
}

.plans__item:hover .plans__label {
  background-color: #f73568;
}

@media (min-width: 660px) {
  .plans__item {
    width: 33.333%;
    max-width: 350px;
  }
}

.plans__item-header {
  position: relative;
  overflow: hidden;
  padding: 15px;
  background-color: #283645;
  border-radius: 5px 5px 0 0;
  text-align: center;
}

.plans__title {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.875;
}

.plans__cost {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66667;
}

.plans__currency {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66667;
}

.plans__label--hidden {
  display: none;
}

.plans__text {
  position: relative;
  padding: 15px;
  padding-right: 60px;
  border-bottom: 1px solid #e1e1e1;
  margin: 0;
  color: #283645;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.64286;
}

.plans__text:last-child {
  border-bottom: 0;
}

@media (min-width: 660px) {
  .plans__text {
    text-transform: none;
  }
}

@media (min-width: 1200px) {
  .plans__text {
    font-size: 18px;
    line-height: 1.66667;
  }
}

.plans__img {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(-50%, -50%);
}

.plans__img--hidden {
  display: none;
}

.plans__img--yes {
  width: 31px;
  height: 21px;
}

.plans__img--no {
  width: 32px;
  height: 26px;
}

/* ==========================================================================
contacts
========================================================================== */
.contacts {
  padding: 40px 0 20px;
  background-color: #fff;
}

@media (min-width: 660px) {
  .contacts {
    padding-top: 55px;
  }
}

@media (min-width: 1200px) {
  .contacts {
    padding-top: 65px;
  }
}

.contacts__title {
  margin: 0;
  margin-bottom: 30px;
  color: #283645;
  font-family: inherit;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 1.25;
}

@media (min-width: 660px) {
  .contacts__title {
    margin-bottom: 55px;
    font-size: 40px;
    line-height: 1.25;
  }
}

@media (min-width: 1200px) {
  .contacts__title {
    font-size: 50px;
    line-height: 1.2;
  }
}

.contacts__main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 660px) {
  .contacts__main {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .contacts__main {
    justify-content: space-around;
  }
}

.contacts__wrapper {
  margin-bottom: 20px;
}

@media (min-width: 660px) {
  .contacts__wrapper {
    width: 255px;
    flex-shrink: 0;
    margin-bottom: 45px;
  }
}

@media (min-width: 1200px) {
  .contacts__wrapper {
    width: 30%;
    margin-bottom: 55px;
  }
}

@media (min-width: 1200px) {
  .contacts__wrapper--3 {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .contacts__wrapper--2 {
    order: 3;
  }
}

.contacts__text {
  margin: 0;
  margin-bottom: 5px;
  color: #283645;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.33333;
}

@media (min-width: 1200px) {
  .contacts__text {
    margin-bottom: 20px;
  }
}

.contacts__text2 {
  margin: 0;
  color: #d22856;
  font-family: inherit;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.16667;
}

.contacts__link {
  margin: 0;
  color: #d22856;
  font-family: inherit;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.25;
}

.contacts__link:focus, .contacts__link:hover {
  color: #283645;
  text-decoration: underline;
}

.contacts__link:active {
  color: #283645;
  opacity: 30%;
}

/* ==========================================================================
map
========================================================================== */
.map {
  width: 100%;
  background-color: #fff;
}

.map__iframe {
  width: 100%;
  height: 200px;
}

@media (min-width: 660px) {
  .map__iframe {
    height: 380px;
  }
}

@media (min-width: 1200px) {
  .map__iframe {
    height: 500px;
  }
}

/* ==========================================================================
page-footer
========================================================================== */
.page-footer {
  display: none;
}

@media (min-width: 660px) {
  .page-footer {
    display: block;
    background-color: #fff;
  }
}

@media (min-width: 660px) {
  .page-footer__inner {
    display: flex;
    height: 125px;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 660px) {
  .page-footer__inner {
    height: 195px;
  }
}

.page-footer__wrapper {
  margin: 15px 0;
}

.logo2 {
  margin-bottom: 13px;
  transition: opacity 0.2s ease-in-out;
}

.logo2:focus, .logo2:hover {
  opacity: 0.5;
}

.logo2:active {
  opacity: 0.2;
}

.logo2__image {
  width: 147px;
  height: 40px;
}

.socials {
  font-size: 0;
}

.socials__link {
  display: inline-block;
  padding: 13px;
  margin-right: 12px;
  background-color: #f2f2f2;
  border-radius: 10px;
  color: #000;
  font-size: 18px;
  line-height: 0;
  transition: all 0.2s ease-in-out;
}

.socials__link:last-child {
  margin-right: 0;
}

.socials__link:hover, .socials__link:focus {
  opacity: 0.5;
}

.socials__link:active {
  opacity: 0.2;
}

.socials__link--twitter {
  background-color: #21d4ff;
}

.socials__link--facebook {
  background-color: #6179bb;
}

.socials__link--youtube {
  background-color: #f54141;
}

.socials__icon {
  width: 1em;
  height: 1em;
}

.author__text {
  margin: 0;
  margin-right: 5px;
  color: #283645;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66667;
}

.author__icon {
  width: 3em;
  height: 3em;
  transition: opacity 0.2s ease-in-out;
  vertical-align: middle;
}

.author__link {
  text-decoration: none;
}

.author__link:focus .author__icon,
.author__link:hover .author__icon {
  opacity: 0.5;
}

.author__link:active .author__icon {
  opacity: 0.2;
}

/* ==========================================================================
gdpr-cookie-panel
========================================================================== */
.gdpr-panel {
  position: fixed;
  z-index: 2000;
  bottom: -1px;
  left: 0;
  display: flex;
  width: 100%;
  max-width: 700px;
  height: 45px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 12px;
  background: #000;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (min-width: 660px) {
  .gdpr-panel {
    left: 50%;
    height: 46px;
    padding: 0 18px 1px 15px;
    transform: translateX(-50%);
  }
}

.gdpr-panel__text {
  max-width: 196px;
  padding-bottom: 1px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

@media (min-width: 660px) {
  .gdpr-panel__text {
    max-width: none;
    padding-top: 2px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 16px;
  }
}

.gdpr-panel__link {
  box-shadow: inset 0 -1px #b88b58;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.gdpr-panel__link:hover {
  border-color: transparent;
  color: #b88b58;
}

.gdpr-panel__dismiss-btn {
  padding: 0;
  border: 0;
  margin: 0 11px 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 660px) {
  .gdpr-panel__dismiss-btn {
    margin-right: 0;
  }
}

.gdpr-panel__img {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
about-gdpr
========================================================================== */
.about-gdpr {
  padding: 40px 0;
  background-color: #fff;
  color: #000;
}

.about-gdpr__title {
  margin: 0;
  margin-bottom: 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media (min-width: 660px) {
  .about-gdpr__title {
    margin-bottom: 50px;
  }
}

.about-gdpr__subtitle {
  margin: 0;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media (min-width: 660px) {
  .about-gdpr__subtitle {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 34px;
  }
}

.about-gdpr__text {
  margin: 0;
  margin-bottom: 30px;
  /* stylelint-disable */
  font-family: 'Iowan Old Style', 'Apple Garamond', Baskerville, 'Times New Roman', 'Droid Serif', Times, 'Source Serif Pro', serif;
  /* stylelint-enable */
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 660px) {
  .about-gdpr__text {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 28px;
  }
}

.about-gdpr__cite {
  text-align: center;
}
