/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Reboot from Bootstrap 4.5.3
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */

/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */

@-ms-viewport {
  width: device-width;
}

/**
 * general reset
 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
 * inherit box model for all elements
 */

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */

html {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */

body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * on elements that programmatically receive focus but wouldn't normally show a visible
 * focus outline. In general, this would mean that the outline is only applied if the
 * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * wants focus outlines to always be presented.
 *
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 */

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

/**
 * Lists
 */

ol,
ul {
  list-style: none;
}

/**
 * Quotes
 */

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
 * Tables
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 * 2. Fix alignment for Safari
 */

th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */

pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */

abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Prevent `em` being affected from global reset
 */

em {
  font-style: italic;
}

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */

svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */

button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */

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

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */

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

/**
 * 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,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */

textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */

button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */

button,
select {
  text-transform: none;
}

/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */

[role=button] {
  cursor: pointer;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */

select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */

input[type=radio],
input[type=checkbox] {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */

[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */

fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */

legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */

textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * 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] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * 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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */

output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * Needed for proper display in IE 10-.
 */

[hidden] {
  display: none;
}

/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */

[role=button],
input[type=button],
input[type=reset],
input[type=submit],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[role=button]:not(:disabled),
input[type=button]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[role=button]:-moz-focusring,
input[type=button]:-moz-focusring,
input[type=reset]:-moz-focusring,
input[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: none;
}

[role=button]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */

a {
  color: inherit;
  text-decoration: none;
}

a:-moz-focusring {
  outline: none;
}

a:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */

a {
    color: #EA2590;
  /*color: inherit;*/
  text-decoration: none;
}

a:-moz-focusring {
  outline: none;
}

a:focus {
  outline: none;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Regular.woff2") format("woff2"), url("./fonts/NunitoSans-Regular.ttf") format("ttf"), url("./fonts/NunitoSans-Regular.woff") format("woff"), url("./fonts/NunitoSans-Regular.opt") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Bold.woff2") format("woff2"), url("./fonts/NunitoSans-Bold.ttf") format("ttf"), url("./fonts/NunitoSans-Bold.woff") format("woff"), url("./fonts/NunitoSans-Bold.opt") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Semibold.woff2") format("woff2"), url("./fonts/NunitoSans-Semibold.ttf") format("ttf"), url("./fonts/NunitoSans-Semibold.woff") format("woff"), url("./fonts/NunitoSans-Semibold.opt") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Medium.woff2") format("woff2"), url("./fonts/NunitoSans-Medium.ttf") format("ttf"), url("./fonts/NunitoSans-Medium.woff") format("woff"), url("./fonts/NunitoSans-Medium.opt") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Black.woff2") format("woff2"), url("./fonts/NunitoSans-Black.ttf") format("ttf"), url("./fonts/NunitoSans-Black.woff") format("woff"), url("./fonts/NunitoSans-Black.opt") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-Light.woff2") format("woff2"), url("./fonts/NunitoSans-Light.ttf") format("ttf"), url("./fonts/NunitoSans-Light.woff") format("woff"), url("./fonts/NunitoSans-Light.opt") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-ExtraLight.woff2") format("woff2"), url("./fonts/NunitoSans-ExtraLight.ttf") format("ttf"), url("./fonts/NunitoSans-ExtraLight.woff") format("woff"), url("./fonts/NunitoSans-ExtraLight.opt") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "NunitoSans";
  src: url("./fonts/NunitoSans-ExtraBold.woff2") format("woff2"), url("./fonts/NunitoSans-ExtraBold.ttf") format("ttf"), url("./fonts/NunitoSans-ExtraBold.woff") format("woff"), url("./fonts/NunitoSans-ExtraBold.opt") format("opentype");
  font-weight: 800;
  font-style: normal;
}

.mixins {
  display: none;
}

.styled-text {
  font-size: 17px;
  color: #303030;
}

.styled-text ul {
  margin: 10px 0;
}

.styled-text ul li {
  position: relative;
  margin-bottom: 10px;
  display: block;
  padding-left: 26px;
}

.styled-text ul li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  position: absolute;
  content: "";
  background: #303030;
  top: 11px;
  left: 10px;
}

.styled-text h2 {
  margin-bottom: 18px;
}

.styled-text h1 {
  margin-bottom: 20px;
}

.styled-text p {
  margin-bottom: 15px;
}

.styled-text em {
  color: #EA2590;
  font-style: normal;
}

.styled-text strong {
  font-weight: 900;
}

.styled-text--flex .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.styled-text--column {
  width: 100%;
  margin-bottom: 45px;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --ebony-clay: #273245;
  --mainFont: NunitoSans, sans-serif, Open Sans, system-ui, -apple-system, Segoe UI, roboto, Helvetica Neue, arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --mainFontSize: 16px;
  --mainLineHeight: 1.5;
  --mainFontColor: #1F1F1F;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::after,
*::before {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 360px;
  max-width: 5920px;
  margin: 0 auto;
  color: #1F1F1F;
  font-size: 16px;
  font-family: "NunitoSans", "sans-serif", "Open Sans", system-ui, -apple-system, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.svg-sprite {
  display: none;
}

.page {
  position: relative;
}

.icon-svg {
  width: inherit;
  height: inherit;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

.container {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.title--h1,
h1 {
  font-weight: 900;
  color: #1F1F1F;
  font-size: 38px;
  line-height: 130%;
}

.title--h2,
h2 {
  font-weight: 900;
  color: #1F1F1F;
  font-size: 22px;
  letter-spacing: -1.575px;
  line-height: 130%;
}

.title--h3,
h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: -0.75px;
  color: #1F1F1F;
}

.bg--smoke {
  background: #EDF3FE;
}

.btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  padding: 8px 75px 9px 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid transparent;
  border-radius: 15px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 260px;
}

.btn span {
  display: block;
  margin-left: 15px;
}

.main__btns{
    display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.btn--pink {
  background: #EA2590;
  color: #ffffff;
}
.main .btn--pink{
  width:247px;
  padding: 8px 35px 9px 52px;
}

.btn--pink:hover {
  border-color: #EA2590;
  color: #EA2590;
  background: #ffffff;
}
.main .btn--violet{
    background: #5A63DD;
    color: #ffffff;
    width:247px;
    margin-left:20px;
    padding: 8px 35px 9px 35px;
}
.btn--violet:hover {
  border-color: #5A63DD;
  color: #5A63DD;
  background: #ffffff;
}

.btn img {
  width: 21px;
  height: 21px;
  display: block;
  margin-left: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn.btn--violet img{
    width: 30px;
    height: 17px;
    margin-top: 5px;
}
.slider--looped .swiper-button {
  display: block;
}

.swiper-button {
  position: absolute;
  width: 14px;
  z-index: 5;
  height: 24px;
}

.swiper-button::before,
.swiper-button::after {
  display: none;
}

.swiper-button svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-button svg path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-button:hover svg path {
  fill: #EA2590;
}

.header {
  padding: 24px 0 18px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  box-shadow:none;
}

.header__logo {
  width: 185px;
  height: 60px;
  display: block;
  position: relative;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.main {
  padding-top: 110px;
  padding-bottom: 56px;
  position: relative;
  width: 100%;
  display: block;
  min-height: 787px;
  margin-bottom: 45px;
}

.main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main * {
  position: relative;
  z-index: 2;
}

.main > img {
  z-index: 1 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.main__text,
.main__desc {
  max-width: 480px;
}

.main__desc {
  margin-top: 145px;
}

.main__btn {
  margin-top: 21px;
}

.main__text h2 {
  color: #696969;
  margin-bottom: 10px;
}

.main__text h1 {
  margin-bottom: 15px;
}

.main__text p {
  max-width: 190px;
}

.white-text {
  margin-bottom: 40px;
}

.smoke-text {
  padding: 45px 0;
  margin-bottom: 45px;
}
#seminar_suit.smoke-text{margin-bottom:0;padding-bottom:0;}
#seminar_suit .styled-text--column {margin-bottom: 0;}
#video_suit.smoke-text{padding-top:0;padding-bottom:0;margin-bottom:0;}
.leader {
    padding-top:65px;
    margin-bottom: 65px;
}

.leader .container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.leader__image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.leader__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.leader__text h2 {
  line-height: 140%;
  text-align: center;
}

.leader__text strong {
  font-weight: 400;
  display: block;
}

.info {
  padding: 35px 0 40px;
}

.info__text {
  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;
}

.info__text p {
  margin-bottom: 25px;
}

.info__btn {
  margin: 30px auto 0;
}

.about {
  position: relative;
  margin: 35px 0;
}

.about__image {
  width: 100%;
  height: 512px;
  position: relative;
}

.about__image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about__text {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about__text h2 {
  margin-bottom: 25px;
  width: 100%;
}

.about__text a {
  color: #EA2590;
}

.about__text p:not(:last-of-type) {
  width: 100%;
}

.about__text p:last-of-type {
  margin-right: 35px;
}

.about__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__social--item {
  margin-right: 25px;
  width: 31px;
  height: 31px;
  display: block;
  position: relative;
}

.about__social--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.vizit {
  position: relative;
  padding: 105px 0 45px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: calc(50% - 60px);
  margin-bottom: 0;/*40px;*/
}

.vizit__text {
  font-weight: 900;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.vizit__text .styled-text {
  color: #696969;
  font-size: 20px;
  line-height: 160%;
}

.vizit__btn {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.review {
  margin-bottom: 45px;
  position: relative;
}

.review-tile {
  border-radius: 20px;
  border: 0.5px solid #e6e6e6;
  padding: 38px 49px 31px;
}

.review-tile__author {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  margin-bottom: 15px;
}

.review-tile__text {
  text-align: center;
  font-size: 16px;
  color: #696969;
}

.review .reviews-slider h2 {
  font-weight: 400;
  margin-bottom: 35px;
  padding: 0 80px;
  padding-left: 0;
}

.review .reviews-slider h2 strong {
  font-weight: 900;
  display: block;
}

.balloon-content {
  background: #ffffff;
  padding: 28px 25px 26px 35px;
}

.balloon__logo {
  width: 176px;
  height: 53px;
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.balloon__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.balloon__phone {
  color: #1F1F1F;
  font-size: 17px;
  font-weight: 900;
  line-height: 160%;
}

.balloon__address {
  margin: 3px 0 5px;
  color: #303030;
  font-size: 14px;
  line-height: 160%;
}

.balloon__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.balloon__social-item {
  width: 24px;
  height: 24px;
  margin-right: 13px;
  position: relative;
  display: block;
}

.balloon__social-item:not(:last-of-type) {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.balloon__social-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#map {
  height: 440px;
  width: 100%;
}

@media (min-width: 620px) {
  .main__text p {
    max-width: 390px;
  }

  .vizit {
    background-position: center center;
  }

  .vizit__text {
    max-width: 350px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 718px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .swiper-button {
    top: 60%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 27px;
  }

  .swiper-button--prev {
    left: -10px;
  }

  .swiper-button--next {
    right: -10px;
  }

  .header {
    padding: 40px 0;
  }

  .header__logo {
    width: 263px;
    height: 80px;
  }

  .main {
    padding-top: 175px;
    padding-bottom: 75px;
    margin-bottom: 65px;
  }

  .main__desc {
    margin-top: 60px;
  }

  .main__btn {
    margin-top: 52px;
  }

  .smoke-text {
    margin-bottom: 70px;
  }

  .info {
    padding: 50px 0 70px;
  }

  .info__btn {
    margin: 50px auto 0;
  }

  .about {
    margin: 45px 0;
  }

  .vizit {
    margin-bottom: 0;/*65px;*/
  }

  .vizit__text {
    font-weight: 400;
    max-width: 590px;
  }

  .vizit__text .styled-text {
    color: #303030;
    font-size: 35px;
    line-height: 160%;
  }

  .vizit__btn {
    margin-top: 45px;
  }

  .review {
    margin-bottom: 80px;
  }

  .review .reviews-slider__inner {
    padding: 0 45px;
  }

  .review .reviews-slider h2 {
    margin-bottom: 50px;
    text-align: center;
  }

  .review .reviews-slider h2 strong {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .styled-text {
    font-size: 18px;
  }

  .styled-text--flex .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .styled-text--column {
    width: calc(50% - 40px);
  }

  body {
    font-size: 18px;
  }

  .container {
    max-width: 970px;
  }

  .title--h1,
  h1 {
    font-size: 60px;
    letter-spacing: -2.7px;
  }

  .title--h2,
  h2 {
    font-size: 35px;
  }

  .title--h3,
  h3 {
    font-size: 30px;
  }

  .header {
    padding: 60px 0;
  }

  .main {
    padding-top: 235px;
    padding-bottom: 112px;
  }

  .main__text h2 {
    max-width: 320px;
  }

  .smoke-text {
    padding: 90px 0;
    margin-bottom: 90px;
  }

  .leader .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .leader__image {
    width: 440px;
    height: 440px;
  }

  .leader__text {
    max-width: 440px;
    margin-left: 60px;
  }

  .leader__text h2 {
    text-align: left;
  }

  .info {
    padding: 70px 0 115px;
  }

  .about {
    overflow: hidden;
    margin: 0;
  }

  .about__text {
    width: 450px;
    margin-left: auto;
    padding: 40px 0;
    margin-top: 0;
  }

  .about__image {
    width: 50vw;
    position: absolute;
    height: auto;
    display: block;
    right: 50%;
    top: 0;
    bottom: 0;
  }

  .vizit {
    padding: 220px 0 200px;
  }

  .review .reviews-slider__inner {
    padding: 0 75px;
  }
}

@media only screen and (min-width: 1440px) {
  .styled-text--column {
    width: calc(50% - 68px);
  }

  .container {
    max-width: 1390px;
  }

  .leader__text {
    margin-left: 160px;
  }

  .about__text {
    width: 550px;
    padding: 80px 0;
    margin-left: calc(50% + 60px);
  }

  .review .reviews-slider__inner {
    padding: 0 120px;
  }
}

@media (max-width: 767px) {
    .review .swiper-button {
        top: 5px;
    }
    .review .swiper-button--prev {  
        left: calc(100% - 70px);
    }
    .review .swiper-button--next {
        right: 10px;
    }
}
@media (max-width:546px) {
    .main {
        height:100dvh;
        min-height: 100dvh;
    }
    .main > img {
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        max-height:100dvh;
    }
    .main__text, .main__desc {
        max-width: 100%;
    }
    .main__desc {
        margin-top: 20px;
    }
    .main__btn {
        margin-top: 20px;
    }
    .main .container {
        height:100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    /*.main__text h1 {
        font-size: 35px;
        line-height: 110%;
    }
    .main__text p {
        max-width: 100%;
    }*/
}
.section {
  margin: 100px 0;
}
.video-wrap .container {
  position: relative;
  display: block;
}
.courses-slider .slider-arrow--prev, .reviews-slider .slider-arrow--prev, .slider-arrow--prev, .other-news .slider-arrow--prev {
  left: -6vw;
}
.video-wrap .slider-arrow {
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 14px;
height: 24px;
}
.video-wrap.slider--looped .slider-arrow {
  display: block;
}
.video-wrap .swiper-slide {
  display: flex;
  align-items: center;
}
.video-wrap .left {
  width: 360px;
  height: 640px;  
  /*width: 367px;
  height: 484px;*/
  border-radius: 20px;
  display: block;
  overflow: hidden;
}
.video-block {
  width: 100%;
}
.video-block-vk {
  height: 100%;
}
.video-wrap .right {
  margin-left: 12%;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.video-wrap .right .typography {
  width: 100%;
}
.btn.btn--vk, .btn.btn--vk::before {
  background: #ADC6F8;
  background: -moz-linear-gradient(45deg,#ADC6F8 0,#FFDAF3 100%);
  background: -webkit-gradient(left bottom,right top,color-stop(0,#ADC6F8),color-stop(100%,#FFDAF3));
  background: -webkit-linear-gradient(45deg,#ADC6F8 0,#FFDAF3 100%);
  background: -o-linear-gradient(45deg,#ADC6F8 0,#FFDAF3 100%);
  background: -ms-linear-gradient(45deg,#ADC6F8 0,#FFDAF3 100%);
  background: linear-gradient(264.54deg, #ADC6F8 0%, #FFDAF3 100%);
  display: block;
  border-radius: 15px;
  margin-top: 15px;
  transition: all .5s;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ADC6F8',endColorstr='#FFDAF3',GradientType=1);
  max-width:unset;padding: 0;
}
.button {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  border-radius: 14px;
  padding: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn--vk .button {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  display: block;
  padding: 12px 50px 12px 22px;
  filter: hue-rotate(0);
  color: #1F1F1F;
  text-decoration: none;
  background-image: url('img/vk.svg');
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 95%;
}
@media (max-width: 991px) {
  .video-wrap .left {
    width: 320px;
    height: 569px;
  }
  .video-wrap .right {
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .video-wrap .swiper-slide {
    flex-direction: column;
  }
.video-wrap .right {
    margin-left: 0;
    margin-top: 25px;
    max-width: 100%;
  }
}
.slider-arrow--next{
  right: -3vw;
}
.slider-arrow--prev{
  left: -3vw;
}

@media (max-width: 1199.99px) {
  .slider-arrow--next, .video-wrap .slider-arrow--next {
    right: -3.5vw;
  }
 .slider-arrow--prev, .video-wrap .slider-arrow--prev {
    left: -3.5vw;
  }
}
@media (max-width: 991px) {
   .slider-arrow--next, .video-wrap .slider-arrow--next {
    right: -2vw;
  }
 .slider-arrow--prev, .video-wrap .slider-arrow--prev {
    left: -2vw;
  } 
}
@media (max-width: 767px) {
    .slider-arrow--prev, .video-wrap .slider-arrow--prev {
        left: 2vw;
    }
   .slider-arrow--next, .video-wrap .slider-arrow--next {
        right: 2vw;
  } 
  .video-wrap .slider-arrow {
    top: 200px;
    transform: translateY(0);
  }
  .leader__text{margin-top:35px;}
}
@media (max-width: 576px) {
  .video-wrap .slider-arrow {
    top: 680px;
    top: calc(100% + 10px);
  }
  .video-wrap .slider-arrow--prev {
    left: 42% !important;
    transform: translateX(-50%);
  }
 .video-wrap .slider-arrow--next {
    right: 42% !important;
    transform: translateX(-50%);
  }
  .popover{
        position: absolute;
        top: -88px;
  }
  .popover ymaps{
    height:334px;  
  }
  .balloon__logo {
    width: 100%;
  }
  .main .btn--pink{
    width:174px;
    padding:8px 15px;
    font-size: 14px;
  }
  .main .btn--violet {
    width:174px;
    padding:8px 0;
    font-size: 14px;
  }
  .btn.btn--violet img {
    margin-top: 2px;
    margin-left: 5px;
    }
}
@media (max-width:546px) {
   .main__btns{
      flex-direction:column;
      position: absolute;
      bottom: 88px;
      left: 15px;
  }
  .main .btn--violet {
    margin-left: 0;
  }
}
@media (max-width:443px) {
    /*.main__btns{
        bottom:94px;
    }*/
}
@media (max-width: 319.99px) {
  .video-wrap .left {
    width: 300px;
    height: 533px;
  }
}
.footer{padding:0}
/*# sourceMappingURL=sourcemaps/style.css.map */
