.jssocials-shares {
  margin: 0.2em 0; }

.jssocials-shares * {
  box-sizing: border-box; }

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em 0.6em 0.3em 0; }

.jssocials-share:last-child {
  margin-right: 0; }

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em; }

img.jssocials-share-logo {
  width: auto;
  height: 1em; }

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1; }
  .jssocials-share-link.jssocials-share-link-count {
    padding-top: .2em; }
    .jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
      display: block;
      font-size: .6em;
      margin: 0 -.5em -.8em -.5em; }
  .jssocials-share-link.jssocials-share-no-count {
    padding-top: .5em; }
    .jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
      height: 1em; }

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle; }

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default; }
  .jssocials-share-count-box.jssocials-share-no-count {
    display: none; }

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle; }

.croppie-container {
    width: 100%;
    height: 100%;
}

.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.croppie-container .cr-viewport {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
}

.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 15px auto;
    text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/

.cr-slider {
    -webkit-appearance: none;
/*removes default webkit styles*/
	/*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;
/*required for proper track sizing in FF*/
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
	border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
	border-width: 6px 0;
	color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ddd;
	margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
}
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}
.cr-rotate-controls button {
	border: 0;
	background: none;
}
.cr-rotate-controls i:before {
	display: inline-block;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
}
.cr-rotate-l i:before {
	content: '↺';
}
.cr-rotate-r i:before {
	content: '↻';
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

h1, h2, h3, h4, h5, h6, p, b, strong, i, a, span {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

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

* {
  box-sizing: border-box !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

a[href^=tel] {
  color: #000;
}

.clearfix::after {
  content: " ";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

*::-webkit-input-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

*:-moz-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

*::-moz-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb);
  src: local("GothamPro-Italic"), url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb) format("embedded-opentype"), url(/fonts/GothamPro-Italic.woff2?2d5a90076cfd78efd11b1ee6431630fa) format("woff2"), url(/fonts/GothamPro-Italic.woff?6fed945fec27d86b7891f927c2bc9896) format("woff"), url(/fonts/GothamPro-Italic.ttf?dd30bd2e48bdde3790f621630a125a9e) format("truetype"), url(/fonts/GothamPro-Italic.svg?f2c1342c7b08dbdb2166f4e6eb6f04fd) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b);
  src: local("GothamProNarrow-Bold"), url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b) format("embedded-opentype"), url(/fonts/GothamProNarrow-Bold.woff2?73d9a4457a889d501ffea4292d6147fd) format("woff2"), url(/fonts/GothamProNarrow-Bold.woff?c6d108c50b384cea4e7996b286cc60a0) format("woff"), url(/fonts/GothamProNarrow-Bold.ttf?86ff4a97495cc1f1db390cc6d2711955) format("truetype"), url(/fonts/GothamProNarrow-Bold.svg?714db2a63cee7c6ab4b2e61175fac451) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193);
  src: local("GothamPro-LightItalic"), url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193) format("embedded-opentype"), url(/fonts/GothamPro-LightItalic.woff2?0521c57e8ce2eecaf0fe2d30eb31002f) format("woff2"), url(/fonts/GothamPro-LightItalic.woff?342e81b5125a2823c011d179851cfc7d) format("woff"), url(/fonts/GothamPro-LightItalic.ttf?7cc43ffb4f5f5784a81ee1586886dc97) format("truetype"), url(/fonts/GothamPro-LightItalic.svg?c3044ab474b0dff423b6f9e0c8e44e6c) format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6);
  src: local("GothamPro"), url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6) format("embedded-opentype"), url(/fonts/GothamPro.woff2?9e372be6b3d1ea9d9261174c9eb1c7ca) format("woff2"), url(/fonts/GothamPro.woff?d3ff50418170cc6527a1aee4a17fb080) format("woff"), url(/fonts/GothamPro.ttf?1b8890c884ddc6829fbddd8cd5af03ca) format("truetype"), url(/fonts/GothamPro.svg?5a7f3ec06b482611bad2c8922b7cbbb5) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d);
  src: local("GothamPro-Light"), url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d) format("embedded-opentype"), url(/fonts/GothamPro-Light.woff2?fc9b1ed6db8a18f8011feb522eff571e) format("woff2"), url(/fonts/GothamPro-Light.woff?cc5a7dd6ab6767fbb7877fced8c029eb) format("woff"), url(/fonts/GothamPro-Light.ttf?ffeb040dbdd24a44441e390c2994ce91) format("truetype"), url(/fonts/GothamPro-Light.svg?43446567e834551aeb416c435c49ec2c) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf);
  src: local("GothamPro-Medium"), url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf) format("embedded-opentype"), url(/fonts/GothamPro-Medium.woff2?7428afd3651a4a030e1545299f960bf9) format("woff2"), url(/fonts/GothamPro-Medium.woff?4ff6631fd48394207fa967166d425145) format("woff"), url(/fonts/GothamPro-Medium.ttf?e05059e72aca2fc5dfda2dbbc48599ef) format("truetype"), url(/fonts/GothamPro-Medium.svg?fa30e6decb0a70649f1a7395d397092c) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991);
  src: local("GothamPro-Bold"), url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991) format("embedded-opentype"), url(/fonts/GothamPro-Bold.woff2?9008ecdbfb25217f67c833ab53428abc) format("woff2"), url(/fonts/GothamPro-Bold.woff?a3c48a0e80fd1c925573ecbfa4057476) format("woff"), url(/fonts/GothamPro-Bold.ttf?3d1226f6319dccbdde2450c17b6566ea) format("truetype"), url(/fonts/GothamPro-Bold.svg?613e975c339d69fbe7533a9da052069f) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a);
  src: local("GothamPro-BlackItalic"), url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a) format("embedded-opentype"), url(/fonts/GothamPro-BlackItalic.woff2?10e760a2d487d3865552433672b7de73) format("woff2"), url(/fonts/GothamPro-BlackItalic.woff?6c59defb47302c991f3d27107297633b) format("woff"), url(/fonts/GothamPro-BlackItalic.ttf?eb20a059a260ad9071a96bde0d34f21d) format("truetype"), url(/fonts/GothamPro-BlackItalic.svg?0865cdd97d59d6a93599d6c1c0ea9e86) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e);
  src: local("GothamPro-MediumItalic"), url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e) format("embedded-opentype"), url(/fonts/GothamPro-MediumItalic.woff2?6d1bb70aadd1777ba6f6ce1d7f5856eb) format("woff2"), url(/fonts/GothamPro-MediumItalic.woff?0dbb6514888acbf63639a06240ff603e) format("woff"), url(/fonts/GothamPro-MediumItalic.ttf?4c380734b04aaa838c4866838f42e8c9) format("truetype"), url(/fonts/GothamPro-MediumItalic.svg?c35b2484e12baf32bb4f5d04f1f325f9) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059);
  src: local("GothamPro-Black"), url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059) format("embedded-opentype"), url(/fonts/GothamPro-Black.woff2?c8243d3d3b3527c810a97db3a652cd1f) format("woff2"), url(/fonts/GothamPro-Black.woff?9819b889d4f331163aba38802a5cbac5) format("woff"), url(/fonts/GothamPro-Black.ttf?aaeeb5239f41fb5fd40c7a7ecd85c347) format("truetype"), url(/fonts/GothamPro-Black.svg?012c00de8c896b193a009e7ddc1a1fd7) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c);
  src: local("GothamProNarrow-Medium"), url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c) format("embedded-opentype"), url(/fonts/GothamProNarrow-Medium.woff2?374be5068819aff3cb1b23b5b1195d65) format("woff2"), url(/fonts/GothamProNarrow-Medium.woff?6efe0896daac5577e736015451bba1bd) format("woff"), url(/fonts/GothamProNarrow-Medium.ttf?6480dab1d9fb04d3d010b01543215497) format("truetype"), url(/fonts/GothamProNarrow-Medium.svg?099a354a7a81c2af8443f11af5191ef4) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2);
  src: local("GothamPro-BoldItalic"), url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2) format("embedded-opentype"), url(/fonts/GothamPro-BoldItalic.woff2?f8e27202e9e90eba004d23844f156e4d) format("woff2"), url(/fonts/GothamPro-BoldItalic.woff?ed451721a4b4ec748c0c4ac5a5fb2211) format("woff"), url(/fonts/GothamPro-BoldItalic.ttf?63cf4261a56c36433d58dac5827d300d) format("truetype"), url(/fonts/GothamPro-BoldItalic.svg?932563c626054b34e1aef0b482fc8be3) format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb);
  src: local("GothamPro-Italic"), url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb) format("embedded-opentype"), url(/fonts/GothamPro-Italic.woff2?2d5a90076cfd78efd11b1ee6431630fa) format("woff2"), url(/fonts/GothamPro-Italic.woff?6fed945fec27d86b7891f927c2bc9896) format("woff"), url(/fonts/GothamPro-Italic.ttf?dd30bd2e48bdde3790f621630a125a9e) format("truetype"), url(/fonts/GothamPro-Italic.svg?f2c1342c7b08dbdb2166f4e6eb6f04fd) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b);
  src: local("GothamProNarrow-Bold"), url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b) format("embedded-opentype"), url(/fonts/GothamProNarrow-Bold.woff2?73d9a4457a889d501ffea4292d6147fd) format("woff2"), url(/fonts/GothamProNarrow-Bold.woff?c6d108c50b384cea4e7996b286cc60a0) format("woff"), url(/fonts/GothamProNarrow-Bold.ttf?86ff4a97495cc1f1db390cc6d2711955) format("truetype"), url(/fonts/GothamProNarrow-Bold.svg?714db2a63cee7c6ab4b2e61175fac451) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193);
  src: local("GothamPro-LightItalic"), url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193) format("embedded-opentype"), url(/fonts/GothamPro-LightItalic.woff2?0521c57e8ce2eecaf0fe2d30eb31002f) format("woff2"), url(/fonts/GothamPro-LightItalic.woff?342e81b5125a2823c011d179851cfc7d) format("woff"), url(/fonts/GothamPro-LightItalic.ttf?7cc43ffb4f5f5784a81ee1586886dc97) format("truetype"), url(/fonts/GothamPro-LightItalic.svg?c3044ab474b0dff423b6f9e0c8e44e6c) format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6);
  src: local("GothamPro"), url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6) format("embedded-opentype"), url(/fonts/GothamPro.woff2?9e372be6b3d1ea9d9261174c9eb1c7ca) format("woff2"), url(/fonts/GothamPro.woff?d3ff50418170cc6527a1aee4a17fb080) format("woff"), url(/fonts/GothamPro.ttf?1b8890c884ddc6829fbddd8cd5af03ca) format("truetype"), url(/fonts/GothamPro.svg?5a7f3ec06b482611bad2c8922b7cbbb5) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d);
  src: local("GothamPro-Light"), url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d) format("embedded-opentype"), url(/fonts/GothamPro-Light.woff2?fc9b1ed6db8a18f8011feb522eff571e) format("woff2"), url(/fonts/GothamPro-Light.woff?cc5a7dd6ab6767fbb7877fced8c029eb) format("woff"), url(/fonts/GothamPro-Light.ttf?ffeb040dbdd24a44441e390c2994ce91) format("truetype"), url(/fonts/GothamPro-Light.svg?43446567e834551aeb416c435c49ec2c) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf);
  src: local("GothamPro-Medium"), url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf) format("embedded-opentype"), url(/fonts/GothamPro-Medium.woff2?7428afd3651a4a030e1545299f960bf9) format("woff2"), url(/fonts/GothamPro-Medium.woff?4ff6631fd48394207fa967166d425145) format("woff"), url(/fonts/GothamPro-Medium.ttf?e05059e72aca2fc5dfda2dbbc48599ef) format("truetype"), url(/fonts/GothamPro-Medium.svg?fa30e6decb0a70649f1a7395d397092c) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991);
  src: local("GothamPro-Bold"), url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991) format("embedded-opentype"), url(/fonts/GothamPro-Bold.woff2?9008ecdbfb25217f67c833ab53428abc) format("woff2"), url(/fonts/GothamPro-Bold.woff?a3c48a0e80fd1c925573ecbfa4057476) format("woff"), url(/fonts/GothamPro-Bold.ttf?3d1226f6319dccbdde2450c17b6566ea) format("truetype"), url(/fonts/GothamPro-Bold.svg?613e975c339d69fbe7533a9da052069f) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a);
  src: local("GothamPro-BlackItalic"), url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a) format("embedded-opentype"), url(/fonts/GothamPro-BlackItalic.woff2?10e760a2d487d3865552433672b7de73) format("woff2"), url(/fonts/GothamPro-BlackItalic.woff?6c59defb47302c991f3d27107297633b) format("woff"), url(/fonts/GothamPro-BlackItalic.ttf?eb20a059a260ad9071a96bde0d34f21d) format("truetype"), url(/fonts/GothamPro-BlackItalic.svg?0865cdd97d59d6a93599d6c1c0ea9e86) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e);
  src: local("GothamPro-MediumItalic"), url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e) format("embedded-opentype"), url(/fonts/GothamPro-MediumItalic.woff2?6d1bb70aadd1777ba6f6ce1d7f5856eb) format("woff2"), url(/fonts/GothamPro-MediumItalic.woff?0dbb6514888acbf63639a06240ff603e) format("woff"), url(/fonts/GothamPro-MediumItalic.ttf?4c380734b04aaa838c4866838f42e8c9) format("truetype"), url(/fonts/GothamPro-MediumItalic.svg?c35b2484e12baf32bb4f5d04f1f325f9) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059);
  src: local("GothamPro-Black"), url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059) format("embedded-opentype"), url(/fonts/GothamPro-Black.woff2?c8243d3d3b3527c810a97db3a652cd1f) format("woff2"), url(/fonts/GothamPro-Black.woff?9819b889d4f331163aba38802a5cbac5) format("woff"), url(/fonts/GothamPro-Black.ttf?aaeeb5239f41fb5fd40c7a7ecd85c347) format("truetype"), url(/fonts/GothamPro-Black.svg?012c00de8c896b193a009e7ddc1a1fd7) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c);
  src: local("GothamProNarrow-Medium"), url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c) format("embedded-opentype"), url(/fonts/GothamProNarrow-Medium.woff2?374be5068819aff3cb1b23b5b1195d65) format("woff2"), url(/fonts/GothamProNarrow-Medium.woff?6efe0896daac5577e736015451bba1bd) format("woff"), url(/fonts/GothamProNarrow-Medium.ttf?6480dab1d9fb04d3d010b01543215497) format("truetype"), url(/fonts/GothamProNarrow-Medium.svg?099a354a7a81c2af8443f11af5191ef4) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2);
  src: local("GothamPro-BoldItalic"), url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2) format("embedded-opentype"), url(/fonts/GothamPro-BoldItalic.woff2?f8e27202e9e90eba004d23844f156e4d) format("woff2"), url(/fonts/GothamPro-BoldItalic.woff?ed451721a4b4ec748c0c4ac5a5fb2211) format("woff"), url(/fonts/GothamPro-BoldItalic.ttf?63cf4261a56c36433d58dac5827d300d) format("truetype"), url(/fonts/GothamPro-BoldItalic.svg?932563c626054b34e1aef0b482fc8be3) format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
.header {
  position: relative;
  z-index: 11;
  background: #FFFFFF;
}
.header a {
  text-decoration: none;
}
.header-wrapper {
  display: flex;
  justify-content: center;
  transition: background 0.5s ease;
}
.header-wrapper.fixed {
  max-width: 1440px;
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  background: #ffffff;
  transition: background 0.5s ease;
}
.header-container {
  max-width: 1440px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header-leftSide {
  display: flex;
  align-items: center;
  position: relative;
}
.header-leftSide .img-wrap {
  width: 146px;
  height: 20px;
  margin-right: 89px;
}
.header-leftSide .img-wrap:hover img {
  transform: scale(1.1);
}
.header-leftSide .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.header-leftSide .lang {
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}
.header-leftSide .lang:hover {
  color: #F0592E;
}
.header-buttons {
  display: flex;
}
.header-buttons .button-company {
  max-height: 56px;
  background: #F0592E;
  padding: 19px 34px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 11;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.header-buttons .button-company:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.header-buttons .button-menu {
  max-height: 56px;
  padding: 20px 0px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-left: 12px;
  margin-right: 12px;
  position: relative;
  transition: 0.3s ease;
}
.header-buttons .button-menu span {
  position: relative;
  z-index: 3;
  padding: 20px 38px;
  background: #5199C0;
  border-radius: 0px 32px 32px 32px;
  transition: all 0.3s 0.33s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}
.header-buttons .button-menu span:hover {
  background: #FFFFFF;
  color: #5199C0;
  border: 2px solid #5199C0;
}
.header-buttons .button-menu.active-menu span {
  padding: 20px 92px !important;
  background: #046493 !important;
  border-radius: 0px 32px 32px 32px;
  transition: 0.3s ease;
}
.header-buttons .button-menu.active-menu span:hover {
  color: #FFFFFF;
}
.header-buttons .button-menu .menu-over {
  display: none;
  top: 0;
  left: -1px;
  position: absolute;
  width: 244.81px;
  height: 250px;
  background: #5199C0;
  border-radius: 0px 32px 32px 32px;
  border: 2px solid #FFFFFF;
  z-index: 2;
}
.header-buttons .button-menu .menu-over .items {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-buttons .button-menu .menu-over .items a {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.header-buttons .button-login {
  max-height: 54px;
  border: 2px solid #046493;
  padding: 18px 34px;
  border-radius: 0px 32px 32px 32px;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  z-index: 9;
  transition: 0.3s ease;
}
.header-buttons .button-login:hover {
  background: #046493;
  color: #FFFFFF;
}
.header-buttons .button-authoriz {
  margin-right: 12px;
  border: 2px solid #046493;
  border-radius: 32px;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  z-index: 19;
  flex-direction: column;
  transition: border-radius 1.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 0 65px;
  min-height: 56px;
}
.header-buttons .button-authoriz.active {
  border-radius: 32px 32px 0px 0px;
  transition: border-radius 0s ease;
}
.header-buttons .button-authoriz a {
  color: #046493;
}
.header-buttons .button-authoriz span {
  color: #046493;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  white-space: nowrap;
}
.header-buttons .button-authoriz .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
}
.header-buttons .button-authoriz .img-wrap {
  left: -2px;
  position: absolute;
  border-radius: 32px 32px 32px 0px;
  border: 2px solid #046493;
  overflow: hidden;
  z-index: 2;
  height: 56px;
  width: 56px;
}
.header-buttons .button-authoriz .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-buttons .button-authoriz__menu {
  display: none;
  position: absolute;
  top: 53px;
  left: -2px;
  right: 0;
  width: calc(100% + 4px);
  background: #FFFFFF;
  padding: 10px 10px 10px 24px;
  border: 2px solid #046493 !important;
  border-radius: 0 0 32px 32px;
  border-top: 2px #FFFFFF solid !important;
}
.header-buttons .button-authoriz__menu svg {
  margin-right: 20px;
}
.header-buttons .button-authoriz__menu .item {
  color: #046493;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.header .hamburger {
  display: none;
  position: relative;
  z-index: 9;
  /* Icon 3 */
}
.header .hamburger #nav-icon3 {
  width: 35px;
  height: 25px;
  position: relative;
  margin: 0px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .hamburger #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #046493;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .hamburger #nav-icon3 span:nth-child(1) {
  top: 0px;
}
.header .hamburger #nav-icon3 span:nth-child(2), .header .hamburger #nav-icon3 span:nth-child(3) {
  top: 10px;
}
.header .hamburger #nav-icon3 span:nth-child(4) {
  top: 20px;
}
.header .hamburger #nav-icon3.open span:nth-child(1) {
  top: 0px;
  width: 0%;
  left: 50%;
}
.header .hamburger #nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header .hamburger #nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header .hamburger #nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media screen and (max-width: 980px) {
  .header {
    min-height: 65px;
  }
  .header-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header-leftSide .img-wrap {
    width: 110px;
    margin-right: 7vw;
  }
  .header-leftSide .lang {
    font-size: 14px;
  }
  .header-buttons {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb);
  src: local("GothamPro-Italic"), url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb) format("embedded-opentype"), url(/fonts/GothamPro-Italic.woff2?2d5a90076cfd78efd11b1ee6431630fa) format("woff2"), url(/fonts/GothamPro-Italic.woff?6fed945fec27d86b7891f927c2bc9896) format("woff"), url(/fonts/GothamPro-Italic.ttf?dd30bd2e48bdde3790f621630a125a9e) format("truetype"), url(/fonts/GothamPro-Italic.svg?f2c1342c7b08dbdb2166f4e6eb6f04fd) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b);
  src: local("GothamProNarrow-Bold"), url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b) format("embedded-opentype"), url(/fonts/GothamProNarrow-Bold.woff2?73d9a4457a889d501ffea4292d6147fd) format("woff2"), url(/fonts/GothamProNarrow-Bold.woff?c6d108c50b384cea4e7996b286cc60a0) format("woff"), url(/fonts/GothamProNarrow-Bold.ttf?86ff4a97495cc1f1db390cc6d2711955) format("truetype"), url(/fonts/GothamProNarrow-Bold.svg?714db2a63cee7c6ab4b2e61175fac451) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193);
  src: local("GothamPro-LightItalic"), url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193) format("embedded-opentype"), url(/fonts/GothamPro-LightItalic.woff2?0521c57e8ce2eecaf0fe2d30eb31002f) format("woff2"), url(/fonts/GothamPro-LightItalic.woff?342e81b5125a2823c011d179851cfc7d) format("woff"), url(/fonts/GothamPro-LightItalic.ttf?7cc43ffb4f5f5784a81ee1586886dc97) format("truetype"), url(/fonts/GothamPro-LightItalic.svg?c3044ab474b0dff423b6f9e0c8e44e6c) format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6);
  src: local("GothamPro"), url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6) format("embedded-opentype"), url(/fonts/GothamPro.woff2?9e372be6b3d1ea9d9261174c9eb1c7ca) format("woff2"), url(/fonts/GothamPro.woff?d3ff50418170cc6527a1aee4a17fb080) format("woff"), url(/fonts/GothamPro.ttf?1b8890c884ddc6829fbddd8cd5af03ca) format("truetype"), url(/fonts/GothamPro.svg?5a7f3ec06b482611bad2c8922b7cbbb5) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d);
  src: local("GothamPro-Light"), url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d) format("embedded-opentype"), url(/fonts/GothamPro-Light.woff2?fc9b1ed6db8a18f8011feb522eff571e) format("woff2"), url(/fonts/GothamPro-Light.woff?cc5a7dd6ab6767fbb7877fced8c029eb) format("woff"), url(/fonts/GothamPro-Light.ttf?ffeb040dbdd24a44441e390c2994ce91) format("truetype"), url(/fonts/GothamPro-Light.svg?43446567e834551aeb416c435c49ec2c) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf);
  src: local("GothamPro-Medium"), url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf) format("embedded-opentype"), url(/fonts/GothamPro-Medium.woff2?7428afd3651a4a030e1545299f960bf9) format("woff2"), url(/fonts/GothamPro-Medium.woff?4ff6631fd48394207fa967166d425145) format("woff"), url(/fonts/GothamPro-Medium.ttf?e05059e72aca2fc5dfda2dbbc48599ef) format("truetype"), url(/fonts/GothamPro-Medium.svg?fa30e6decb0a70649f1a7395d397092c) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991);
  src: local("GothamPro-Bold"), url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991) format("embedded-opentype"), url(/fonts/GothamPro-Bold.woff2?9008ecdbfb25217f67c833ab53428abc) format("woff2"), url(/fonts/GothamPro-Bold.woff?a3c48a0e80fd1c925573ecbfa4057476) format("woff"), url(/fonts/GothamPro-Bold.ttf?3d1226f6319dccbdde2450c17b6566ea) format("truetype"), url(/fonts/GothamPro-Bold.svg?613e975c339d69fbe7533a9da052069f) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a);
  src: local("GothamPro-BlackItalic"), url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a) format("embedded-opentype"), url(/fonts/GothamPro-BlackItalic.woff2?10e760a2d487d3865552433672b7de73) format("woff2"), url(/fonts/GothamPro-BlackItalic.woff?6c59defb47302c991f3d27107297633b) format("woff"), url(/fonts/GothamPro-BlackItalic.ttf?eb20a059a260ad9071a96bde0d34f21d) format("truetype"), url(/fonts/GothamPro-BlackItalic.svg?0865cdd97d59d6a93599d6c1c0ea9e86) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e);
  src: local("GothamPro-MediumItalic"), url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e) format("embedded-opentype"), url(/fonts/GothamPro-MediumItalic.woff2?6d1bb70aadd1777ba6f6ce1d7f5856eb) format("woff2"), url(/fonts/GothamPro-MediumItalic.woff?0dbb6514888acbf63639a06240ff603e) format("woff"), url(/fonts/GothamPro-MediumItalic.ttf?4c380734b04aaa838c4866838f42e8c9) format("truetype"), url(/fonts/GothamPro-MediumItalic.svg?c35b2484e12baf32bb4f5d04f1f325f9) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059);
  src: local("GothamPro-Black"), url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059) format("embedded-opentype"), url(/fonts/GothamPro-Black.woff2?c8243d3d3b3527c810a97db3a652cd1f) format("woff2"), url(/fonts/GothamPro-Black.woff?9819b889d4f331163aba38802a5cbac5) format("woff"), url(/fonts/GothamPro-Black.ttf?aaeeb5239f41fb5fd40c7a7ecd85c347) format("truetype"), url(/fonts/GothamPro-Black.svg?012c00de8c896b193a009e7ddc1a1fd7) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c);
  src: local("GothamProNarrow-Medium"), url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c) format("embedded-opentype"), url(/fonts/GothamProNarrow-Medium.woff2?374be5068819aff3cb1b23b5b1195d65) format("woff2"), url(/fonts/GothamProNarrow-Medium.woff?6efe0896daac5577e736015451bba1bd) format("woff"), url(/fonts/GothamProNarrow-Medium.ttf?6480dab1d9fb04d3d010b01543215497) format("truetype"), url(/fonts/GothamProNarrow-Medium.svg?099a354a7a81c2af8443f11af5191ef4) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2);
  src: local("GothamPro-BoldItalic"), url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2) format("embedded-opentype"), url(/fonts/GothamPro-BoldItalic.woff2?f8e27202e9e90eba004d23844f156e4d) format("woff2"), url(/fonts/GothamPro-BoldItalic.woff?ed451721a4b4ec748c0c4ac5a5fb2211) format("woff"), url(/fonts/GothamPro-BoldItalic.ttf?63cf4261a56c36433d58dac5827d300d) format("truetype"), url(/fonts/GothamPro-BoldItalic.svg?932563c626054b34e1aef0b482fc8be3) format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
.footer a {
  text-decoration: none;
}
.footer-wrapper {
  display: flex;
  justify-content: center;
  background: #EBF8F9;
}
.footer-container {
  max-width: 1440px;
  width: 100%;
  padding-top: 73px;
  padding-bottom: 63px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #EBF8F9;
  color: #046493;
}
.footer-container ul {
  padding: 0;
  margin: 0;
}
.footer-container ul li {
  text-transform: uppercase;
  list-style: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 32px;
  color: #046493;
  transition: color 0.3s ease;
}
.footer-container ul li:hover {
  color: #F0592E;
}
.footer-logo {
  margin-right: 111px;
}
.footer-logo .logo-wrap {
  width: 204px;
  height: 27px;
}
.footer-logo .logo-wrap:hover img {
  transform: scale(1.1);
}
.footer-logo .logo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.footer-blockFirst {
  margin-right: 71px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-blockFirst .button {
  margin-top: 9px;
  background: #F0592E;
  padding: 21px 25px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.footer-blockFirst .button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.footer-blockSecond {
  margin-right: 57px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-blockSecond .contacts-subscribe {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
}
.footer-blockSecond .contacts-subscribe__form .input-row {
  width: 372px;
  position: relative;
  box-sizing: border-box;
  border-radius: 0px 32px 32px 32px;
  overflow: hidden;
}
.footer-blockSecond .contacts-subscribe__form .input-row #subscribe-input-error {
  position: absolute;
  left: 15px;
  bottom: 5px;
  color: #F0592E;
  font-size: 12px;
}
.footer-blockSecond .contacts-subscribe__form .input-row label {
  width: 100%;
}
.footer-blockSecond .contacts-subscribe__form .input-row label input {
  font-family: inherit;
  width: 100%;
  padding: 19px 15px 19px 23px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  background: white;
  border: none;
  outline: none;
}
.footer-blockSecond .contacts-subscribe__form .input-row label input::-moz-placeholder {
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  text-transform: uppercase;
}
.footer-blockSecond .contacts-subscribe__form .input-row label input:-ms-input-placeholder {
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  text-transform: uppercase;
}
.footer-blockSecond .contacts-subscribe__form .input-row label input::placeholder {
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  text-transform: uppercase;
}
.footer-blockSecond .contacts-subscribe__form .input-row label button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 18px;
  color: #FFFFFF;
  background: #046493;
  height: 100%;
}
.footer-blockSecond .contacts-subscribe__form .input-row label button:disabled {
  opacity: 0.5;
}
.footer-info .adres {
  max-width: 200px;
}
.footer-info .adres:hover {
  color: #046493;
}
.footer-info .socials {
  display: flex;
  align-items: center;
}
.footer-info .socials .img-wrap + .img-wrap {
  margin-left: 21px;
}
.footer-info .socials .img-wrap {
  width: 28px;
  height: 24px;
  cursor: pointer;
}
.footer-info .socials .img-wrap:hover svg path {
  fill: #F0592E;
}
.footer-info .socials .img-wrap svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-info .socials .img-wrap svg path {
  transition: fill 0.3s ease;
  fill: #046493;
}
.footer-info ul {
  margin-bottom: 36px;
}
.footer-info ul li {
  margin-bottom: 24px;
  text-transform: none;
  font-weight: normal;
  font-size: 16px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .footer-container {
    padding-bottom: 100px;
    position: relative;
  }
  .footer-logo {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 980px) {
  .footer-container {
    padding-bottom: 65px;
    padding-top: 40px;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
  }
  .footer-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .footer .logo-wrap {
    width: 130px;
  }
  .footer-blockFirst {
    width: 300px;
    align-items: center;
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .footer-blockFirst ul li {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer-blockFirst .button {
    font-size: 14px;
    margin-top: 0;
    padding: 15px 25px;
  }
  .footer-blockSecond {
    width: 300px;
    align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .footer-blockSecond ul li {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer-blockSecond .contacts-subscribe {
    margin-top: 0;
    width: 95%;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row label input {
    padding: 15px 15px 15px 23px;
    font-size: 14px;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row label input::-moz-placeholder {
    font-size: 13px;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row label input:-ms-input-placeholder {
    font-size: 13px;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row label input::placeholder {
    font-size: 13px;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row {
    width: 300px;
  }
  .footer-blockSecond .contacts-subscribe__form .input-row label button {
    width: 60px;
  }
  .footer-info {
    width: 300px;
  }
  .footer-info .socials {
    justify-content: center;
  }
  .footer-info ul li {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-info .socials .img-wrap {
    width: 23px;
    height: 19px;
    cursor: pointer;
  }

  .footer-info ul {
    margin-bottom: 25px;
  }
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb);
  src: local("GothamPro-Italic"), url(/fonts/GothamPro-Italic.eot?b9647ec1dbe846d1ade5f1b24fa967cb) format("embedded-opentype"), url(/fonts/GothamPro-Italic.woff2?2d5a90076cfd78efd11b1ee6431630fa) format("woff2"), url(/fonts/GothamPro-Italic.woff?6fed945fec27d86b7891f927c2bc9896) format("woff"), url(/fonts/GothamPro-Italic.ttf?dd30bd2e48bdde3790f621630a125a9e) format("truetype"), url(/fonts/GothamPro-Italic.svg?f2c1342c7b08dbdb2166f4e6eb6f04fd) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b);
  src: local("GothamProNarrow-Bold"), url(/fonts/GothamProNarrow-Bold.eot?e749602283ada0a943e8437da8522c8b) format("embedded-opentype"), url(/fonts/GothamProNarrow-Bold.woff2?73d9a4457a889d501ffea4292d6147fd) format("woff2"), url(/fonts/GothamProNarrow-Bold.woff?c6d108c50b384cea4e7996b286cc60a0) format("woff"), url(/fonts/GothamProNarrow-Bold.ttf?86ff4a97495cc1f1db390cc6d2711955) format("truetype"), url(/fonts/GothamProNarrow-Bold.svg?714db2a63cee7c6ab4b2e61175fac451) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193);
  src: local("GothamPro-LightItalic"), url(/fonts/GothamPro-LightItalic.eot?06e771992bcb7d468bbd7915f4b8c193) format("embedded-opentype"), url(/fonts/GothamPro-LightItalic.woff2?0521c57e8ce2eecaf0fe2d30eb31002f) format("woff2"), url(/fonts/GothamPro-LightItalic.woff?342e81b5125a2823c011d179851cfc7d) format("woff"), url(/fonts/GothamPro-LightItalic.ttf?7cc43ffb4f5f5784a81ee1586886dc97) format("truetype"), url(/fonts/GothamPro-LightItalic.svg?c3044ab474b0dff423b6f9e0c8e44e6c) format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6);
  src: local("GothamPro"), url(/fonts/GothamPro.eot?0454dce410b7ec2b992164f41d5e6ee6) format("embedded-opentype"), url(/fonts/GothamPro.woff2?9e372be6b3d1ea9d9261174c9eb1c7ca) format("woff2"), url(/fonts/GothamPro.woff?d3ff50418170cc6527a1aee4a17fb080) format("woff"), url(/fonts/GothamPro.ttf?1b8890c884ddc6829fbddd8cd5af03ca) format("truetype"), url(/fonts/GothamPro.svg?5a7f3ec06b482611bad2c8922b7cbbb5) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d);
  src: local("GothamPro-Light"), url(/fonts/GothamPro-Light.eot?2c7968bdb5187389215109badbfbae4d) format("embedded-opentype"), url(/fonts/GothamPro-Light.woff2?fc9b1ed6db8a18f8011feb522eff571e) format("woff2"), url(/fonts/GothamPro-Light.woff?cc5a7dd6ab6767fbb7877fced8c029eb) format("woff"), url(/fonts/GothamPro-Light.ttf?ffeb040dbdd24a44441e390c2994ce91) format("truetype"), url(/fonts/GothamPro-Light.svg?43446567e834551aeb416c435c49ec2c) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf);
  src: local("GothamPro-Medium"), url(/fonts/GothamPro-Medium.eot?dae2cdfce1edfcc6afeeaf68d8b966bf) format("embedded-opentype"), url(/fonts/GothamPro-Medium.woff2?7428afd3651a4a030e1545299f960bf9) format("woff2"), url(/fonts/GothamPro-Medium.woff?4ff6631fd48394207fa967166d425145) format("woff"), url(/fonts/GothamPro-Medium.ttf?e05059e72aca2fc5dfda2dbbc48599ef) format("truetype"), url(/fonts/GothamPro-Medium.svg?fa30e6decb0a70649f1a7395d397092c) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991);
  src: local("GothamPro-Bold"), url(/fonts/GothamPro-Bold.eot?d4dcc067b7c90cb235fae84adcc48991) format("embedded-opentype"), url(/fonts/GothamPro-Bold.woff2?9008ecdbfb25217f67c833ab53428abc) format("woff2"), url(/fonts/GothamPro-Bold.woff?a3c48a0e80fd1c925573ecbfa4057476) format("woff"), url(/fonts/GothamPro-Bold.ttf?3d1226f6319dccbdde2450c17b6566ea) format("truetype"), url(/fonts/GothamPro-Bold.svg?613e975c339d69fbe7533a9da052069f) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a);
  src: local("GothamPro-BlackItalic"), url(/fonts/GothamPro-BlackItalic.eot?acd9395864a232162005fc4b66d10b7a) format("embedded-opentype"), url(/fonts/GothamPro-BlackItalic.woff2?10e760a2d487d3865552433672b7de73) format("woff2"), url(/fonts/GothamPro-BlackItalic.woff?6c59defb47302c991f3d27107297633b) format("woff"), url(/fonts/GothamPro-BlackItalic.ttf?eb20a059a260ad9071a96bde0d34f21d) format("truetype"), url(/fonts/GothamPro-BlackItalic.svg?0865cdd97d59d6a93599d6c1c0ea9e86) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e);
  src: local("GothamPro-MediumItalic"), url(/fonts/GothamPro-MediumItalic.eot?2cb49918b3e6f70142c933877e20d46e) format("embedded-opentype"), url(/fonts/GothamPro-MediumItalic.woff2?6d1bb70aadd1777ba6f6ce1d7f5856eb) format("woff2"), url(/fonts/GothamPro-MediumItalic.woff?0dbb6514888acbf63639a06240ff603e) format("woff"), url(/fonts/GothamPro-MediumItalic.ttf?4c380734b04aaa838c4866838f42e8c9) format("truetype"), url(/fonts/GothamPro-MediumItalic.svg?c35b2484e12baf32bb4f5d04f1f325f9) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059);
  src: local("GothamPro-Black"), url(/fonts/GothamPro-Black.eot?72dcd771e5747581d4b79bbce6a13059) format("embedded-opentype"), url(/fonts/GothamPro-Black.woff2?c8243d3d3b3527c810a97db3a652cd1f) format("woff2"), url(/fonts/GothamPro-Black.woff?9819b889d4f331163aba38802a5cbac5) format("woff"), url(/fonts/GothamPro-Black.ttf?aaeeb5239f41fb5fd40c7a7ecd85c347) format("truetype"), url(/fonts/GothamPro-Black.svg?012c00de8c896b193a009e7ddc1a1fd7) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro Narrow";
  src: url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c);
  src: local("GothamProNarrow-Medium"), url(/fonts/GothamProNarrow-Medium.eot?4d9bfad16766b508a53801c3e4a5d97c) format("embedded-opentype"), url(/fonts/GothamProNarrow-Medium.woff2?374be5068819aff3cb1b23b5b1195d65) format("woff2"), url(/fonts/GothamProNarrow-Medium.woff?6efe0896daac5577e736015451bba1bd) format("woff"), url(/fonts/GothamProNarrow-Medium.ttf?6480dab1d9fb04d3d010b01543215497) format("truetype"), url(/fonts/GothamProNarrow-Medium.svg?099a354a7a81c2af8443f11af5191ef4) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2);
  src: local("GothamPro-BoldItalic"), url(/fonts/GothamPro-BoldItalic.eot?409a3895fdb929db7d72db3887d10ea2) format("embedded-opentype"), url(/fonts/GothamPro-BoldItalic.woff2?f8e27202e9e90eba004d23844f156e4d) format("woff2"), url(/fonts/GothamPro-BoldItalic.woff?ed451721a4b4ec748c0c4ac5a5fb2211) format("woff"), url(/fonts/GothamPro-BoldItalic.ttf?63cf4261a56c36433d58dac5827d300d) format("truetype"), url(/fonts/GothamPro-BoldItalic.svg?932563c626054b34e1aef0b482fc8be3) format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
.main a {
  text-decoration: none;
}
.main-wrapper {
  display: flex;
  justify-content: center;
}
.main-container {
  max-width: 1440px;
  width: 100%;
  position: relative;
}
.main-background {
  margin-top: -99px;
  width: 100%;
  z-index: 1;
  position: absolute;
}
.main-background .img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #002435;
  opacity: 0.75;
}
.main-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-text {
  margin-top: 72px;
  margin-left: 51px;
  position: relative;
  z-index: 1;
  transform: translateY(-200px);
  transition: transform 1.4s ease;
}
@media only screen and (max-width: 980px) {
  .main-text {
    transform: translateX(0);
  }
}
.main-text.animated {
  transform: translateY(0);
}
.main-text__upper {
  font-style: normal;
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
}
.main-text__upper span {
  color: #F0592E;
}
.main-text__down {
  margin-top: 12px;
  margin-bottom: 72px;
  font-weight: normal;
  font-size: 16px;
  color: #FFFFFF;
}
.main-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 379px;
  margin: 0 auto;
  margin-bottom: 99px;
  position: relative;
  z-index: 1;
  background: #F0592E;
  border-radius: 0px 40px 40px 40px;
  height: 80px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease, transform 1.4s ease;
  margin-top: -9px;
  transform: translateY(200px);
}
@media only screen and (max-width: 980px) {
  .main-button {
    transform: translateY(0);
  }
}
.main-button.animated {
  transform: translateY(0);
}
.main-button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.main-block {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  background: #f8fcfd;
  border-radius: 40px 0px 0px 0px;
  margin-left: 40px;
  padding-top: 44px;
  padding-left: 48px;
  padding-bottom: 28px;
  overflow: hidden;
}
.main-block__text {
  font-weight: bold;
  font-size: 24px;
  color: #5199C0;
  margin-bottom: 24px;
}
.main-block__items {
  display: flex;
}
.main-block__items .item + .item {
  margin-left: 24px;
}
.main-block__items .item {
  display: flex;
  align-items: center;
  border: 2px solid #5199C0;
  color: #5199C0;
  padding: 20px 32px;
  border-radius: 40px;
  position: relative;
  max-width: 289px;
  width: 100%;
}
.main-block__items .item__number {
  font-weight: normal;
  font-size: 44px;
  margin-right: 16px;
}
.main-block__items .item__text {
  font-weight: normal;
  font-size: 16px;
  max-width: 164px;
}
.main-block .first {
  cursor: pointer;
  -webkit-animation: item 1.4s ease;
          animation: item 1.4s ease;
}
@media only screen and (max-width: 980px) {
  .main-block .first {
    -webkit-animation: none;
            animation: none;
  }
}
.main-block .second {
  cursor: pointer;
  -webkit-animation: item 1.4s 0.1s ease;
          animation: item 1.4s 0.1s ease;
}
@media only screen and (max-width: 980px) {
  .main-block .second {
    -webkit-animation: none;
            animation: none;
  }
}
.main-block .third {
  cursor: pointer;
  -webkit-animation: item 1.4s 0.2s ease;
          animation: item 1.4s 0.2s ease;
}
@media only screen and (max-width: 980px) {
  .main-block .third {
    -webkit-animation: none;
            animation: none;
  }
}
.main-block .fourth {
  cursor: pointer;
  -webkit-animation: item 1.4s 0.3s ease;
          animation: item 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .main-block .fourth {
    -webkit-animation: none;
            animation: none;
  }
}
.main-block__button {
  margin: 0 auto;
  margin-top: 28px;
  color: #F0592E;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #F0592E;
  border-radius: 0px 40px 40px 40px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  max-width: 310px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}
.main-block__button:hover {
  background: #F0592E;
  color: #FFFFFF;
}
.main-count {
  position: relative;
  margin-left: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
.main-count__background {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
.main-count__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 0px 40px;
}
.main-count__text {
  margin-top: 44px;
  margin-left: 48px;
  position: relative;
  z-index: 1;
  transform: translateX(-390px);
  transition: transform 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .main-count__text {
    transform: translateX(0);
  }
}
.main-count__text.animated {
  transform: translateX(0);
}
.main-count__text .upper {
  font-weight: bold;
  font-size: 24px;
  color: #046493;
  text-transform: uppercase;
}
.main-count__text .button {
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px 32px 32px 32px;
  max-width: 250px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.main-count__text .button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.main-count__rightText {
  margin-top: 44px;
  margin-bottom: 62px;
  position: relative;
  z-index: 1;
  padding-top: 34px;
  padding-left: 52px;
  padding-bottom: 33px;
  padding-right: 118px;
  background: #5199C0;
  border-radius: 40px 0px 0px 40px;
  transform: translateX(410px);
  transition: transform 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .main-count__rightText {
    transform: translateX(0);
  }
}
.main-count__rightText.animated {
  transform: translateX(0);
}
.main-count__rightText .adv-item + .adv-item {
  margin-top: 24px;
}
.main-count__rightText .adv-item {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.main-count__rightText .adv-item__top {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}
.main-count__rightText .adv-item__bot {
  font-weight: normal;
  font-size: 16px;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}
.main-count__rightText .adv-item__bot strong {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}
.main-companies {
  background: #EBF8F9;
  border-radius: 40px 0px 0px 40px;
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  padding-top: 44px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 99px;
  display: flex;
  flex-direction: column;
  margin-bottom: 45px;
  overflow: hidden;
}
.main-companies__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 53px;
}
.main-companies__top .text {
  font-weight: bold;
  font-size: 24px;
  color: #046493;
  text-transform: uppercase;
}
.main-companies__top .button {
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  background: #046493;
  text-transform: uppercase;
  padding: 18px 35px 18px 47px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.main-companies__top .button:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}
.main-companies__bottom .companies__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.main-companies__bottom .companies__items a {
  transition: transform 1.4s ease;
}
.main-companies__bottom .companies__items a:nth-child(1) {
  transform: translateX(-200px);
}
@media only screen and (max-width: 980px) {
  .main-companies__bottom .companies__items a:nth-child(1) {
    transform: translateX(0);
  }
}
.main-companies__bottom .companies__items a:nth-child(3) {
  transform: translateX(200px);
}
@media only screen and (max-width: 980px) {
  .main-companies__bottom .companies__items a:nth-child(3) {
    transform: translateX(0);
  }
}
.main-companies__bottom .companies__items a.animated {
  transform: translateX(0);
}
.main-companies__bottom .companies__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-companies__bottom .companies__item .photo {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  overflow: hidden;
}
.main-companies__bottom .companies__item .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-companies__bottom .companies__item .name {
  max-width: 180px;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 30px;
  min-height: 60px;
  line-height: 20px;
  word-break: break-word;
}
.main-companies__bottom .companies__item .progress {
  width: 239px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 14px;
  position: relative;
}
.main-companies__bottom .companies__item .progress_active {
  position: absolute;
  background: #046493;
  height: 8px;
  width: 0;
  border-radius: 4px;
  transition: width 1.5s ease;
}
.main-companies__bottom .companies__item .progress_procent {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-weight: 500;
  max-width: 46px;
  font-size: 12px;
  color: #FFFFFF;
  padding: 4px 6px;
  background: #046493;
  border-radius: 5px;
  transition: left 1.5s ease;
}
.main-companies__bottom .companies__item .left {
  color: #F0592E;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
}
.main-companies__bottom .companies__item .left span {
  font-weight: bold;
}
.main-companies__bottom .companies__item .donate-button {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #67C6D7;
  padding: 18px 63px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.main-companies__bottom .companies__item .donate-button:hover {
  border: 2px solid #67C6D7;
  background: #FFFFFF;
  color: #67C6D7;
}

@-webkit-keyframes item {
  from {
    transform: translateX(300px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes item {
  from {
    transform: translateX(300px);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (min-width: 980px) and (max-width: 1440px) {
  .main-background {
    height: 43%;
  }
  .main-block {
    width: calc(100vw - 40px);
    padding-right: 28px;
    overflow: hidden;
  }
  .main-block__items .item__number {
    font-size: 33px;
  }
  .main-count {
    width: calc(100vw - 40px);
    overflow: hidden;
  }
  .main-companies {
    width: calc(100vw - 40px);
    overflow: hidden;
  }
  .main-companies__bottom .companies__item .photo {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 980px) {
  .main-background {
    margin-top: 0px;
    height: 25%;
  }

  .main-text {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 100px;
  }

  .main-text__upper {
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
    color: #FFFFFF;
    max-width: 90vw;
    text-align: center;
  }

  .main-text__down {
    text-align: center;
    font-size: 14px;
    max-width: 90vw;
    margin-top: 25px;
    margin-bottom: 50px;
  }

  .main-button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 264px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    background: #F0592E;
    border-radius: 0px 40px 40px 40px;
    height: 53px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    margin-top: -9px;
  }

  .main-block {
    margin-left: 0;
    padding: 30px;
    border-radius: 40px 40px 0px 0px;
  }

  .main-block__text {
    font-size: 18px;
  }

  .main-block__items {
    display: flex;
    flex-direction: column;
  }

  .main-block__items .item + .item {
    margin-top: 18px;
    margin-left: 0;
  }

  .main-block__items .item__number {
    font-weight: normal;
    font-size: 24px;
    margin-right: 16px;
  }

  .main-block__items .item__text {
    font-weight: normal;
    font-size: 14px;
    width: 144px;
  }

  .main-block__items .item {
    padding: 20px 25px;
    max-width: none;
    justify-content: center;
  }

  .main-block__button {
    margin: 0 auto;
    margin-top: 28px;
    color: #F0592E;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #F0592E;
    border-radius: 0px 40px 40px 40px;
    text-transform: uppercase;
    padding: 19px 54px;
    max-width: 264px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .main-count {
    position: relative;
    margin-left: 0px;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 0px;
    overflow: hidden;
    flex-direction: column;
    min-height: 611px;
  }

  .main-count__text {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .main-count__text .upper {
    font-size: 18px;
    text-align: center;
  }

  .main-count__text .button {
    margin: 16px auto;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #F0592E;
    padding: 15px 25px;
    border-radius: 0px 32px 32px 32px;
    max-width: 226px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .main-count__rightText {
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    padding-top: 34px;
    padding-left: 52px;
    padding-bottom: 34px;
    padding-right: 52px;
    background: #5199C0;
    border-radius: 40px 40px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-count__rightText .adv-item {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-count__rightText .adv-item + .adv-item {
    margin-top: 20px;
  }

  .main-count__rightText .adv-item__top {
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
  }

  .main-count__rightText .adv-item__bot {
    font-weight: normal;
    font-size: 14px;
  }

  .main-count__background {
    height: 75%;
  }

  .main-companies {
    background: #EBF8F9;
    border-radius: 0px 0px 40px 40px;
    max-width: 1400px;
    width: 100%;
    margin-left: 0px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
    overflow: hidden;
  }

  .main-companies__top .text {
    font-weight: bold;
    font-size: 18px;
    color: #046493;
    text-transform: uppercase;
  }

  .main-companies__top .button {
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    background: #046493;
    text-transform: uppercase;
    padding: 15px 24px 15px 24px;
    border-radius: 0px 32px 32px 32px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
  }

  .main-companies__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 53px;
    align-items: center;
  }

  .main-companies__bottom .companies__items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .main-companies__bottom .companies__item .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }

  .main-companies__bottom .companies__item .name {
    max-width: 180px;
    font-weight: bold;
    font-size: 14px;
    color: #046493;
    text-transform: uppercase;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 30px;
  }

  .main-companies__bottom .companies__item .left {
    color: #F0592E;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .main-companies__bottom .companies__item .donate-button {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 0px 32px 32px 32px;
    background: #67C6D7;
    padding: 15px 55px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .main-companies__bottom .companies__item {
    margin-bottom: 40px;
    width: 300px;
  }

  .main-companies__bottom .companies__item .progress {
    width: 212px;
  }

  .footer-info .adres {
    max-width: none;
    line-height: 16px;
  }
}
.about-wrapper {
  display: flex;
  justify-content: center;
}
.about-container {
  max-width: 1440px;
  width: 100%;
  overflow: hidden;
}
.about-platform {
  max-width: 1400px;
  margin-left: 40px;
  margin-bottom: 40px;
  border-radius: 40px 0px 0px 40px;
  background: #5199C0;
  display: flex;
  padding-right: 40px;
  transition: transform 1.4s ease;
  transform: translateX(300px);
}
@media only screen and (max-width: 980px) {
  .about-platform {
    transform: translateX(0);
  }
}
.about-platform.animated {
  transform: translateX(0);
}
.about-platform__image {
  max-width: 487px;
}
.about-platform__image img {
  border-radius: 40px 0px 0px 40px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-platform__text {
  margin-top: 64px;
  max-width: 800px;
  margin-left: 65px;
}
.about-platform__text .top-text {
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
}
.about-platform__text .bot-text {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.about-platform__text .bot-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
}
.about-platform__text .bot-text p span {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.about-platform__text .bot-text span {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.about-fond {
  max-width: 1400px;
  margin-right: 40px;
  margin-bottom: 40px;
  background: #EBF8F9;
  border-radius: 0px 40px 40px 0px;
  display: flex;
  justify-content: space-between;
  transition: transform 1.4s ease;
  transform: translateX(-300px);
}
@media only screen and (max-width: 980px) {
  .about-fond {
    transform: translateX(0);
  }
}
.about-fond.animated {
  transform: translateX(0);
}
.about-fond__text {
  padding-left: 75px;
  max-width: 838px;
  margin-right: 87px;
}
.about-fond__text .top-text {
  margin-top: 64px;
  font-weight: bold;
  font-size: 56px;
  color: #046493;
}
.about-fond__text .bot-text {
  margin-top: 28px;
  margin-bottom: 94px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #046493;
}
.about-fond__text .bot-text p {
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.about-fond__text .bot-text p span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.about-fond__text .bot-text span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.about-fond__image {
  max-width: 487px;
}
.about-fond__image img {
  border-radius: 0px 40px 40px 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-aid {
  max-width: 1400px;
  margin-left: 40px;
  margin-bottom: 40px;
  background: #F0592E;
  border-radius: 40px 0px 0px 40px;
  display: flex;
  transition: transform 1.4s ease;
  transform: translateX(300px);
}
@media only screen and (max-width: 980px) {
  .about-aid {
    transform: translateX(0);
  }
}
.about-aid.animated {
  transform: translateX(0);
}
.about-aid__image {
  max-width: 487px;
}
.about-aid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 0px 0px 40px;
}
.about-aid__text {
  color: #FFFFFF;
  margin-top: 64px;
  margin-left: 64px;
}
.about-aid__text .top-text {
  font-weight: bold;
  font-size: 56px;
}
.about-aid__text .bot-text {
  margin-top: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  max-width: 800px;
}
.about-aid__text .bot-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.about-aid__text .bot-text p span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.about-aid__text .bot-text span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .about-platform__text .bot-text {
    margin-bottom: 64px;
  }

  .about-aid__text .bot-text {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 980px) {
  .about-platform {
    max-width: 1400px;
    margin-left: 0px;
    margin-bottom: 40px;
    border-radius: 0px 0px 40px 40px;
    background: #5199C0;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    overflow: hidden;
  }

  .about-platform__text .top-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .about-platform__text .bot-text {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .about-platform__text .bot-text span {
    font-size: 14px;
  }

  .about-platform__text {
    margin: 0;
    padding: 30px;
    order: 1;
  }

  .about-platform__image {
    max-width: 100vw;
    order: 2;
    display: flex;
    align-items: flex-end;
  }
  .about-platform__image img {
    border-radius: 40px 40px 0px 0px;
  }

  .about-fond {
    max-width: 1400px;
    margin-right: 0px;
    margin-bottom: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    overflow: hidden;
  }

  .about-fond__text .top-text {
    font-size: 35px;
    line-height: 35px;
    margin-top: 15px;
    text-align: center;
  }

  .about-fond__text .bot-text {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .about-fond__text .bot-text span {
    font-size: 14px;
  }

  .about-fond__text {
    margin: 0;
    padding: 30px;
    order: 1;
  }

  .about-fond__image {
    max-width: 100vw;
    order: 2;
    display: flex;
    align-items: flex-end;
  }
  .about-fond__image img {
    border-radius: 40px 40px 0px 0px;
  }

  .about-aid {
    max-width: 1400px;
    margin-left: 0px;
    margin-bottom: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    overflow: hidden;
  }

  .about-aid__text .top-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .about-aid__text .bot-text {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .about-aid__text .bot-text span {
    font-size: 14px;
  }

  .about-aid__text {
    margin: 0;
    padding: 30px;
    order: 1;
  }

  .about-aid__image {
    max-width: 100vw;
    order: 2;
    display: flex;
    align-items: flex-end;
  }
  .about-aid__image img {
    border-radius: 40px 40px 0px 0px;
  }
}
.campanies-wrapper {
  display: flex;
  justify-content: center;
}
.campanies-container {
  max-width: 1440px;
  width: 100%;
}
.campanies-block {
  max-width: 1400px;
  margin-left: 40px;
  margin-bottom: 40px;
  background: #EBF8F9;
  border-radius: 40px 0px 0px 40px;
  padding-top: 44px;
  position: relative;
  padding-bottom: 60px;
}
.campanies-block__top-line {
  display: flex;
  justify-content: space-between;
  margin-left: 48px;
}
.campanies-block__top-line .right {
  display: flex;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  margin-right: 93px;
  margin-bottom: 108px;
}
.campanies-block__top-line .right .category {
  margin-right: 35px;
  cursor: pointer;
  position: relative;
}
.campanies-block__top-line .right .category.active img {
  transform: rotate(180deg);
}
.campanies-block__top-line .right .category .category__drop-down {
  display: none;
  position: absolute;
  z-index: 5;
  right: 50%;
  top: 25px;
  transform: translateX(50%);
  background: #FFFFFF;
  padding: 12px 35px;
  border-radius: 0 0 32px 32px;
  border: 2px solid #046493;
  border-top: 0px;
}
.campanies-block__top-line .right .category .category__drop-down .items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.campanies-block__top-line .right .category .category__drop-down .items .item + .item {
  margin-top: 10px;
}
.campanies-block__top-line .right .category .category__drop-down .items .item {
  text-align: center;
  width: 130px;
}
.campanies-block__top-line .right .category img {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.campanies-block__top-line .right .type {
  cursor: pointer;
  position: relative;
}
.campanies-block__top-line .right .type .type__drop-down {
  display: none;
  position: absolute;
  z-index: 5;
  right: 50%;
  top: 25px;
  transform: translateX(50%);
  background: #FFFFFF;
  padding: 12px 35px;
  border-radius: 0 0 32px 32px;
  border: 2px solid #046493;
  border-top: 0px;
}
.campanies-block__top-line .right .type .type__drop-down .items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.campanies-block__top-line .right .type .type__drop-down .items .item + .item {
  margin-top: 10px;
}
.campanies-block__top-line .right .type .type__drop-down .items .item {
  text-align: center;
  width: 130px;
}
.campanies-block__top-line .right .type img {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.campanies-block__top-line .left {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  color: #046493;
}
.campanies-block__items {
  display: flex;
  flex-wrap: wrap;
}
.campanies-block__items a {
  text-decoration: none;
}
.campanies-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}
.campanies-block__item__wrap {
  max-width: 33.333%;
  flex: 0 0 33.333%;
  width: 100%;
  padding-left: 95px;
  padding-right: 95px;
  transform: translateY(200px);
  transition: transform 1s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .campanies-block__item__wrap {
    transform: translateY(0);
  }
}
.campanies-block__item__wrap.animated {
  transform: translateY(0);
}
.campanies-block__item .photo {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  overflow: hidden;
}
.campanies-block__item .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.campanies-block__item .name {
  max-width: 180px;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 30px;
  min-height: 60px;
  line-height: 20px;
  word-break: break-word;
}
.campanies-block__item .progress {
  width: 239px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 14px;
  position: relative;
}
.campanies-block__item .progress_active {
  position: absolute;
  background: #046493;
  height: 8px;
  width: 0;
  border-radius: 4px;
  transition: width 1.5s ease;
}
.campanies-block__item .progress_procent {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-weight: 500;
  max-width: 46px;
  font-size: 12px;
  color: #FFFFFF;
  padding: 4px 6px;
  background: #046493;
  border-radius: 5px;
  transition: left 1.5s ease;
}
.campanies-block__item .left {
  color: #F0592E;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
}
.campanies-block__item .left span {
  font-weight: bold;
}
.campanies-block__item .donate-button {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #67C6D7;
  padding: 18px 63px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.campanies-block__item .donate-button:hover {
  border: 2px solid #67C6D7;
  background: #FFFFFF;
  color: #67C6D7;
}
.campanies-block nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3%;
  display: flex;
}
.campanies-block nav a {
  text-decoration: none;
  color: #FFFFFF;
}
.campanies-block nav .active {
  color: #FFFFFF;
  position: relative;
  margin-right: 15px;
  margin-left: 15px;
}
.campanies-block nav .active span {
  position: relative;
  z-index: 3;
}
.campanies-block nav .active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 42px;
  height: 36px;
  background: url("/themes/default/img/page-num.svg") no-repeat;
  background-size: contain;
  z-index: 0;
}
.campanies-block nav li {
  display: inline;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  cursor: pointer;
  list-style: none;
  margin-left: 20px;
  margin-right: 20px;
}
.campanies-block nav li:first-child {
  margin-right: 10px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .campanies-block__item .photo {
    width: 200px;
    height: 200px;
  }
  .campanies-block__item__wrap {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
}
@media screen and (max-width: 980px) {
  .campanies-block {
    max-width: 1400px;
    margin-left: 0px;
    margin-bottom: 40px;
    background: #EBF8F9;
    border-radius: 0px 0px 40px 40px;
    padding: 30px;
    position: relative;
  }

  .campanies-block__top-line .left {
    font-size: 18px;
  }

  .campanies-block__top-line .right .category {
    font-size: 14px;
  }

  .campanies-block__top-line .right .type {
    font-size: 14px;
  }

  .campanies-block__top-line {
    margin: 0;
    flex-direction: column;
  }

  .campanies-block__top-line .right {
    display: flex;
    font-weight: bold;
    font-size: 16px;
    color: #046493;
    margin-right: 0;
    margin-bottom: 65px;
    padding-top: 3px;
    margin-top: 15px;
  }

  .main-companies {
    background: #EBF8F9;
    border-radius: 0px 0px 40px 40px;
    max-width: 1400px;
    width: 100%;
    margin-left: 0px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
    overflow: hidden;
    padding-bottom: 50px;
  }

  .campanies-block__items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .campanies-block__item .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }

  .campanies-block__item .name {
    max-width: 180px;
    font-weight: bold;
    font-size: 14px;
    color: #046493;
    text-transform: uppercase;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 30px;
  }

  .campanies-block__item .left {
    color: #F0592E;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .campanies-block__item .donate-button {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 0px 32px 32px 32px;
    background: #67C6D7;
    padding: 15px 55px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .campanies-block__item {
    margin-bottom: 40px;
    width: 300px;
  }

  .campanies-block__item .progress {
    width: 212px;
  }

  .campanies-block__item__wrap {
    padding: 0;
    max-width: none;
    flex: none;
    width: auto;
  }

  .campanies-block nav ul li {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .campanies-block nav li:first-child {
    margin-left: 10px;
  }

  .campanies-block nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    width: 85%;
    display: flex;
    justify-content: center;
  }

  .campanies-block nav .active:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 26px;
    background-size: contain;
    z-index: 0;
  }

  .campanies-block nav li + li {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.create .error {
  color: #FFFFFF;
  margin-bottom: 5px;
}
.create-wrapper {
  display: flex;
  justify-content: center;
}
.create-container {
  max-width: 1440px;
  width: 100%;
}
.create-block {
  max-width: 1400px;
  background: #5199C0;
  margin-left: 40px;
  margin-bottom: 80px;
  border-radius: 32px 0px 0px 32px;
  display: flex;
  overflow: hidden;
}
.create-block__left {
  padding-top: 52px;
  padding-left: 51px;
  padding-right: 88px;
}
.create-block__left .top-text {
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 48px;
  transform: translateX(-200px);
  transition: transform 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .create-block__left .top-text {
    transform: translateX(0);
  }
}
.create-block__left .top-text.animated {
  transform: translateX(0);
}
.create-block__left .first-step {
  display: flex;
  flex-direction: column;
  transform: translateX(-200px);
  transition: transform 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .create-block__left .first-step {
    transform: translateX(0);
  }
}
.create-block__left .first-step.animated {
  transform: translateX(0);
}
.create-block__left .first-step .text {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 560px;
}
.create-block__left .first-step .input-row {
  position: relative;
}
.create-block__left .first-step .input-row #name-error {
  position: absolute;
  left: 0;
  bottom: 64px;
}
.create-block__left .first-step .input-row input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .first-step .input-row input {
  margin-top: 70px;
  max-width: 560px;
  width: 100%;
  padding-left: 32px;
  height: 58px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  background: #FFFFFF;
  border: none;
  color: #046493;
  border-radius: 32px 32px 0px 0px;
}
.create-block__left .first-step .input-row input.error {
  border: 2px solid red;
}
.create-block__left .first-step .input-row input::-moz-placeholder {
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .first-step .input-row input:-ms-input-placeholder {
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .first-step .input-row input::placeholder {
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .first-step .select-row {
  max-width: 560px;
  position: relative;
  margin-top: 16px;
}
.create-block__left .first-step .select-row #category-error + span {
  border: 2px solid red;
}
.create-block__left .first-step .select-row #type-error + span {
  border: 2px solid red;
}
.create-block__left .first-step .select-row .select2-results__option--selectable {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  text-transform: uppercase;
  padding-left: 32px;
}
.create-block__left .first-step .select-row .select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background: #046493;
}
.create-block__left .first-step .select-row .select2-selection__arrow {
  display: none !important;
}
.create-block__left .first-step .select-row .select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #046493;
  padding-left: 0;
}
.create-block__left .first-step .select-row .select2-container--classic.select2-container--open .select2-dropdown {
  border: none !important;
  border-top: 0 solid transparent !important;
  border-radius: 0 0 32px 32px !important;
  overflow: hidden;
}
.create-block__left .first-step .select-row .select2-container--classic .select2-selection--single {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 62px;
  padding-left: 32px;
  border-radius: 0;
  border: none !important;
  background: #FFFFFF !important;
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 0;
  overflow: hidden;
}
.create-block__left .first-step .select-row .select2-container {
  width: 100% !important;
}
.create-block__left .first-step .select-row::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 25px;
  width: 20px;
  height: 12px;
  background: url("/themes/default/img/arrow-down.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.create-block__left .first-step .button {
  max-width: 560px;
  border: 2px solid #FFFFFF;
  border-radius: 0px 0px 32px 32px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  padding: 19px 197px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 16px;
}
.create-block__left .first-step .button:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .second-step {
  display: none;
  flex-direction: column;
}
.create-block__left .second-step .text {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 560px;
}
.create-block__left .second-step .target {
  position: relative;
}
.create-block__left .second-step .target textarea.error {
  border: 2px solid red;
}
.create-block__left .second-step .target .title {
  position: absolute;
  top: 52px;
  left: 32px;
  content: "Запитайте";
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.create-block__left .second-step textarea {
  font-family: inherit;
  margin-top: 30px;
  max-width: 560px;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 30px;
  height: 208px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  background: #FFFFFF;
  border: none;
  color: #046493;
  border-radius: 32px 32px 0px 0px;
  resize: none;
  overflow: hidden;
}
.create-block__left .second-step textarea::-moz-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .second-step textarea:-ms-input-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .second-step textarea::placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .second-step .buttons {
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  width: 100%;
}
.create-block__left .second-step .buttons .button-prev {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.create-block__left .second-step .buttons .button-prev:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .second-step .buttons .button-next {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 32px 0px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.create-block__left .second-step .buttons .button-next:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .third-step {
  display: none;
  flex-direction: column;
}
.create-block__left .third-step .text {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 560px;
}
.create-block__left .third-step input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .third-step input.error {
  border: 2px solid red;
}
.create-block__left .third-step input {
  margin-top: 30px;
  max-width: 560px;
  width: 100%;
  padding-left: 32px;
  height: 58px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  background: #FFFFFF;
  border: none;
  color: #046493;
  border-radius: 32px 32px 0px 0px;
}
.create-block__left .third-step input::-moz-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
}
.create-block__left .third-step input:-ms-input-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
}
.create-block__left .third-step input::placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
}
.create-block__left .third-step .buttons {
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  width: 100%;
}
.create-block__left .third-step .buttons .button-prev {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.create-block__left .third-step .buttons .button-prev:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .third-step .buttons .button-next {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 32px 0px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.create-block__left .third-step .buttons .button-next:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .fourth-step {
  display: none;
  flex-direction: column;
}
.create-block__left .fourth-step #upload-image {
  margin-top: 20px;
  width: 560px;
  height: 310px;
}
.create-block__left .fourth-step .input-button {
  max-width: 560px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.create-block__left .fourth-step .input-button .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 215px;
  height: 100%;
  margin: 0 auto;
  background: #F0592E;
  padding: 14px 0;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  transition: 0.3s ease;
  overflow: hidden;
  text-align: center;
}
.create-block__left .fourth-step .input-button .button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.create-block__left .fourth-step .input-button .button input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
  left: 0;
  top: 0;
  cursor: pointer;
}
.create-block__left .fourth-step #image-upload2-error {
  width: 100%;
  position: absolute;
  height: 100%;
  background: red;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 16px;
  font-size: 13px;
  padding: 0 25px;
}
.create-block__left .fourth-step .text {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 560px;
}
.create-block__left .fourth-step input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.create-block__left .fourth-step .link {
  margin-top: 26px;
  max-width: 560px;
  width: 100%;
  padding-left: 32px;
  height: 58px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  border: none;
  color: #046493;
}
.create-block__left .fourth-step .link::-moz-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .fourth-step .link:-ms-input-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .fourth-step .link::placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.create-block__left .fourth-step input.error {
  border: 2px solid red;
}
.create-block__left .fourth-step .buttons {
  margin-top: 16px;
  margin-bottom: 70px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  width: 100%;
}
.create-block__left .fourth-step .buttons .button-prev {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.create-block__left .fourth-step .buttons .button-prev:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .fourth-step .buttons .button-next {
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 32px 0px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.create-block__left .fourth-step .buttons .button-next:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .preview-step {
  display: none;
}
.create-block__left .preview-step__container {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  width: 950px;
}
.create-block__left .preview-step__container .img-wrapper {
  max-width: 494px;
  width: 100%;
  position: relative;
  margin-right: 36px;
  display: flex;
  align-items: center;
}
.create-block__left .preview-step__container .img-wrapper .new-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  background: red;
}
.create-block__left .preview-step__container .img-wrapper .person {
  position: absolute;
  top: 15px;
  left: 21px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #046493;
  border-radius: 24px;
}
.create-block__left .preview-step__container .img-wrapper .person-image {
  width: 42px;
  height: 42px;
}
.create-block__left .preview-step__container .img-wrapper .person-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #046493;
}
.create-block__left .preview-step__container .img-wrapper .person-name {
  padding-left: 15px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 11.8496px;
  line-height: 15px;
  color: #046493;
}
.create-block__left .preview-step__container .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.create-block__left .preview-step__container .text-wrapper {
  margin-right: 36px;
  margin-top: 31px;
}
.create-block__left .preview-step__container .text-wrapper .count {
  background: #046493;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  max-height: 73px;
  height: 100%;
  max-width: 400px;
  min-width: 337px;
}
.create-block__left .preview-step__container .text-wrapper .count .text {
  margin-top: 13px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #FFFFFF;
}
.create-block__left .preview-step__container .text-wrapper .count .text span {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
}
.create-block__left .preview-step__container .text-wrapper .count .line {
  margin-top: 15px;
  height: 6px;
  max-width: 323px;
  width: 100%;
}
.create-block__left .preview-step__container .text-wrapper .count .line .back-line {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  height: 6px;
  position: relative;
}
.create-block__left .preview-step__container .text-wrapper .count .line .back-line .front-line {
  top: 0;
  left: 0;
  max-width: 130px;
  width: 100%;
  position: absolute;
  border-radius: 3px;
  height: 6px;
  background: #FFFFFF;
}
.create-block__left .preview-step__container .text-wrapper .count .line .back-line .procent {
  position: absolute;
  top: -50%;
  left: 0;
  font-weight: 500;
  max-width: 27px;
  font-size: 8.88718px;
  color: #046493;
  padding: 2px 4px;
  background: #FFFFFF;
  border-radius: 5px;
}
.create-block__left .preview-step__container .text-wrapper .upper-text {
  margin-top: 27px;
  margin-bottom: 11px;
  font-weight: bold;
  font-size: 17.7744px;
  color: #046493;
  text-transform: uppercase;
}
.create-block__left .preview-step__container .text-wrapper .down-text {
  font-weight: 400;
  font-size: 11.8496px;
  line-height: 15px;
  color: #046493;
  max-width: 400px;
}
.create-block__left .preview-step__container .text-wrapper .inside-buttons {
  margin-top: 92px;
  padding-bottom: 32px;
  display: flex;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  align-items: center;
}
.create-block__left .preview-step__container .text-wrapper .inside-buttons .help-button {
  cursor: pointer;
  color: #FFFFFF;
  border-radius: 0px 24px 24px 24px;
  background: rgba(240, 89, 46, 0.7);
  padding: 15px 38px;
  margin-right: 13px;
  text-align: center;
  line-height: 20px;
}
.create-block__left .preview-step__container .text-wrapper .inside-buttons .share-button {
  cursor: pointer;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 0px 24px 24px 24px;
  border: 1.5px solid rgba(4, 100, 147, 0.7);
  color: rgba(4, 100, 147, 0.7);
}
.create-block__left .preview-step__container .text-wrapper .inside-buttons .share-button img {
  margin-right: 12px;
  opacity: 0.7;
  max-width: 17px;
  max-height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
.create-block__left .preview-step .buttons {
  margin-top: 16px;
  margin-bottom: 70px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  width: 100%;
}
.create-block__left .preview-step .buttons .button-prev {
  max-width: 260px;
  padding: 19px 43px;
  border: 2px solid #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.create-block__left .preview-step .buttons .button-prev:hover {
  background: #FFFFFF;
  color: #5199C0;
}
.create-block__left .preview-step .buttons .button-next {
  max-width: 260px;
  padding: 19px 43px;
  background: #F0592E;
  border: 2px solid #F0592E;
  border-radius: 32px 0px 32px 32px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  min-width: 210px;
}
.create-block__left .preview-step .buttons .button-next .loading {
  display: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.create-block__left .preview-step .buttons .button-next .loading .line {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #FFFFFF;
}
.create-block__left .preview-step .buttons .button-next .loading .load-3 {
  margin-top: 10px;
}
.create-block__left .preview-step .buttons .button-next .loading .load-3 .line:nth-last-child(1) {
  -webkit-animation: loadingC 1.2s 0.1s linear infinite;
          animation: loadingC 1.2s 0.1s linear infinite;
}
.create-block__left .preview-step .buttons .button-next .loading .load-3 .line:nth-last-child(2) {
  -webkit-animation: loadingC 1.2s 0.2s linear infinite;
          animation: loadingC 1.2s 0.2s linear infinite;
}
.create-block__left .preview-step .buttons .button-next .loading .load-3 .line:nth-last-child(3) {
  -webkit-animation: loadingC 1.2s 0.3s linear infinite;
          animation: loadingC 1.2s 0.3s linear infinite;
}
.create-block__left .preview-step .buttons .button-next:disabled {
  opacity: 0.5;
}
.create-block__right {
  margin-top: 142px;
  margin-bottom: 146px;
  max-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border-radius: 46.0385px;
  padding-top: 43px;
  padding-bottom: 43px;
  padding-right: 51px;
  padding-left: 51px;
  transform: translateX(200px);
  transition: transform 2s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .create-block__right {
    transform: translateX(0);
  }
}
.create-block__right.animated {
  transform: translateX(0);
}
.create-block__right .step + .step {
  margin-top: 16px;
}
.create-block__right .step {
  max-width: 436px;
  width: 100%;
  display: flex;
  justify-content: center;
  border: 2px solid #046493;
  border-radius: 32px;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 184px;
}
.create-block__right .step.active {
  border: 2px solid transparent;
  background: #F0592E;
  color: #FFFFFF;
}
.create-block__right .step.done {
  border: 2px solid transparent;
  background: #046493;
  color: #FFFFFF;
}
.create-block__right .step.preview {
  border: 2px solid #F0592E;
  background: transparent;
  color: #F0592E;
}

@media screen and (min-width: 980px) and (max-width: 1310px) {
  .create-block__right {
    margin-right: 51px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .create-block__right .step {
    max-width: 310px;
    padding: 18px 116px;
  }

  .create-block__left .first-step {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1440px) {
  .create-block__left .first-step .button {
    text-align: center;
    padding: 19px 92px;
  }

  .create-block__left .first-step select {
    max-width: 100%;
  }

  .create-block__left {
    padding-right: 70px;
  }

  .button-prev {
    text-align: center;
    margin-right: 5px;
    line-height: 20px;
  }

  .button-next {
    text-align: center;
    margin-left: 5px;
    line-height: 20px;
  }

  .create-block__left .preview-step__container {
    width: 840px;
  }
}
@media screen and (max-width: 980px) {
  .create-block {
    max-width: 1400px;
    background: #5199C0;
    margin-left: 0;
    margin-bottom: 40px;
    border-radius: 0px 0px 32px 32px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .create-block__left .top-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    max-width: 90vw;
    margin-bottom: 25px;
  }

  .create-block__left {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .create-block__left .first-step .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    max-width: 90vw;
    text-align: center;
  }

  .create-block__left .first-step .input-row {
    width: 100%;
    max-width: 560px;
    margin-bottom: 20px;
  }

  .create-block__left .first-step .select-row::after {
    bottom: 18px;
  }

  .create-block__left .first-step .input-row #name-error {
    bottom: 50px;
  }

  .create-block__left .first-step .input-row input {
    margin-top: 40px;
    width: 100%;
    padding-left: 32px;
    margin-bottom: 0;
    height: 48px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    background: #FFFFFF;
    border: none;
    color: #046493;
    border-radius: 32px 32px 0px 0px;
  }
  .create-block__left .first-step .input-row input::-moz-placeholder {
    font-size: 14px;
  }
  .create-block__left .first-step .input-row input:-ms-input-placeholder {
    font-size: 14px;
  }
  .create-block__left .first-step .input-row input::placeholder {
    font-size: 14px;
  }

  .create-block__left .first-step .select-row {
    width: 100%;
    position: relative;
    bottom: 18px;
  }

  .create-block__left .first-step .button {
    border: 2px solid #FFFFFF;
    border-radius: 0px 0px 32px 32px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
    padding: 0;
    color: #FFFFFF;
    cursor: pointer;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .create-block__left .first-step {
    align-items: center;
  }

  .create-block__left .first-step select {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: none;
    color: rgba(4, 100, 147, 0.35);
    padding-left: 32px;
    position: relative;
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .create-block__left .first-step select::-moz-placeholder {
    font-size: 14px;
  }
  .create-block__left .first-step select:-ms-input-placeholder {
    font-size: 14px;
  }
  .create-block__left .first-step select::placeholder {
    font-size: 14px;
  }

  .create-block__right {
    padding: 30px;
    max-width: 300px;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .create-block__right .step {
    max-width: 300px;
    padding: 12px 90px;
    font-size: 14px;
  }

  .create-block__right .step + .step {
    margin-top: 12px;
  }

  .create-block__left .second-step .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    max-width: 90vw;
    text-align: center;
  }

  .create-block__left .second-step textarea {
    margin-top: 30px;
    width: 90vw;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
  }

  .create-block__left .second-step .buttons {
    margin-top: 16px;
    font-weight: bold;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    text-align: center;
  }

  .create-block__left .second-step .buttons .button-next {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .second-step .buttons .button-prev {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
  }

  .create-block__left .second-step .target {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .create-block__left .second-step .target::before {
    position: absolute;
    top: 49px;
    left: 50%;
    transform: translate(-50%, 0px);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(4, 100, 147, 0.4);
  }

  .create-block__left .third-step .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    max-width: 90vw;
    text-align: center;
  }

  .create-block__left .third-step .buttons .button-next {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .third-step .buttons .button-prev {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .third-step input {
    margin-top: 40px;
    width: 100%;
    padding-left: 32px;
    margin-bottom: 0px;
    height: 48px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: none;
    color: #046493;
    border-radius: 32px 32px 0px 0px;
  }
  .create-block__left .third-step input::-moz-placeholder {
    font-size: 14px;
  }
  .create-block__left .third-step input:-ms-input-placeholder {
    font-size: 14px;
  }
  .create-block__left .third-step input::placeholder {
    font-size: 14px;
  }

  .create-block__left .fourth-step .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    max-width: 90vw;
    text-align: center;
  }

  .create-block__left .fourth-step .buttons .button-next {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .fourth-step .buttons .button-prev {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .fourth-step input {
    margin-top: 20px;
    width: 100%;
    padding-left: 32px;
    margin-bottom: 0px;
    height: 48px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: none;
    color: #046493;
    border-radius: 32px 32px 0px 0px;
  }
  .create-block__left .fourth-step input::-moz-placeholder {
    font-size: 14px;
  }
  .create-block__left .fourth-step input:-ms-input-placeholder {
    font-size: 14px;
  }
  .create-block__left .fourth-step input::placeholder {
    font-size: 14px;
  }

  .create-block__left .fourth-step .buttons {
    margin-bottom: 0;
  }

  .create-block__left .fourth-step {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .create-block__left .preview-step__container {
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 490px;
    margin: 0 auto;
    width: 90vw;
  }

  .create-block__left .preview-step__container .img-wrapper {
    width: 100%;
    position: relative;
    margin-right: 0;
    border-radius: 0px 0px 24px 24px;
    max-height: 265px;
    overflow: hidden;
  }

  .create-block__left .preview-step__container .text-wrapper .down-text {
    font-weight: 400;
    font-size: 11.8496px;
    line-height: 15px;
    color: #046493;
    max-width: 300px;
    text-align: center;
  }

  .create-block__left .preview-step__container .text-wrapper .upper-text {
    margin-top: 27px;
    margin-bottom: 11px;
    font-weight: bold;
    font-size: 17.7744px;
    color: #046493;
    text-transform: uppercase;
    max-width: 300px;
    text-align: center;
  }

  .create-block__left .preview-step__container .text-wrapper {
    margin-right: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .create-block__left .preview-step__container .text-wrapper .inside-buttons {
    flex-direction: column;
    margin-top: 25px;
  }

  .create-block__left .preview-step__container .text-wrapper .inside-buttons .share-button {
    margin-top: 15px;
  }

  .create-block__left .preview-step__container .text-wrapper .inside-buttons .help-button {
    margin-right: 0;
  }

  .create-block__left .preview-step__container .text-wrapper .count .line {
    margin-top: 10px;
    height: 6px;
    max-width: 260px;
    width: 100%;
  }

  .create-block__left .preview-step {
    width: 90vw;
  }

  .create-block__left .preview-step .buttons {
    max-width: 490px;
    margin: 0 auto;
  }

  .create-block__left .preview-step__container .text-wrapper .count {
    background: #046493;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    height: 60px;
    width: 300px;
  }

  .create-block__left .preview-step__container .text-wrapper .count .text {
    margin-top: 13px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    color: #FFFFFF;
  }

  .create-block__left .preview-step__container .text-wrapper .count .text span {
    font-size: 11px;
    font-weight: 700;
    line-height: 11px;
  }

  .create-block__left .preview-step .buttons .button-prev {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .preview-step .buttons .button-next {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 48%;
    cursor: pointer;
    font-size: 13px;
  }

  .create-block__left .preview-step .buttons {
    margin-top: 16px;
  }

  .create-block__left .first-step .select-row .select2-container--classic .select2-selection--single {
    height: 48px;
    font-size: 14px;
  }

  .create .error {
    font-size: 12px;
  }

  .croppie-container .cr-boundary {
    width: 300px !important;
    margin: 0;
  }

  .croppie-container .cr-slider-wrap input {
    margin-top: 0;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
  }

  #upload-image {
    width: 300px !important;
  }

  .create-block__left .preview-step .buttons .button-next {
    width: 162px;
    min-width: auto;
    max-width: none;
  }
}
@-webkit-keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.campania-wrapper {
  display: flex;
  justify-content: center;
}
.campania-container {
  max-width: 1440px;
  width: 100%;
}
.campania-container__block {
  margin-left: 40px;
  margin-bottom: 32px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 47px;
  display: flex;
  flex-direction: column;
}
.campania-container__block-topBlock {
  border-radius: 32px 32px 0px 0px;
  display: flex;
  background: #FFFFFF;
}
.campania-container__block-topBlock .img-wrapper {
  border-radius: 32px 0px 0px 0px;
  overflow: hidden;
  max-width: 650px;
  width: 100%;
  margin-right: 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.campania-container__block-topBlock .img-wrapper .person {
  position: absolute;
  top: 15px;
  left: 21px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #046493;
  border-radius: 24px;
  z-index: 2;
}
.campania-container__block-topBlock .img-wrapper .person-image {
  width: 42px;
  height: 42px;
}
.campania-container__block-topBlock .img-wrapper .person-image img {
  max-width: 42px;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #046493;
}
.campania-container__block-topBlock .img-wrapper .person-name {
  padding-left: 15px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 11.8496px;
  line-height: 15px;
  color: #046493;
}
.campania-container__block-topBlock .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.campania-container__block-topBlock .text-wrapper {
  margin-top: 40px;
  margin-right: 44px;
  display: flex;
  flex-direction: column;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons {
  margin-top: 72px;
  display: flex;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .help-button {
  cursor: pointer;
  color: #FFFFFF;
  border-radius: 0px 24px 24px 24px;
  background: #F0592E;
  padding: 25px 53px;
  margin-right: 31px;
  border: 2px solid transparent;
  text-align: center;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .help-button:hover {
  border: 2px solid #F0592E;
  background: #ffffff;
  color: #F0592E;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .share-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 22px 36px;
  border: 1.5px solid #046493;
  color: #046493;
  border-radius: 0px 32px 32px 32px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .share-button:hover {
  background: #046493;
  color: #FFFFFF;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .share-button:hover svg path {
  fill: #FFFFFF;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .share-button svg {
  margin-right: 16px;
  max-width: 24px;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons .share-button svg path {
  transition: fill 0.3s ease;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons #share {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -10px;
  right: 0;
  bottom: 0;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons #share .jssocials-share:last-child {
  width: 100%;
  height: 68px;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons #share a {
  width: 100%;
  height: 100%;
}
.campania-container__block-topBlock .text-wrapper .inside-buttons #share a i {
  opacity: 0;
  visibility: hidden;
}
.campania-container__block-topBlock .text-wrapper .count {
  background: #046493;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  padding: 20px 0;
  min-width: 540px;
}
.campania-container__block-topBlock .text-wrapper .count .text {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 80%;
  text-align: center;
}
.campania-container__block-topBlock .text-wrapper .count .text span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.campania-container__block-topBlock .text-wrapper .count .line {
  margin-top: 15px;
  height: 6px;
  max-width: 436px;
  width: 100%;
}
.campania-container__block-topBlock .text-wrapper .count .line .progress {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  margin-bottom: 14px;
  position: relative;
}
.campania-container__block-topBlock .text-wrapper .count .line .progress_active {
  position: absolute;
  background: #ffffff;
  height: 8px;
  width: 0;
  border-radius: 4px;
  transition: width 1.5s ease;
}
.campania-container__block-topBlock .text-wrapper .count .line .progress_procent {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-weight: 500;
  max-width: 46px;
  font-size: 12px;
  color: #046493;
  padding: 4px 6px;
  background: #ffffff;
  border-radius: 5px;
  transition: left 1.5s ease;
  white-space: nowrap;
}
.campania-container__block-topBlock .text-wrapper .top-text {
  margin-top: 36px;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  color: #046493;
  word-break: break-word;
}
.campania-container__block-topBlock .text-wrapper .bot-text {
  margin-top: 16px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  max-width: 540px;
}
.campania-container__block-topBlock .text-wrapper .bot-text p {
  margin-top: 16px;
  font-weight: normal;
  font-size: 16px;
  word-break: break-word;
  line-height: 20px;
}
.campania-container__block-botBlock {
  background: #EBF8F9;
  border-radius: 0px 0px 32px 32px;
}
.campania-container__block-botBlock .top-text {
  margin-top: 27px;
  margin-bottom: 44px;
  margin-left: 48px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
}
.campania-container__block-botBlock .donates {
  margin-left: 84px;
  max-width: 1136px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.campania-container__block-botBlock .donates .person_wrapper {
  color: #046493;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  margin-bottom: 40px;
  padding-right: 85px;
}
.campania-container__block-botBlock .donates .person_wrapper .person {
  display: flex;
  justify-content: space-between;
}
.campania-container__block-botBlock .donates .person_wrapper .person .date {
  font-weight: 300;
  font-size: 16px;
}
.campania-container__block-botBlock .donates .person_wrapper .person .name {
  max-width: 327px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  padding-left: 48px;
  text-transform: uppercase;
}
.campania-container__block-botBlock .donates .person_wrapper .person .count {
  font-weight: bold;
  font-size: 16px;
}
.campania-container__block-botBlock .donates .person_wrapper .comment {
  margin-top: 16px;
  font-weight: normal;
  font-size: 16px;
  max-width: 520px;
}
.campania-container__block-botBlock .bot-line {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}
.campania-container__block-botBlock .bot-line nav {
  display: flex;
}
.campania-container__block-botBlock .bot-line nav a {
  text-decoration: none;
  color: #FFFFFF;
}
.campania-container__block-botBlock .bot-line nav .active {
  color: #FFFFFF;
  position: relative;
  margin-right: 15px;
  margin-left: 15px;
}
.campania-container__block-botBlock .bot-line nav .active span {
  position: relative;
  z-index: 3;
}
.campania-container__block-botBlock .bot-line nav .active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 42px;
  height: 36px;
  background: url("/themes/default/img/page-num.svg") no-repeat;
  background-size: contain;
  z-index: 0;
}
.campania-container__block-botBlock .bot-line nav li {
  display: inline;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  cursor: pointer;
  list-style: none;
  margin-left: 20px;
  margin-right: 20px;
}
.campania-container__block-botBlock .bot-line nav li:first-child {
  margin-right: 10px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .campania-container__block-topBlock .text-wrapper .inside-buttons {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 980px) {
  .campania-container__block {
    margin-left: 0;
    border-radius: 0px 0px 32px 32px;
    padding: 30px;
  }

  .campania-container__block-topBlock {
    flex-direction: column;
    align-items: center;
    max-width: 490px;
    margin: 0 auto;
    width: 85vw;
    border-radius: 32px 32px 0 0;
  }

  .campania-container__block-topBlock .img-wrapper {
    margin-right: 0;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    max-height: 300px;
    position: relative;
    min-height: 300px;
  }
  .campania-container__block-topBlock .img-wrapper img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .campania-container__block-topBlock .text-wrapper .count {
    background: #046493;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    margin: 0 auto;
    min-width: auto;
  }

  .campania-container__block-topBlock .text-wrapper .count .text {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    color: #FFFFFF;
  }
  .campania-container__block-topBlock .text-wrapper .count .text span {
    font-size: 11px;
    font-weight: 700;
    line-height: 11px;
  }

  .campania-container__block-topBlock .text-wrapper {
    margin-right: 0px;
    max-width: 80vw;
    margin-top: 25px;
  }

  .campania-container__block-topBlock .text-wrapper .top-text {
    text-align: center;
    font-size: 16px;
    margin-top: 25px;
  }

  .campania-container__block-topBlock .text-wrapper .count .line {
    max-width: 80%;
  }

  .campania-container__block-topBlock .text-wrapper .bot-text {
    font-size: 14px;
    line-height: 18px;
    padding: 0 30px;
    text-align: center;
  }
  .campania-container__block-topBlock .text-wrapper .bot-text p {
    font-size: 14px;
    line-height: 18px;
  }

  .campania-container__block-topBlock .text-wrapper .inside-buttons {
    flex-direction: column;
    margin-top: 25px;
    padding-bottom: 32px;
    display: flex;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    align-items: center;
  }

  .campania-container__block-topBlock .text-wrapper .inside-buttons .help-button {
    cursor: pointer;
    color: #FFFFFF;
    border-radius: 0px 24px 24px 24px;
    background: #F0592E;
    padding: 19px 38px;
    margin-right: 0;
  }

  .campania-container__block-topBlock .text-wrapper .inside-buttons .share-button {
    cursor: pointer;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0px 24px 24px 24px;
    border: 1.5px solid rgba(4, 100, 147, 0.7);
    color: rgba(4, 100, 147, 0.7);
    margin-top: 15px;
  }

  .campania-container__block-botBlock {
    flex-direction: column;
    align-items: center;
    max-width: 490px;
    width: 85vw;
    margin: 0 auto;
  }

  .campania-container__block-botBlock .donates .person_wrapper {
    color: #046493;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .campania-container__block-botBlock .top-text {
    margin-top: 27px;
    margin-bottom: 24px;
    margin-left: 48px;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #046493;
  }

  .campania-container__block-botBlock .donates .person_wrapper .person .date {
    font-size: 11px;
  }

  .campania-container__block-botBlock .donates .person_wrapper .person .name {
    font-size: 11px;
    padding-left: 20px;
    max-width: 130px;
  }

  .campania-container__block-botBlock .donates .person_wrapper .person .count {
    font-size: 11px;
  }

  .campania-container__block-botBlock .donates {
    max-width: 80vw;
    margin-left: 0;
    margin: 0 auto;
    overflow-y: scroll;
    height: 200px;
  }

  .campania-container__block-botBlock .donates .person_wrapper .comment {
    font-size: 11px;
  }

  .campania-container__block-topBlock .text-wrapper .count .line .back-line .procent {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(0%, -50%);
    font-weight: 500;
    max-width: 46px;
    font-size: 11px;
    line-height: 17px;
    color: #046493;
    padding: 0px 4px;
    background: #FFFFFF;
    border-radius: 5px;
  }

  .campania-container__block-botBlock .bot-line nav li:first-child {
    margin-left: 10px;
  }
  .campania-container__block-botBlock .bot-line nav {
    width: 85%;
    display: flex;
    justify-content: center;
  }
  .campania-container__block-botBlock .bot-line nav .active:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 26px;
    background-size: contain;
    z-index: 0;
  }
  .campania-container__block-botBlock .bot-line nav li + li {
    margin-left: 5px;
    margin-right: 5px;
  }

  /*.campania-container__block-botBlock .bot-line ul li {
    font-size: 12px;
  }
  .campania-container__block-botBlock .bot-line {
  }
  .campania-container__block-botBlock .bot-line .active::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .campania-container__block-botBlock .bot-line li + li {
    margin-left: 5px;
    margin-right: 5px;
  }*/
  .campania-container__block-botBlock .bot-line {
    margin: 20px auto;
  }

  .campania-container__block-topBlock .text-wrapper .count {
    width: 300px;
    padding: 12px 0;
  }

  .campania-container__block-topBlock .text-wrapper .count .line .progress {
    height: 6px;
  }

  .campania-container__block-topBlock .text-wrapper .count .line .progress_active {
    height: 6px;
  }

  .campania-container__block-topBlock .text-wrapper .count .line .progress_procent {
    font-size: 10px;
    padding: 2px 6px;
  }
}
.faq-wrapper {
  display: flex;
  justify-content: center;
}
.faq-container {
  max-width: 1440px;
  width: 100%;
}
.faq-block {
  max-width: 1400px;
  margin-bottom: 56px;
  width: 100%;
  margin-left: 40px;
  padding: 45px 52px 50px 51px;
  background: #EBF8F9;
  border-radius: 32px 0px 0px 32px;
}
.faq-block__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 33px;
}
.faq-block__line a {
  text-decoration: none;
}
.faq-block__line .text {
  font-weight: bold;
  font-size: 56px;
  color: #046493;
}
.faq-block__line .button {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 18px 29px 18px 39px;
  background: #046493;
  border-radius: 0px 32px 32px 32px;
  text-transform: uppercase;
  transition: 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.faq-block__line .button:hover {
  border: 2px solid #FFFFFF;
  color: #046493;
  background: #FFFFFF;
}
.faq-block__items {
  transform: translateY(200px);
  transition: transform 1.4s 0.3s ease;
}
@media only screen and (max-width: 980px) {
  .faq-block__items {
    transform: translateX(0);
  }
}
.faq-block__items.animated {
  transform: translateX(0);
}
.faq-block__items .item + .item {
  margin-top: 16px;
}
.faq-block__items .item {
  border-bottom: 1px solid rgba(4, 100, 147, 0.1);
  overflow: hidden;
  cursor: pointer;
}
.faq-block__items .item-top {
  padding: 18px 40px 18px 40px;
  width: 100%;
  position: relative;
}
.faq-block__items .item-top.active:before {
  transform: translateY(-50%) rotate(90deg);
}
.faq-block__items .item-top.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-block__items .item-top:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: #046493;
  transition: transform 0.3s ease;
}
.faq-block__items .item-top:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 2px;
  height: 12px;
  background: #046493;
  transition: transform 0.3s ease;
}
.faq-block__items .item-top p {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.faq-block__items .item-bot {
  display: none;
  width: 100%;
  padding: 12px 40px;
}
.faq-block__items .item-bot a {
  color: #046493;
}
.faq-block__items .item-bot p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.faq-form__wrapper {
  display: flex;
  justify-content: center;
}
.faq-form__container {
  max-width: 530px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 71px;
}
.faq-form__container input {
  width: 100%;
  border: 2px solid #046493;
  border-radius: 32px;
  padding: 19px 0px 19px 32px;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
}
.faq-form__container input::-moz-placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.faq-form__container input:-ms-input-placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.faq-form__container input::placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.faq-form__container .container__text {
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  margin-bottom: 16px;
}
.faq-form__container .container__pip {
  width: 100%;
  margin-bottom: 12px;
}
.faq-form__container .container__email {
  width: 100%;
  margin-bottom: 12px;
}
.faq-form__container .container__question {
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}
.faq-form__container .container__question textarea {
  width: 100%;
  border: 2px solid #046493;
  border-radius: 32px;
  padding: 19px 32px 0px 32px;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  height: 100px;
  resize: none;
  overflow: hidden;
  font-family: inherit;
}
.faq-form__container .container__question textarea::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.faq-form__container .container__question textarea:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.faq-form__container .container__question textarea::placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.faq-form__container .container__button {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  background: #F0592E;
  border-radius: 40px;
  padding: 18px 153px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.faq-form__container .container__button:hover {
  border: 2px solid #F0592E;
  color: #F0592E;
  background: #FFFFFF;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .faq-block {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 980px) {
  .faq-block {
    max-width: 1400px;
    margin-bottom: 56px;
    width: 100%;
    margin-left: 0;
    padding: 30px;
    border-radius: 0px 0px 32px 32px;
  }

  .faq-block__line .text {
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .faq-block__line {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }

  .faq-block__line .button {
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 15px 15px 15px;
    border-radius: 0px 32px 32px 32px;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: 2px solid transparent;
    margin-top: 25px;
    max-width: 143px;
  }

  .faq-block__items .item-top p {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
  }

  .faq-block__items .item-bot p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #046493;
  }

  .faq-form__container .container__text {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    color: #046493;
    margin-bottom: 16px;
  }

  .faq-form__container input {
    width: 100%;
    border: 2px solid #046493;
    border-radius: 32px;
    padding: 15px 0px 15px 32px;
    font-weight: bold;
    font-size: 14px;
    color: #046493;
  }
  .faq-form__container input::-moz-placeholder {
    font-size: 14px;
  }
  .faq-form__container input:-ms-input-placeholder {
    font-size: 14px;
  }
  .faq-form__container input::placeholder {
    font-size: 14px;
  }

  .faq-form__container {
    padding: 0 30px;
  }

  .faq-form__container .container__question::before {
    font-size: 14px;
  }

  .faq-form__container .container__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    background: #F0592E;
    border-radius: 40px;
    padding: 0;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%;
  }

  .faq-form__container .container__question textarea {
    font-size: 14px;
  }
}
.politica a {
  color: #046493;
}
.politica-wrapper {
  display: flex;
  justify-content: center;
}
.politica-container {
  max-width: 1440px;
  width: 100%;
}
.politica-block {
  max-width: 1400px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px 78px 52px;
  margin-left: 40px;
}
.politica-block__text {
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 36px;
}
.politica-block__inside {
  color: #046493;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px 35px 60px 45px;
  font-size: 16px;
  transition: transform 1.4s ease;
  transform: translateY(300px);
}
@media only screen and (max-width: 980px) {
  .politica-block__inside {
    transform: translateY(0);
  }
}
.politica-block__inside.animated {
  transform: translateY(0);
}
.politica-block__inside__title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 85px;
}
.politica-block__inside__introduction {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.politica-block__inside__introduction strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.politica-block__inside__links .top-text {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.politica-block__inside__links .link {
  margin-top: 32px;
}
.politica-block__inside__links .link a {
  color: #046493;
}
.politica-block__inside__links .link ul li {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}
.politica-block__inside__text {
  margin-top: 40px;
  margin-bottom: 40px;
}
.politica-block__inside__text .mainText {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.politica-block__inside__text .downText {
  font-weight: 400;
  line-height: 24px;
}
.politica-block__inside__text .downText ul {
  list-style-type: disc;
  list-style-position: inside;
}
.politica-block__inside__text .downText ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.politica-block__inside__text .downText ul ul, .politica-block__inside__text .downText ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.politica-block__inside__text .downText ol ol, .politica-block__inside__text .downText ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.politica-block__inside__text .downText table {
  width: 100% !important;
}
.politica-block__inside__text .downText table td {
  border-color: #046493 !important;
  padding: 0 20px;
}
.politica-block__inside__text .downText table td span {
  color: #046493 !important;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .politica {
    width: calc(100% - 40px);
  }
  .politica-block__text {
    font-size: 52px;
  }
}
@media screen and (max-width: 980px) {
  .politica-block {
    max-width: 1400px;
    background: #5199C0;
    border-radius: 0px 0px 32px 32px;
    padding: 30px;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .politica-block__inside {
    padding: 25px;
  }

  .politica-block__text {
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 36px;
    text-align: left;
  }

  .politica-block__inside__title {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 35px;
  }

  .politica-block__inside__introduction {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .politica-block__inside__introduction span {
    font-size: 14px;
  }

  .politica-block__inside__links .top-text {
    font-size: 18px;
  }

  .politica-block__inside__links .link ul li {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
  }

  .politica-block__inside__text .mainText {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .politica-block__inside__text .downText {
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
  }

  .politica-block__inside__text {
    margin-bottom: 40px;
  }

  .politica-block__inside__text .downText table td {
    padding: 0 5px;
  }
  .politica-block__inside__text .downText table td span {
    font-size: 11px;
    line-height: 13px;
  }
}
.howto-wrapper {
  display: flex;
  justify-content: center;
}
.howto-container {
  max-width: 1440px;
  width: 100%;
  overflow: hidden;
}
.howto-container__firstblock {
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  background: #EBF8F9;
  border-radius: 32px 0px 0px 32px;
  padding-top: 48px;
  padding-bottom: 56px;
  padding-left: 37px;
  padding-right: 73px;
  margin-bottom: 41px;
  transition: transform 1.4s ease;
  transform: translateX(300px);
}
@media only screen and (max-width: 980px) {
  .howto-container__firstblock {
    transform: translateX(0);
  }
}
.howto-container__firstblock.animated {
  transform: translateX(0);
}
.howto-container__firstblock__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.howto-container__firstblock__line a {
  text-decoration: none;
}
.howto-container__firstblock__line .left-text {
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  color: #046493;
}
.howto-container__firstblock__line .button {
  margin-right: 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #5199C0;
  padding: 18px 25px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.howto-container__firstblock__line .button:hover {
  border: 2px solid #5199C0;
  background: #FFFFFF;
  color: #5199C0;
}
.howto-container__firstblock__slider {
  max-width: 1186px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.howto-container__firstblock__slider .slider-card {
  height: 355px;
  margin-left: 17px;
  margin-right: 17px;
  width: 100%;
  border-radius: 0px 0px 0px 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+1) {
  justify-content: flex-start;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+1) .text-wrap {
  border-radius: 0px 24px 0px 0px;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+2) {
  justify-content: center;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+2) .text-wrap {
  border-radius: 24px 24px 0px 0px;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+3) {
  justify-content: flex-end;
}
.howto-container__firstblock__slider .slider-card:nth-child(3n+3) .text-wrap {
  border-radius: 24px 0px 0px 0px;
}
.howto-container__firstblock__slider .slider-card .img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.howto-container__firstblock__slider .slider-card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.howto-container__firstblock__slider .slider-card .text-wrap {
  width: 325px;
  height: 143px;
  padding-top: 19px;
  padding-left: 24px;
  padding-right: 24px;
  background: #046493;
  border-radius: 0px 24px 0px 0px;
  color: white;
  position: relative;
  z-index: 2;
}
.howto-container__firstblock__slider .slider-card .text-wrap .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.howto-container__firstblock__slider .slider-card .text-wrap .text {
  font-size: 16px;
  line-height: 20px;
}
.howto-container__firstblock__slider .slider-card .text-wrap .text p {
  font-size: 16px;
  line-height: 20px;
}
.howto-container__firstblock__slider .slider-card .text-wrap .text a {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: underline;
}
.howto-container__firstblock__slider .slider-arrow-prev {
  position: absolute;
  margin-right: 32px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translate(0, -50%);
}
.howto-container__firstblock__slider .slider-arrow-next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  right: -32px;
  transform: translate(0, -50%);
}
.howto-container__firstblock__slider .slider-arrow-next img {
  transform: rotate(180deg);
}
.howto-container__secondblock {
  max-width: 1400px;
  width: 100%;
  margin-right: 40px;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 0px;
  padding-top: 48px;
  padding-bottom: 56px;
  padding-left: 52px;
  padding-right: 73px;
  margin-bottom: 41px;
  transition: transform 1.4s ease;
  transform: translateX(-300px);
}
@media only screen and (max-width: 980px) {
  .howto-container__secondblock {
    transform: translateX(0);
  }
}
.howto-container__secondblock.animated {
  transform: translateX(0);
}
.howto-container__secondblock__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.howto-container__secondblock__line a {
  text-decoration: none;
}
.howto-container__secondblock__line .left-text {
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  color: #046493;
}
.howto-container__secondblock__line .button {
  margin-right: 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  padding: 18px 24px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.howto-container__secondblock__line .button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.howto-container__secondblock__items .item + .item {
  margin-top: 16px;
}
.howto-container__secondblock__items .item {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 21px;
  padding-right: 21px;
}
.howto-container__secondblock__items .item-number {
  font-weight: bold;
  font-size: 32px;
  color: #046493;
  margin-right: 23px;
}
.howto-container__secondblock__items .item-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.howto-container__thirdblock {
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  background: #EBF8F9;
  border-radius: 32px 0px 0px 32px;
  padding-top: 48px;
  padding-bottom: 56px;
  padding-left: 52px;
  padding-right: 73px;
  margin-bottom: 41px;
  transition: transform 1.4s ease;
  transform: translateX(300px);
}
@media only screen and (max-width: 980px) {
  .howto-container__thirdblock {
    transform: translateX(0);
  }
}
.howto-container__thirdblock.animated {
  transform: translateX(0);
}
.howto-container__thirdblock__line {
  margin-bottom: 32px;
}
.howto-container__thirdblock__line .left-text {
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  color: #046493;
}
.howto-container__thirdblock__line .button {
  margin-right: 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  padding: 18px 24px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
}
.howto-container__thirdblock__items {
  display: flex;
}
.howto-container__thirdblock__items .item + .item {
  margin-left: 16px;
}
.howto-container__thirdblock__items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #F0592E;
  max-width: 299px;
  padding-top: 70px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  border-radius: 0px 0px 0px 24px;
}
.howto-container__thirdblock__items .item-img {
  max-width: 116px;
  width: 100%;
  height: 116px;
  margin-bottom: 37px;
}
.howto-container__thirdblock__items .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.howto-container__thirdblock__items .item-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 234px;
  text-align: center;
  text-transform: uppercase;
}
.howto-container__thirdblock__items .item.blue {
  background: #046493;
}
.howto-container__thirdblock__items .item.orange {
  background: #F0592E;
}
.howto-container__thirdblock__items .item.aqua {
  background: #67C6D7;
}
.howto-container__thirdblock__items .item.yellow {
  background: #F5C95C;
}
.howto-container__fourthblock {
  width: 100%;
  border-radius: 32px 0px 0px 32px;
  padding-bottom: 56px;
  padding-left: 73px;
  padding-right: 73px;
  margin-bottom: 41px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 1.4s ease;
  transform: translateX(-300px);
}
@media only screen and (max-width: 980px) {
  .howto-container__fourthblock {
    transform: translateX(0);
  }
}
.howto-container__fourthblock.animated {
  transform: translateX(0);
}
.howto-container__fourthblock__line {
  margin-bottom: 32px;
}
.howto-container__fourthblock__line .left-text {
  padding-left: 40px;
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  color: #046493;
}
.howto-container__fourthblock__slider {
  max-width: 1186px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.howto-container__fourthblock__slider .slider-card {
  margin-left: 17px;
  margin-right: 17px;
  width: 100%;
  border-radius: 0px 0px 0px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}
.howto-container__fourthblock__slider .slider-card .img-wrap {
  max-width: 300px;
  max-height: 300px;
}
.howto-container__fourthblock__slider .slider-card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.howto-container__fourthblock__slider .slider-card .text-wrap {
  max-width: 238px;
  color: white;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.howto-container__fourthblock__slider .slider-card .text-wrap .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  margin-bottom: 8px;
  text-align: center;
}
.howto-container__fourthblock__slider .slider-card .text-wrap .text {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.howto-container__fourthblock__slider .slider-card .text-wrap .subtitle {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-top: 15px;
  color: #046493;
}
.howto-container__fourthblock__slider .slider-card .text-wrap .subtitle p {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-top: 15px;
  color: #046493;
}
.howto-container__fourthblock__slider .slider-arrow-prev {
  position: absolute;
  margin-right: 32px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translate(0, -50%);
}
.howto-container__fourthblock__slider .slider-arrow-next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  right: -32px;
  transform: translate(0, -50%);
}
.howto-container__fourthblock__slider .slider-arrow-next img {
  transform: rotate(180deg);
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .howto-container__firstblock {
    width: calc(100vw - 40px);
  }
  .howto-container__firstblock__slider .slider-card .text-wrap .text {
    line-height: 16px;
  }
  .howto-container__firstblock__slider .slider-card .text-wrap .text a {
    line-height: 16px;
  }
  .howto-container__firstblock__slider .slider-card .text-wrap .text p {
    line-height: 16px;
  }
  .howto-container__firstblock__line .button {
    max-height: 75px;
    text-align: center;
  }
  .howto-container__secondblock {
    width: calc(100vw - 40px);
  }
  .howto-container__secondblock__line .button {
    max-height: 75px;
    text-align: center;
  }
  .howto-container__thirdblock {
    width: calc(100vw - 40px);
  }
  .howto-container__thirdblock__items .item {
    padding-top: 30px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .howto-container__thirdblock__items .item-text {
    line-height: 17px;
    font-size: 15px;
  }
  .howto-container__thirdblock__items .item-img {
    width: 80px;
  }
  .howto-container__fourthblock {
    width: calc(100vw - 40px);
    padding-left: 103px;
  }
  .howto-container__fourthblock__line .left-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 980px) {
  .howto-container__firstblock {
    padding: 30px;
    margin-left: 0;
    border-radius: 0px 0px 32px 32px;
  }

  .howto-container__firstblock__line .left-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .howto-container__firstblock__line {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: center;
  }

  .howto-container__firstblock__line .button {
    margin-right: 0;
    margin-top: 20px;
    font-size: 14px;
    padding: 15px 20px;
  }

  .howto-container__firstblock__slider .slider-card .text-wrap .text {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
  }
  .howto-container__firstblock__slider .slider-card .text-wrap .text a {
    font-size: 16px;
    line-height: 20px;
  }
  .howto-container__firstblock__slider .slider-card .text-wrap .text p {
    font-size: 16px;
    line-height: 20px;
  }

  .howto-container__firstblock__slider .slider-arrow-next {
    right: -18px;
  }

  .howto-container__firstblock__slider .slider-arrow-prev {
    left: -18px;
  }

  .howto-container__secondblock {
    max-width: 1400px;
    width: auto;
    margin-right: 0;
    background: #5199C0;
    border-radius: 32px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 30px;
    margin-bottom: 41px;
  }

  .howto-container__secondblock__line .left-text {
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
    text-align: center;
  }

  .howto-container__secondblock__line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-direction: column;
    align-items: center;
  }

  .howto-container__secondblock__line .button {
    margin-right: 0;
    margin-top: 25px;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #F0592E;
    padding: 15px 20px;
  }

  .howto-container__secondblock__items .item-text {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #046493;
  }

  .howto-container__thirdblock {
    max-width: 1400px;
    width: auto;
    margin-left: 0;
    background: #EBF8F9;
    border-radius: 32px 0px 0px 32px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 30px;
  }

  .howto-container__thirdblock__line .left-text {
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    color: #046493;
    text-align: center;
  }

  .howto-container__thirdblock__items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .howto-container__thirdblock__items .item {
    border-radius: 24px;
    height: 275px;
    max-width: 275px;
    padding-top: 60px;
    margin: 15px;
  }

  .howto-container__thirdblock__items .item-text {
    font-size: 14px;
    line-height: 16px;
  }

  .howto-container__thirdblock__items .item-img {
    max-width: 85px;
    width: 100%;
    height: 85px;
    margin-bottom: 37px;
  }

  .howto-container__fourthblock__line .left-text {
    padding-left: 0;
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    color: #046493;
    text-align: center;
  }

  .howto-container__fourthblock__slider .slider-card .text-wrap .title {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #046493;
    margin-bottom: 8px;
    text-align: center;
  }

  .howto-container__fourthblock__slider .slider-card .text-wrap .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
  }

  .howto-container__fourthblock {
    margin-bottom: 0;
    padding: 30px;
  }

  .howto-container__fourthblock__slider .slider-arrow-next {
    right: -10px;
  }

  .howto-container__fourthblock__slider .slider-arrow-prev {
    left: -10px;
  }
}
.error-wrapper {
  display: flex;
  justify-content: center;
}
.error-container {
  max-width: 1440px;
  width: 100%;
}
.error-block {
  max-width: 1400px;
  max-height: 685px;
  height: 100%;
  margin-left: 40px;
  border-radius: 32px 0px 0px 32px;
  background: #EBF8F9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 243px;
  padding-bottom: 243px;
  margin-bottom: 48px;
}
.error-block__top {
  max-width: 650px;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 56px;
  color: #046493;
  text-align: left;
}
.error-block__bot {
  font-weight: bold;
  font-size: 40px;
  line-height: 48px;
  color: #046493;
  text-align: center;
  max-width: 615px;
}
.error-block a {
  text-decoration: none;
}
.error-block__button {
  margin-top: 30px;
  max-width: 246px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #046493;
  padding: 18px 66px;
  border-radius: 0px 32px 32px 32px;
  text-transform: uppercase;
}

@media screen and (max-width: 980px) {
  .error-container {
    margin-bottom: 40px;
  }

  .error-block {
    margin-left: 0;
    border-radius: 0 0 32px 32px;
    padding-bottom: 130px;
    padding-top: 130px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .error-block__top {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
  }

  .error-block__bot {
    margin-top: 15px;
    text-align: center;
    font-size: 35px;
    line-height: 35px;
  }

  .error-block__button {
    font-size: 14px;
    line-height: 14px;
  }
}
.cabinet a {
  text-decoration: none;
}
.cabinet-wrapper {
  display: flex;
  justify-content: center;
}
.cabinet-container {
  max-width: 1440px;
  width: 100%;
}
.cabinet-block {
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 50px;
  margin-bottom: 80px;
}
.cabinet-block__sub-title {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 50px;
}
.cabinet-block__whiteblock {
  max-width: 1305px;
  background: #FFFFFF;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 53px;
}
.cabinet-block__whiteblock__img-wrap {
  max-width: 364px;
  width: 100%;
  margin-right: 58px;
}
.cabinet-block__whiteblock__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cabinet-block__whiteblock__text-wrap {
  max-width: 830px;
  width: 100%;
}
.cabinet-block__whiteblock__text-wrap .top-text {
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cabinet-block__whiteblock__text-wrap .top-text__leftside .name {
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
  margin-bottom: 20px;
}
.cabinet-block__whiteblock__text-wrap .top-text__leftside .info {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #F0592E;
}
.cabinet-block__whiteblock__text-wrap .top-text__rightside a {
  text-decoration: none;
}
.cabinet-block__whiteblock__text-wrap .top-text__rightside .button {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  background: #046493;
  padding: 18px 37px;
  border-radius: 0px 32px 32px 32px;
  color: #FFFFFF;
  cursor: pointer;
  margin-bottom: 15px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.cabinet-block__whiteblock__text-wrap .top-text__rightside .button:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}
.cabinet-block__whiteblock__text-wrap .links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cabinet-block__whiteblock__text-wrap .links_link {
  margin-bottom: 8px;
  max-width: 350px;
  width: 100%;
  color: #046493;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
.cabinet-block__whiteblock__text-wrap .links_link span {
  font-weight: bold;
}
.cabinet-block__whiteblock__text-wrap .links_link span a {
  text-decoration: none;
  color: #046493;
  display: block;
  margin-top: 10px;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__toptext {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__toptext a {
  text-decoration: none;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__toptext .count {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #F0592E;
  text-transform: uppercase;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__toptext .check-all {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
  cursor: pointer;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items {
  display: flex;
  flex-wrap: wrap;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item {
  overflow: hidden;
  max-width: 389px;
  width: 100%;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 32px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item:hover .edit {
  opacity: 1;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-wrap {
  max-width: 412px;
  width: 100%;
  margin-bottom: 16px;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap {
  width: 130px;
  height: 130px;
  margin-right: 28px;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap {
  color: #046493;
  min-height: 72px;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
  max-width: 200px;
  word-break: break-word;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .sum {
  margin-top: 4px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap a {
  text-decoration: none;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit {
  opacity: 0;
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit img {
  margin-right: 8px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .cabinet-block {
    width: calc(100% - 40px);
  }
  .cabinet-block__whiteblock__text-wrap .top-text {
    align-items: flex-start;
  }
  .cabinet-block__whiteblock__text-wrap .top-text__leftside .name {
    line-height: 25px;
  }
  .cabinet-block__whiteblock__text-wrap .own-campanies__items {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 980px) {
  .cabinet-block__whiteblock {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    padding: 30px;
  }

  .cabinet-block {
    width: auto;
    padding: 30px;
    margin-left: 0;
    border-radius: 0px 0px 32px 32px;
    margin-bottom: 40px;
  }

  .cabinet-block__whiteblock__img-wrap {
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    margin-right: 0px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    min-height: 150px;
  }

  .cabinet-block__whiteblock__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .cabinet-block__whiteblock__text-wrap .top-text__leftside .name {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #046493;
    margin-bottom: 20px;
    order: 2;
    margin-top: 20px;
    text-align: center;
  }

  .cabinet-block__whiteblock__text-wrap .top-text__leftside .info {
    order: 1;
  }

  .cabinet-block__whiteblock__text-wrap .top-text__rightside .button {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    background: #046493;
    padding: 12px 37px;
    border-radius: 0px 32px 32px 32px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 0;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .cabinet-block__whiteblock__text-wrap .top-text {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .cabinet-block__whiteblock__text-wrap .top-text__leftside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cabinet-block__whiteblock__text-wrap .links_link {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .cabinet-block__whiteblock__text-wrap .links {
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .cabinet-block__sub-title {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 30px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__toptext .check-all {
    text-align: right;
    font-size: 15px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit {
    opacity: 1;
    display: flex;
    font-size: 12px;
    line-height: 15px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap {
    max-width: 107px;
    max-height: 107px;
    width: 100%;
    margin-right: 18px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .title {
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .sum {
    margin-top: 8px;
    font-weight: normal;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap {
    color: #046493;
    margin-right: 12px;
    padding: 10px 0;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items .item-wrap {
    max-width: 400px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__items {
    justify-content: center;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__toptext {
    margin-bottom: 15px;
  }

  .cabinet-block__whiteblock__text-wrap .own-campanies__toptext .count {
    font-size: 15px;
  }
}
.mycampanies-wrapper {
  display: flex;
  justify-content: center;
}
.mycampanies-container {
  max-width: 1440px;
  width: 100%;
}
.mycampanies-block {
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px;
  margin-bottom: 38px;
}
.mycampanies-block .top-text {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 50px;
}
.mycampanies-block .items {
  display: flex;
  flex-wrap: wrap;
}
.mycampanies-block .items .item {
  overflow: hidden;
  max-width: 389px;
  width: 100%;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 32px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mycampanies-block .items .item:hover .edit {
  opacity: 1;
}
.mycampanies-block .items .item-wrap {
  max-width: 412px;
  width: 100%;
  margin-bottom: 32px;
}
.mycampanies-block .items .item-img-wrap {
  width: 130px;
  height: 130px;
  margin-right: 28px;
}
.mycampanies-block .items .item-img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mycampanies-block .items .item-text-wrap {
  color: #046493;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mycampanies-block .items .item-text-wrap .title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
  max-width: 200px;
  word-break: break-word;
}
.mycampanies-block .items .item-text-wrap .sum {
  margin-top: 4px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}
.mycampanies-block .items .item-text-wrap a {
  text-decoration: none;
}
.mycampanies-block .items .item-text-wrap .edit {
  opacity: 0;
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.mycampanies-block .items .item-text-wrap .edit img {
  margin-right: 8px;
}
.mycampanies-block a {
  text-decoration: none;
}
.mycampanies-block .show-more {
  display: flex;
  justify-content: center;
}
.mycampanies-block .show-more span {
  height: 56px;
  background: #F0592E;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  border: 2px solid transparent;
  transition: 0.3s ease;
  max-width: 250px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .mycampanies-block {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 980px) {
  .mycampanies-block {
    max-width: 1400px;
    width: 100%;
    margin-left: 0;
    background: #5199C0;
    border-radius: 0 0 32px 32px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .mycampanies-block .top-text {
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
  }

  .mycampanies-block .items .item-text-wrap .edit {
    opacity: 1;
    display: flex;
    font-size: 12px;
    line-height: 15px;
  }

  .mycampanies-block .items .item-img-wrap {
    max-width: 107px;
    max-height: 107px;
    width: 100%;
    margin-right: 18px;
  }

  .mycampanies-block .items .item-text-wrap .title {
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .mycampanies-block .items .item-text-wrap .sum {
    margin-top: 8px;
    font-weight: normal;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
  }

  .mycampanies-block .items .item-text-wrap {
    color: #046493;
    margin-right: 12px;
    min-height: 60px;
  }

  .mycampanies-block .items .item-wrap {
    max-width: 330px;
    margin-bottom: 20px;
  }

  .mycampanies-block .items .item {
    max-width: 330px;
  }

  .mycampanies-block .items {
    justify-content: space-around;
  }

  .mycampanies-block .show-more span {
    font-size: 14px;
    height: 48px;
    width: 224px;
  }
}
.select2-results__option--selectable {
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  color: #046493;
  text-transform: uppercase;
  padding-left: 32px;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background: #046493;
}

.select2-container--classic .select2-results__option--disabled {
  display: none;
}

.select2-selection__arrow {
  display: none !important;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #046493;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border: 2px solid #046493 !important;
  border-top: 0 solid transparent !important;
  border-radius: 0 0 32px 32px !important;
  overflow: hidden;
}

.select2-container--classic .select2-selection--single {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 62px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493 !important;
  background: #FFFFFF !important;
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 0;
  overflow: hidden;
}

.editcabinet .alert {
  color: red;
  margin-left: 25px;
  margin-bottom: 5px;
}
.editcabinet-wrapper {
  display: flex;
  justify-content: center;
}
.editcabinet-container {
  max-width: 1440px;
  width: 100%;
}
.editcabinet-block {
  max-width: 1400px;
  width: 100%;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px;
  margin-bottom: 83px;
}
.editcabinet-block__title {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 49px;
}
.editcabinet-whiteblock {
  background: #FFFFFF;
  border-radius: 24px;
  padding-right: 52px;
  display: flex;
  overflow: hidden;
}
.editcabinet-whiteblock .img-wrap {
  max-width: 364px;
  margin-right: 58px;
  position: relative;
}
.editcabinet-whiteblock .img-wrap .new-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.editcabinet-whiteblock .img-wrap .new-photo input {
  opacity: 0;
  visibility: hidden;
}
.editcabinet-whiteblock .img-wrap .new-photo .change {
  text-align: center;
  position: absolute;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  width: 100%;
  padding: 18px 0px;
  bottom: 0;
  cursor: pointer;
  z-index: 10;
}
.editcabinet-whiteblock .img-wrap input {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.editcabinet-whiteblock .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.editcabinet-whiteblock .img-wrap .change {
  text-align: center;
  position: absolute;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  width: 100%;
  padding: 18px 0px;
  bottom: 0;
  cursor: pointer;
  z-index: 10;
}
.editcabinet-whiteblock .img-wrap .change-mob {
  display: none !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #F0592E;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.editcabinet-whiteblock .img-wrap .change-mob svg {
  width: 23px;
  height: 23px;
}
.editcabinet-whiteblock .img-wrap .change-mob svg path {
  fill: #FFFFFF;
}
.editcabinet-whiteblock .inputs {
  max-width: 530px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.editcabinet-whiteblock .inputs .top-text {
  max-width: 530px;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #F0592E;
  margin-bottom: 40px;
  margin-top: 36px;
  text-align: left;
}
.editcabinet-whiteblock .inputs input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
.editcabinet-whiteblock .inputs input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.editcabinet-whiteblock .inputs input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.editcabinet-whiteblock .inputs input::placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.editcabinet-whiteblock .inputs #profile-name {
  margin-top: 12px;
}
.editcabinet-whiteblock .inputs .select-row {
  position: relative;
  max-width: 530px;
  width: 100%;
}
.editcabinet-whiteblock .inputs .select-row::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url("/themes/default/img/arrow-down.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.editcabinet-whiteblock .inputs .select-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}
.editcabinet-whiteblock .inputs .select-row select option {
  color: #046493;
  font-weight: bold;
  font-size: 16px;
}
.editcabinet-whiteblock .inputs .social {
  max-width: 530px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.editcabinet-whiteblock .inputs .social .wrap {
  display: flex;
  justify-content: space-between;
}
.editcabinet-whiteblock .inputs .social .social-duplicate {
  max-width: 530px;
  justify-content: space-between;
  width: 100%;
}
.editcabinet-whiteblock .inputs .social input {
  width: 100%;
  max-width: 434px;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.editcabinet-whiteblock .inputs .button {
  max-width: 81px;
  max-height: 58px;
  font-size: 32px;
  text-transform: uppercase;
  padding-top: 12px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 16px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  cursor: pointer;
}
.editcabinet-whiteblock .button_save {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #046493;
  padding: 18px 51px;
  max-height: 56px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.editcabinet-whiteblock .button_save:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}
.editcabinet-whiteblock .button_save-wrap {
  margin-bottom: 30px;
  margin-left: 7%;
  display: flex;
  align-items: flex-end;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .editcabinet-block {
    width: calc(100% - 40px);
  }

  .editcabinet-whiteblock .button_save-wrap {
    margin-bottom: 15px;
    margin-left: 2%;
  }
}
@media screen and (max-width: 980px) {
  .editcabinet-block {
    max-width: 1400px;
    width: 100%;
    margin-left: 0;
    background: #5199C0;
    border-radius: 0px 0px 32px 32px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .editcabinet-block__title {
    font-weight: bold;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
  }

  .editcabinet-whiteblock {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .editcabinet-whiteblock .img-wrap {
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    margin-right: 0px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    min-height: 150px;
  }

  .editcabinet-whiteblock .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .editcabinet-whiteblock .img-wrap .change {
    display: none;
  }

  .editcabinet-whiteblock .img-wrap .change-mob {
    display: flex !important;
  }

  .editcabinet-whiteblock .inputs .top-text {
    max-width: 530px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #F0592E;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
  }

  .editcabinet-whiteblock .inputs .select-row select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    background: #FFFFFF;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .editcabinet-whiteblock .inputs input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .editcabinet-whiteblock .inputs .social input {
    width: 100%;
    max-width: 434px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 0;
  }

  .editcabinet-whiteblock .inputs .button {
    max-width: none;
    max-height: none;
    font-size: 23px;
    text-transform: uppercase;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    cursor: pointer;
    height: 45px;
    width: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
  }

  .editcabinet-whiteblock .button_save-wrap {
    margin-bottom: 0;
    margin-left: 0;
  }

  .editcabinet-whiteblock .button_save {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    border-radius: 0px 32px 32px 32px;
    background: #046493;
    padding: 10px 40px;
  }

  .editcabinet-whiteblock .inputs .social .wrap {
    margin-bottom: 13px;
  }
}
.editcabinet-whiteblock .inputs {
  align-items: flex-start;
}

.editcampania .error {
  color: #046493;
  margin-bottom: 5px;
}
.editcampania input.error {
  border: 2px solid red !important;
}
.editcampania textarea.error {
  border: 2px solid red !important;
}
.editcampania #youtube-link-error {
  position: absolute;
  left: 0;
  top: -25px;
}
.editcampania-wrapper {
  display: flex;
  justify-content: center;
}
.editcampania-container {
  max-width: 1440px;
  width: 100%;
}
.editcampania-container__block {
  max-width: 1400px;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 44px 47px;
  margin-bottom: 64px;
}
.editcampania-container__block .white {
  display: flex;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 64px;
}
.editcampania-container__block .white .img-wrap {
  width: 667px;
  position: relative;
  margin-right: 58px;
  cursor: pointer;
}
.editcampania-container__block .white .img-wrap .new-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.editcampania-container__block .white .img-wrap .new-photo input {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.editcampania-container__block .white .img-wrap .new-photo .change {
  text-align: center;
  position: absolute;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F0592E;
  width: 100%;
  padding: 18px 0px;
  bottom: 0;
  cursor: pointer;
  z-index: 10;
}
.editcampania-container__block .white .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.editcampania-container__block .white .text-wrap {
  max-width: 528px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.editcampania-container__block .white .text-wrap .top-text {
  margin-top: 37px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
}
.editcampania-container__block .white .text-wrap .input-row {
  position: relative;
  margin: 10px 0;
}
.editcampania-container__block .white .text-wrap .input-row #name-error {
  position: absolute;
  left: 0;
  top: -20px;
}
.editcampania-container__block .white .text-wrap input {
  font-family: inherit;
  width: 100%;
  border: 2px solid #046493;
  border-radius: 40px;
  padding: 19px 0px 19px 32px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.editcampania-container__block .white .text-wrap input::-moz-placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap input:-ms-input-placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap input::placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap .small {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
.editcampania-container__block .white .text-wrap .target {
  position: relative;
  margin: 10px 0;
}
.editcampania-container__block .white .text-wrap .target #target-error {
  position: absolute;
  left: 0;
  top: -20px;
}
.editcampania-container__block .white .text-wrap .small {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}
.editcampania-container__block .white .text-wrap textarea {
  font-family: inherit;
  margin-bottom: 12px;
  border: 2px solid #046493;
  border-radius: 29px;
  max-width: 560px;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 20px;
  height: 164px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  background: #FFFFFF;
  color: #046493;
  resize: none;
  overflow: hidden;
}
.editcampania-container__block .white .text-wrap textarea::-moz-placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap textarea:-ms-input-placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap textarea::placeholder {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.editcampania-container__block .white .text-wrap select {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.editcampania-container__block .white .text-wrap select option {
  color: #046493;
  font-weight: bold;
  font-size: 16px;
}
.editcampania-container__block .white .text-wrap .select-row {
  max-width: 560px;
  position: relative;
  margin-bottom: 16px;
}
.editcampania-container__block .white .text-wrap .select-row::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url("/themes/default/img/arrow-down.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.editcampania-container__block .white .text-wrap .last-line {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
  position: relative;
}
.editcampania-container__block .white .text-wrap .last-line #edit-sum-cabinet-error {
  position: absolute;
  left: 0;
  top: -20px;
}
.editcampania-container__block .white .text-wrap .last-line input {
  text-align: center;
  max-width: 253px;
  padding-left: 0;
  margin-bottom: 0;
}
.editcampania-container__block .white .text-wrap .last-line input::-moz-placeholder {
  text-align: center;
}
.editcampania-container__block .white .text-wrap .last-line input:-ms-input-placeholder {
  text-align: center;
}
.editcampania-container__block .white .text-wrap .last-line input::placeholder {
  text-align: center;
}
.editcampania-container__block .white .text-wrap .last-line .button {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 18px 0;
  max-width: 255px;
  max-height: 56px;
  width: 100%;
  background: #046493;
  border-radius: 0px 32px 32px 32px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .changepass-whiteblock .button_save {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 980px) {
  .editcampania-container__block {
    max-width: 1400px;
    margin-left: 0;
    background: #5199C0;
    border-radius: 0 0 32px 32px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .editcampania-container__block .white {
    flex-direction: column;
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .editcampania-container__block .white .img-wrap {
    margin-right: 0;
    overflow: hidden;
    height: 250px;
    max-width: 100%;
  }
  .editcampania-container__block .white .img-wrap img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .editcampania-container__block .white .img-wrap .button {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #FFFFFF;
    background: #F0592E;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 0px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .editcampania-container__block .white .text-wrap .top-text {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #046493;
    text-align: center;
  }

  .editcampania-container__block .white .text-wrap .input-row {
    margin-bottom: 0;
  }

  .editcampania-container__block .white .text-wrap input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .editcampania-container__block .white .text-wrap input::-moz-placeholder {
    font-size: 13px;
    line-height: 13px;
  }
  .editcampania-container__block .white .text-wrap input:-ms-input-placeholder {
    font-size: 13px;
    line-height: 13px;
  }
  .editcampania-container__block .white .text-wrap input::placeholder {
    font-size: 13px;
    line-height: 13px;
  }

  .editcampania-container__block .white .text-wrap select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    background: #FFFFFF;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .editcampania-container__block .white .text-wrap .select-row::after {
    right: 6%;
    top: 50%;
  }

  .editcampania-container__block .white .text-wrap .target::before {
    top: 19px;
    left: 16px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(4, 100, 147, 0.4);
  }

  .editcampania-container__block .white .text-wrap {
    padding: 0 30px;
    margin: 0 auto;
  }

  .editcampania-container__block .white .text-wrap .last-line .button {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 12px 0;
    max-width: 255px;
    max-height: 56px;
    width: 100%;
    background: #046493;
    border-radius: 0px 32px 32px 32px;
  }

  .editcampania-container__block .white .text-wrap .select-row {
    margin-bottom: 0;
    margin-top: 10px;
  }

  .editcampania-container__block .white .img-wrap .new-photo .change {
    padding: 9px 0;
  }

  .editcampania-container__block .white .text-wrap .small {
    font-size: 13px !important;
    line-height: 13px !important;
  }

  .editcampania-container__block .white .text-wrap textarea {
    padding-left: 20px;
    margin-bottom: 0;
  }

  #youtube-link {
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: none;
  }

  .target {
    margin-bottom: 0 !important;
    margin-top: 20px !important;
  }

  .editcampania-container__block .white .text-wrap #name-error {
    font-size: 12px;
    top: -15px !important;
  }

  .editcampania-container__block .white .text-wrap #target-error {
    font-size: 12px;
    top: -15px !important;
  }

  .editcampania-container__block .white .text-wrap #youtube-link-error {
    font-size: 12px;
    top: -5px !important;
  }

  .editcampania-container__block .white .text-wrap #edit-sum-cabinet-error {
    font-size: 12px;
    top: -16px !important;
  }

  .editcampania-container__block .white .text-wrap .last-line {
    margin-top: 10px;
  }
}
.changepass .alert {
  color: red;
  margin-left: 25px;
  margin-bottom: 5px;
}
.changepass-wrapper {
  display: flex;
  justify-content: center;
}
.changepass-container {
  max-width: 1440px;
  width: 100%;
}
.changepass-block {
  max-width: 1400px;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px;
  margin-bottom: 84px;
}
.changepass-block__title {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 49px;
}
.changepass-whiteblock {
  background: #FFFFFF;
  border-radius: 24px;
  padding-right: 52px;
  display: flex;
  overflow: hidden;
}
.changepass-whiteblock .img-wrap {
  max-width: 364px;
  margin-right: 58px;
}
.changepass-whiteblock .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.changepass-whiteblock .inputs {
  display: flex;
  max-width: 530px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.changepass-whiteblock .inputs .top-text {
  max-width: 530px;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  color: #F0592E;
  margin-bottom: 40px;
  margin-top: 36px;
  text-align: left;
}
.changepass-whiteblock .inputs input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
.changepass-whiteblock .inputs input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.changepass-whiteblock .inputs input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.changepass-whiteblock .inputs input::placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.changepass-whiteblock .button_save {
  margin-top: 12px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #046493;
  padding: 18px 51px;
  max-height: 56px;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.changepass-whiteblock .button_save:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}

@media screen and (max-width: 980px) {
  .changepass-block {
    max-width: 1400px;
    margin-left: 0;
    background: #5199C0;
    border-radius: 0 0 32px 32px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .changepass-block__title {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 30px;
    text-align: center;
  }

  .changepass-whiteblock {
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .changepass-whiteblock .img-wrap {
    margin-right: 0;
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    min-height: 150px;
  }
  .changepass-whiteblock .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .changepass-whiteblock .inputs .top-text {
    max-width: 530px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #F0592E;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
  }

  .changepass-whiteblock .inputs input {
    width: 100%;
    max-width: 434px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: none;
    margin-bottom: 10px;
  }

  .changepass-whiteblock .button_save {
    margin: 0 auto;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    background: #046493;
    padding: 12px 37px;
    border-radius: 0px 32px 32px 32px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 0;
    border: 2px solid transparent;
    margin-top: 20px;
  }
}
.profile-wrapper {
  display: flex;
  justify-content: center;
}
.profile-container {
  max-width: 1440px;
  width: 100%;
}
.profile-block {
  max-width: 1400px;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 50px;
  margin-bottom: 80px;
}
.profile-block__sub-title {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 50px;
}
.profile-block__whiteblock {
  max-width: 1305px;
  background: #FFFFFF;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 53px;
}
.profile-block__whiteblock__img-wrap {
  max-width: 364px;
  width: 100%;
  margin-right: 58px;
}
.profile-block__whiteblock__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-block__whiteblock__text-wrap {
  max-width: 830px;
  width: 100%;
}
.profile-block__whiteblock__text-wrap .top-text {
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}
.profile-block__whiteblock__text-wrap .top-text__leftside .name {
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
  margin-bottom: 20px;
}
.profile-block__whiteblock__text-wrap .top-text__leftside .info {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #F0592E;
}
.profile-block__whiteblock__text-wrap .top-text__rightside a {
  text-decoration: none;
}
.profile-block__whiteblock__text-wrap .top-text__rightside .button {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  background: #046493;
  padding: 18px 37px;
  border-radius: 0px 32px 32px 32px;
  color: #FFFFFF;
  cursor: pointer;
  margin-bottom: 15px;
}
.profile-block__whiteblock__text-wrap .links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.profile-block__whiteblock__text-wrap .links_link {
  margin-bottom: 8px;
  max-width: 350px;
  width: 100%;
  color: #046493;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
.profile-block__whiteblock__text-wrap .links_link span {
  font-weight: bold;
}
.profile-block__whiteblock__text-wrap .own-campanies__toptext {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.profile-block__whiteblock__text-wrap .own-campanies__toptext a {
  text-decoration: none;
}
.profile-block__whiteblock__text-wrap .own-campanies__toptext .count {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #F0592E;
  text-transform: uppercase;
}
.profile-block__whiteblock__text-wrap .own-campanies__toptext .check-all {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #046493;
  cursor: pointer;
}
.profile-block__whiteblock__text-wrap .own-campanies__items {
  display: flex;
  flex-wrap: wrap;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item {
  overflow: hidden;
  max-width: 389px;
  width: 100%;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 32px;
  display: flex;
  cursor: pointer;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item:hover .edit {
  opacity: 1;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-wrap {
  max-width: 412px;
  width: 100%;
  margin-bottom: 16px;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap {
  max-width: 107px;
  width: 100%;
  margin-right: 28px;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap {
  color: #046493;
  margin-top: 32px;
  margin-bottom: 32px;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .sum {
  margin-top: 4px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap a {
  text-decoration: none;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit {
  opacity: 0;
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit img {
  margin-right: 8px;
}

@media screen and (max-width: 980px) {
  .profile-block__whiteblock {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    padding: 30px;
  }

  .profile-block {
    width: auto;
    padding: 30px;
    margin-left: 0;
    border-radius: 0px 0px 32px 32px;
    margin-bottom: 40px;
  }

  .profile-block__whiteblock__img-wrap {
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    margin-right: 0px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    min-height: 150px;
  }

  .profile-block__whiteblock__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .profile-block__whiteblock__text-wrap .top-text__leftside .name {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #046493;
    margin-bottom: 20px;
    order: 2;
    margin-top: 20px;
    text-align: center;
  }

  .profile-block__whiteblock__text-wrap .top-text__leftside .info {
    order: 1;
  }

  .profile-block__whiteblock__text-wrap .top-text__rightside .button {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    background: #046493;
    padding: 12px 37px;
    border-radius: 0px 32px 32px 32px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 0;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .profile-block__whiteblock__text-wrap .top-text {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .profile-block__whiteblock__text-wrap .top-text__leftside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-block__whiteblock__text-wrap .links_link {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .profile-block__whiteblock__text-wrap .links {
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .profile-block__sub-title {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 30px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__toptext .check-all {
    text-align: right;
    font-size: 15px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .edit {
    opacity: 1;
    display: flex;
    font-size: 12px;
    line-height: 15px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-img-wrap {
    max-width: 107px;
    max-height: 120px;
    width: 100%;
    margin-right: 18px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .title {
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap .sum {
    margin-top: 8px;
    font-weight: normal;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-text-wrap {
    color: #046493;
    margin-top: 20px;
    margin-bottom: 16px;
    margin-right: 12px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items .item-wrap {
    max-width: 400px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__items {
    justify-content: center;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__toptext {
    margin-bottom: 15px;
  }

  .profile-block__whiteblock__text-wrap .own-campanies__toptext .count {
    font-size: 15px;
  }
}
.successful-wrapper {
  display: flex;
  justify-content: center;
}
.successful-container {
  max-width: 1440px;
  width: 100%;
}
.successful-block {
  max-width: 1400px;
  max-height: 685px;
  height: 100%;
  margin-left: 40px;
  border-radius: 32px 0px 0px 32px;
  background: #EBF8F9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 243px;
  padding-bottom: 243px;
  margin-bottom: 48px;
}
.successful-block__top {
  max-width: 650px;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 35px;
  color: #046493;
  text-align: center;
}
.successful-block__bot {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #046493;
}
.successful-block a {
  text-decoration: none;
}
.successful-block__button {
  margin-top: 30px;
  max-width: 246px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #046493;
  padding: 18px 66px;
  border-radius: 0px 32px 32px 32px;
  text-transform: uppercase;
}

@media screen and (max-width: 980px) {
  .successful-container {
    margin-bottom: 40px;
  }

  .successful-block {
    margin-left: 0;
    border-radius: 0 0 32px 32px;
    padding-bottom: 130px;
    padding-top: 130px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .successful-block__top {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
  }

  .successful-block__bot {
    margin-top: 15px;
    text-align: center;
    font-size: 35px;
    line-height: 35px;
  }

  .successful-block__button {
    font-size: 14px;
    line-height: 14px;
  }
}
.terms ul {
  list-style-type: disc;
  list-style-position: inside;
}
.terms ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.terms ul ul, .terms ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.terms ol ol, .terms ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.terms a {
  color: #046493;
}
.terms-wrapper {
  display: flex;
  justify-content: center;
}
.terms-container {
  max-width: 1440px;
  width: 100%;
}
.terms-block {
  max-width: 1400px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px 78px 52px;
  margin-left: 40px;
}
.terms-block__text {
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 36px;
}
.terms-block__inside {
  color: #046493;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px 35px 60px 45px;
  font-size: 16px;
  transition: transform 1.4s ease;
  transform: translateY(300px);
}
@media only screen and (max-width: 980px) {
  .terms-block__inside {
    transform: translateY(0);
  }
}
.terms-block__inside.animated {
  transform: translateY(0);
}
.terms-block__inside__title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 85px;
}
.terms-block__inside__title span {
  color: #046493 !important;
}
.terms-block__inside__introduction {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.terms-block__inside__introduction strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.terms-block__inside__links .top-text {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.terms-block__inside__links .link {
  margin-top: 32px;
}
.terms-block__inside__links .link a {
  color: #046493;
}
.terms-block__inside__links .link ul li {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}
.terms-block__inside__text {
  margin-top: 40px;
  margin-bottom: 40px;
}
.terms-block__inside__text .mainText {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.terms-block__inside__text .downText {
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .politica {
    width: calc(100% - 40px);
  }
  .politica-block__text {
    font-size: 52px;
  }
}
@media screen and (max-width: 980px) {
  .terms-block {
    max-width: 1400px;
    background: #5199C0;
    border-radius: 0px 0px 32px 32px;
    padding: 30px;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .terms-block__inside {
    padding: 25px;
  }

  .terms-block__text {
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 36px;
    text-align: left;
  }

  .terms-block__inside__title {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 35px;
  }

  .terms-block__inside__introduction {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .terms-block__inside__introduction span {
    font-size: 14px;
  }

  .terms-block__inside__links .top-text {
    font-size: 18px;
  }

  .terms-block__inside__links .link ul li {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
  }

  .terms-block__inside__text .mainText {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .terms-block__inside__text .downText {
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
  }

  .terms-block__inside__text {
    margin-bottom: 40px;
  }
}
.wedding-wrapper {
  display: flex;
  justify-content: center;
}
.wedding-container {
  max-width: 1440px;
  width: 100%;
  overflow: hidden;
}
.wedding-first {
  max-width: 1400px;
  margin-left: 40px;
  margin-bottom: 40px;
  background: #F0592E;
  border-radius: 40px 0px 0px 40px;
  display: flex;
  transition: transform 1.4s ease;
  transform: translateX(300px);
}
@media only screen and (max-width: 980px) {
  .wedding-first {
    transform: translateX(0);
  }
}
.wedding-first.animated {
  transform: translateX(0);
}
.wedding-first__image {
  max-width: 487px;
}
.wedding-first__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 0px 0px 40px;
}
.wedding-first__text {
  color: #FFFFFF;
  margin-top: 64px;
  margin-left: 64px;
}
.wedding-first__text .top-text {
  font-weight: bold;
  font-size: 56px;
}
.wedding-first__text .bot-text {
  margin-top: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  max-width: 800px;
}
.wedding-first__text .bot-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.wedding-first__text .bot-text p span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.wedding-first__text .bot-text span {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.wedding-second {
  max-width: 1400px;
  margin-right: 40px;
  margin-bottom: 40px;
  border-radius: 0 40px 40px 0;
  background: #5199C0;
  display: flex;
  transition: transform 1.4s ease;
  transform: translateX(-300px);
}
@media only screen and (max-width: 980px) {
  .wedding-second {
    transform: translateX(0);
  }
}
.wedding-second.animated {
  transform: translateX(0);
}
.wedding-second__image {
  max-width: 500px;
}
.wedding-second__image img {
  border-radius: 0 40px 40px 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wedding-second__text {
  margin: 64px;
  max-width: 800px;
}
.wedding-second__text .top-text {
  font-weight: bold;
  font-size: 56px;
  color: #FFFFFF;
}
.wedding-second__text .bot-text {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.wedding-second__text .bot-text a {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.wedding-second__text .bot-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
}
.wedding-second__text .bot-text p span {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.wedding-second__text .bot-text span {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.wedding-second__text .button-wrap {
  margin: 40px 0;
}
.wedding-second__text .button-wrap a {
  display: block;
  max-width: 424px;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 25px 51px;
  background: #67C6D7;
  text-decoration: none;
  border-radius: 0px 32px 32px 32px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.wedding-second__text .button-wrap a:hover {
  border: 2px solid #67C6D7;
  color: #67C6D7;
  background: #FFFFFF;
}
.wedding-second__text .wish-text {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .wedding-first__text {
    padding-right: 64px;
  }
  .wedding-first__text .bot-text {
    margin-bottom: 64px;
  }

  .wedding-second__image {
    min-width: 385px;
  }
}
@media screen and (max-width: 980px) {
  .wedding-first {
    max-width: 1400px;
    margin-left: 0px;
    margin-bottom: 40px;
    border-radius: 0 0px 40px 40px;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    overflow: hidden;
  }

  .wedding-first__text .top-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .wedding-first__text .bot-text {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .wedding-first__text .bot-text span {
    font-size: 14px;
  }

  .wedding-first__text {
    margin: 0;
    padding: 30px;
    order: 1;
  }

  .wedding-first__image {
    max-width: 100vw;
    order: 2;
    display: flex;
    align-items: flex-end;
  }
  .wedding-first__image img {
    border-radius: 40px 40px 0px 0px;
  }

  .wedding-second {
    margin-right: 0;
    max-width: 1400px;
    margin-left: 0px;
    margin-bottom: 40px;
    border-radius: 40px;
    background: #5199C0;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    overflow: hidden;
  }

  .wedding-second__text .top-text {
    font-size: 35px;
    line-height: 35px;
    text-align: center;
  }

  .wedding-second__text .bot-text {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .wedding-second__text .bot-text span {
    font-size: 14px;
  }

  .wedding-second__text {
    margin: 0;
    padding: 30px;
    order: 1;
  }

  .wedding-second__image {
    max-width: 100vw;
    order: 2;
    display: flex;
    align-items: flex-end;
  }
  .wedding-second__image img {
    border-radius: 40px 40px 0px 0px;
  }

  .wedding-second__text .button-wrap {
    margin: 25px 0;
    display: flex;
    justify-content: center;
  }
  .wedding-second__text .button-wrap a {
    white-space: pre-wrap;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 25px;
  }

  .wedding-second__text .wish-text {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
}
.popup .donation {
  display: none;
}
.popup .donation #liqpay-form {
  display: none;
}
.popup .donation-wrapper {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}
.popup .donation-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.popup .donation-container {
  max-width: 1167px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 16;
}
.popup .donation-block {
  max-width: 1167px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 46px;
  padding: 37px 58px 58px 42px;
  position: relative;
}
.popup .donation-block .cancel {
  position: absolute;
  top: -21px;
  right: -23px;
  cursor: pointer;
}
.popup .donation-block-top {
  display: flex;
  align-items: flex-start;
}
.popup .donation-block-top .left-side {
  max-width: 560px;
  width: 100%;
  margin-right: 66px;
}
.popup .donation-block-top .left-side-text {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  color: #046493;
  margin-bottom: 50px;
}
.popup .donation-block-top .left-side-sum {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.popup .donation-block-top .left-side-sum .sum-item {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  max-width: 256px;
  width: 100%;
  padding: 18px 0;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 32px;
  margin-bottom: 24px;
  cursor: pointer;
}
.popup .donation-block-top .left-side-sum .input-row {
  max-width: 256px;
  width: 100%;
}
.popup .donation-block-top .left-side-sum .input-row input {
  display: none;
}
.popup .donation-block-top .left-side-sum .input-row input:checked + label {
  color: #FFFFFF;
  background: #046493;
}
.popup .donation-block-top .left-side-sum .input-row label {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  width: 100%;
  padding: 18px 0;
  background: #EBF8F9;
  border-radius: 0px 32px 32px 32px;
  margin-bottom: 24px;
  cursor: pointer;
}
.popup .donation-block-top .left-side-sum .active {
  color: #FFFFFF;
  background: #046493;
}
.popup .donation-block-top .left-side-sum .more {
  display: none;
  position: absolute;
  margin-left: 34px;
  font-weight: normal;
  font-size: 11px;
  line-height: 11px;
  color: red;
  text-align: center;
  right: 30px;
  bottom: -16px;
}
.popup .donation-block-top .left-side-sum input {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  max-width: 256px;
  width: 100%;
  padding: 18px 0;
  color: #046493;
  border: 2px solid #5199C0;
  border-radius: 0px 32px 32px 32px;
  text-transform: uppercase;
  max-height: 56px;
}
.popup .donation-block-top .left-side-sum input::-moz-placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: rgba(4, 100, 147, 0.4);
}
.popup .donation-block-top .left-side-sum input:-ms-input-placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: rgba(4, 100, 147, 0.4);
}
.popup .donation-block-top .left-side-sum input::placeholder {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: rgba(4, 100, 147, 0.4);
}
.popup .donation-block-top .right-side {
  max-width: 441px;
  width: 100%;
}
.popup .donation-block-top .right-side input.error {
  border: 2px solid red;
}
.popup .donation-block-top .right-side .input-row {
  position: relative;
}
.popup .donation-block-top .right-side .input-row > div {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  font-size: 13px;
  text-align: center;
  color: #F0592E;
  margin-bottom: 5px;
}
.popup .donation-block-top .right-side .input-row input {
  width: 100%;
  border: 2px solid #046493;
  border-radius: 40px;
  padding: 19px 0px 19px 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  margin-bottom: 12px;
}
.popup .donation-block-top .right-side .input-row input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-top .right-side .input-row input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-top .right-side .input-row input::placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-top .right-side .input-row input.error {
  border: 2px solid red;
}
.popup .donation-block-bot {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.popup .donation-block-bot label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #046493;
  margin-left: 16px;
}
.popup .donation-block-bot .anonim {
  margin-top: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.popup .donation-block-bot .anonim label {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  color: #046493;
  opacity: 0.75;
}
.popup .donation-block-bot .anonim label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #046493;
}
.popup .donation-block-bot .anonim input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: none;
  background: url("/themes/default/img/input.svg");
}
.popup .donation-block-bot .anonim input {
  opacity: 0;
  position: absolute;
  transform: translateX(-1000px);
}
.popup .donation-block-bot .agree {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.popup .donation-block-bot .agree label {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  color: #046493;
  opacity: 0.75;
}
.popup .donation-block-bot .agree label a {
  text-decoration: underline;
  color: #046493;
}
.popup .donation-block-bot .agree label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #046493;
}
.popup .donation-block-bot .agree input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: none;
  background: url("/themes/default/img/input.svg");
}
.popup .donation-block-bot .agree input {
  opacity: 0;
  position: absolute;
  transform: translateX(-1000px);
}
.popup .donation-block-bot .mention {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #F0592E;
  text-align: left;
  margin-bottom: 28px;
  margin-left: 20px;
}
.popup .donation-block-bot .comm input {
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
  width: 100%;
  padding: 19px 0px 19px 32px;
  border: 2px solid #046493;
  border-radius: 29px;
  margin-bottom: 20px;
}
.popup .donation-block-bot .comm input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-bot .comm input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-bot .comm input::placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .donation-block-bot .submit {
  display: flex;
  align-items: center;
}
.popup .donation-block-bot .submit a {
  text-decoration: none;
  max-width: 322px;
  width: 100%;
}
.popup .donation-block-bot .submit-button {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  background: #F0592E;
  padding: 18px 0px;
  border-radius: 0px 40px 40px 40px;
  max-width: 322px;
  width: 100%;
  cursor: pointer;
  margin-right: 10px;
}
.popup .donation-block-bot .submit-button:disabled {
  opacity: 0.5;
}
.popup .donation-block-bot .submit-text {
  margin-left: 34px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #F0592E;
}

@media screen and (min-width: 980px) and (max-width: 1440px) {
  .popup .donation-block {
    width: calc(100% - 80px);
    padding: 20px 58px 20px 42px;
  }

  .popup .donation-block-top .left-side-text {
    line-height: 30px;
    margin-bottom: 25px;
  }

  .popup .donation-block-top {
    align-items: center;
    justify-content: center;
  }

  .popup .donation-block-top .left-side-sum .input-row {
    max-width: 45%;
  }

  .popup .donation-block-top .left-side-sum input {
    max-width: 45%;
  }

  .popup .donation-block-top .left-side-sum {
    justify-content: space-around;
  }

  .popup .donation-block-bot .mention {
    margin-bottom: 10px;
  }

  .popup .donation-block-bot .agree {
    margin-bottom: 10px;
  }

  .popup .donation-block-top .left-side-sum .more {
    right: 15px;
  }
}
@media screen and (max-width: 980px) {
  .popup .donation-block {
    max-width: 337px;
    padding: 25px 15px;
    position: relative;
    padding-bottom: 35px;
  }

  .popup .donation-block-top {
    flex-direction: column;
    align-items: center;
  }

  .popup .donation-block .cancel {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 5;
  }
  .popup .donation-block .cancel img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .popup .donation-block-top .left-side {
    margin-right: 0;
  }

  .popup .donation-block-top .left-side-text {
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 25px;
  }

  .popup .donation-block-top .left-side-sum .input-row {
    max-width: 140px;
  }

  .popup .donation-block-top .left-side-sum .input-row label {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #046493;
    max-width: 140px;
    width: 100%;
    padding: 12px 0;
    background: #EBF8F9;
    border-radius: 0px 32px 32px 32px;
    margin-bottom: 15px;
    cursor: pointer;
  }
  .popup .donation-block-top .left-side-sum .input-row label.active {
    background: #046493;
    color: #FFFFFF;
  }

  .popup .donation-block-top .left-side-sum input {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    max-width: 140px;
    width: 100%;
    padding: 12px 0;
    color: #046493;
    border: 2px solid #5199C0;
    border-radius: 0px 32px 32px 32px;
    max-height: 44px;
  }
  .popup .donation-block-top .left-side-sum input::-moz-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-top .left-side-sum input:-ms-input-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-top .left-side-sum input::placeholder {
    font-size: 14px;
  }

  .popup .donation-block-top .right-side .input-row input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 14px;
    line-height: 13px;
  }
  .popup .donation-block-top .right-side .input-row input::-moz-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-top .right-side .input-row input:-ms-input-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-top .right-side .input-row input::placeholder {
    font-size: 14px;
  }

  .popup .donation-block-bot label {
    font-weight: 500;
    font-size: 11px;
    line-height: 12px;
  }

  .popup .donation-block-bot .anonim {
    margin-top: 15px;
  }

  .popup .donation-block-bot .agree {
    margin-bottom: 15px;
  }

  .popup .donation-block-bot .anonim label:after {
    width: 15px;
    height: 15px;
  }

  .popup .donation-block-bot .agree label:after {
    width: 15px;
    height: 15px;
  }

  .popup .donation-block-bot .anonim label {
    padding-left: 35px;
  }

  .popup .donation-block-bot .agree label {
    padding-left: 35px;
  }

  .popup .donation-block-bot .mention {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 15px;
    text-align: center;
  }

  .popup .donation-block-bot .comm input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 14px;
    line-height: 13px;
  }
  .popup .donation-block-bot .comm input::-moz-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-bot .comm input:-ms-input-placeholder {
    font-size: 14px;
  }
  .popup .donation-block-bot .comm input::placeholder {
    font-size: 14px;
  }

  .popup .donation-block-bot .submit {
    flex-direction: column;
  }

  .popup .donation-block-bot .submit-button {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    background: #F0592E;
    padding: 15px 0px;
    border-radius: 0px 40px 40px 40px;
    max-width: 322px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .popup .donation-block-bot .submit-text {
    margin-left: 0;
    font-weight: normal;
    font-size: 13px;
    line-height: 14px;
    color: #F0592E;
    text-align: center;
  }

  .popup .donation-block-bot .anonim input:checked + label:before {
    left: 1.5px;
  }

  .popup .donation-block-bot .agree input:checked + label:before {
    left: 1.5px;
  }

  .popup .donation-inside {
    height: 70vh;
    padding-right: 15px;
  }

  .popup .donation-block-top .left-side-sum .more {
    right: 0;
    transform: translateX(0%);
    bottom: -32px;
    margin-left: 0;
  }
}
.popup .validation-error {
  display: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #F0592E;
  background: #FFFFFF;
  border: 4px solid #F0592E;
  border-radius: 0px 32px 32px 32px;
  padding: 32px 146px;
  text-transform: uppercase;
}
.popup .validation-error-wrap {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 11;
}
.popup .validation-error .cancel {
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
}

.popup .createpopup {
  display: none;
}
.popup .createpopup-wrapper {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: center;
}
.popup .createpopup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
.popup .createpopup-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 12;
  cursor: pointer;
}
.popup .createpopup .contur {
  padding-left: 7px;
}
.popup .createpopup .description {
  position: absolute;
  top: 90.1%;
  right: 31.1%;
  display: flex;
  align-items: center;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .createpopup .description-number {
  font-weight: normal;
  font-size: 44px;
  margin-right: 16px;
}
.popup .createpopup .description-text {
  font-weight: normal;
  font-size: 16px;
  max-width: 164px;
}

@media screen and (max-width: 980px) {
  .createpopup {
    display: none !important;
  }
}
.popup .registerpopup {
  display: none;
}
.popup .registerpopup-wrapper {
  position: fixed;
  z-index: 15;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: center;
}
.popup .registerpopup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 16;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.popup .registerpopup-container {
  padding-left: 90px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 17;
}
.popup .registerpopup .contur {
  padding-left: 7px;
}
.popup .registerpopup .signup {
  top: 77px;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  max-width: 611px;
  width: 100%;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 28px;
}
.popup .registerpopup .signup .choose {
  display: flex;
  margin-bottom: 24px;
}
.popup .registerpopup .signup .choose .registr {
  margin-right: 20px;
  padding: 18px 40px;
  color: #FFFFFF;
  background: #5199C0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .registerpopup .signup .choose .login {
  margin-right: 20px;
  padding: 18px 40px;
  color: #5199C0;
  border: 2px solid #5199C0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .registerpopup .signup .select-row {
  position: relative;
  max-width: 530px;
  width: 100%;
}
.popup .registerpopup .signup .select-row::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 35%;
  width: 20px;
  height: 12px;
  background: url("/themes/default/img/arrow-down.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.popup .registerpopup .signup .select-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup .registerpopup .signup .select-row select option {
  color: #046493;
  font-weight: bold;
  font-size: 16px;
}
.popup .registerpopup .signup input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup .registerpopup .signup input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .registerpopup .signup input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .registerpopup .signup input::placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .registerpopup .signup .bot-line {
  display: flex;
}
.popup .registerpopup .signup .bot-line .photo-wrap {
  margin-right: 12px;
  max-width: 196px;
  width: 100%;
  border: 2px solid #046493;
  border-radius: 40px;
  position: relative;
}
.popup .registerpopup .signup .bot-line .photo-wrap .text {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.popup .registerpopup .signup .bot-line .photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 4;
}
.popup .registerpopup .signup .bot-line .pass-wrap {
  display: flex;
  flex-direction: column;
}
.popup .registerpopup .signup .bot-line .pass-wrap input {
  max-width: 322px;
}
.popup .registerpopup .signup .bot-line .pass-wrap .pass-button {
  max-width: 322px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 18px 75px;
  background: #F0592E;
  border-radius: 40px;
  cursor: pointer;
}
.popup .registerpopup .signup .agree {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.popup .registerpopup .signup .agree a {
  text-decoration: underline;
  color: #046493;
}
.popup .registerpopup .signup .agree label {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #046493;
}
.popup .registerpopup .signup .agree label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #046493;
}
.popup .registerpopup .signup .agree input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: none;
  background: url("/themes/default/assets/img/input.svg");
}
.popup .registerpopup .signup .agree input {
  opacity: 0;
  position: absolute;
  transform: translateX(-1000px);
}
.popup .registerpopup .description {
  position: absolute;
  top: 99.3%;
  left: 6.1%;
  display: flex;
  align-items: center;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .registerpopup .description-number {
  font-weight: normal;
  font-size: 44px;
  margin-right: 16px;
}
.popup .registerpopup .description-text {
  font-weight: normal;
  font-size: 16px;
  max-width: 164px;
}

@media screen and (max-width: 980px) {
  .registerpopup {
    display: none !important;
  }
}
.popup .loginpopup {
  display: none;
}
.popup .loginpopup-wrapper {
  position: fixed;
  z-index: 12;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: center;
}
.popup .loginpopup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 12;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.popup .loginpopup-container {
  padding-left: 90px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 12;
}
.popup .loginpopup .contur {
  padding-left: 7px;
}
.popup .loginpopup .signup {
  top: 77px;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  max-width: 611px;
  width: 100%;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 28px;
}
.popup .loginpopup .signup .choose {
  display: flex;
  margin-bottom: 24px;
}
.popup .loginpopup .signup .choose .registr {
  margin-right: 20px;
  padding: 18px 40px;
  color: #5199C0;
  border: 2px solid #5199C0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .loginpopup .signup .choose .login {
  margin-right: 20px;
  padding: 18px 40px;
  color: #FFFFFF;
  background: #5199C0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .loginpopup .signup input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup .loginpopup .signup input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .loginpopup .signup input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .loginpopup .signup input::placeholder {
  color: rgba(4, 100, 147, 0.4);
}
.popup .loginpopup .signup .login-button {
  max-width: 530px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 20px 233px;
  background: #F0592E;
  border-radius: 40px;
  cursor: pointer;
}
.popup .loginpopup .description {
  position: absolute;
  top: 90.3%;
  left: 27.35%;
  display: flex;
  align-items: center;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 40px;
  cursor: pointer;
  max-width: 289px;
  width: 100%;
}
.popup .loginpopup .description-number {
  font-weight: normal;
  font-size: 44px;
  margin-right: 16px;
}
.popup .loginpopup .description-text {
  font-weight: normal;
  font-size: 16px;
  max-width: 164px;
}

@media screen and (max-width: 980px) {
  .loginpopup {
    display: none !important;
  }
}
.popup .alert {
  color: red;
  margin-left: 25px;
  margin-bottom: 5px;
}
.popup .authoriz {
  display: none;
}
.popup .authoriz-wrapper {
  position: fixed;
  z-index: 15;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popup .authoriz-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 16;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
.popup .authoriz-container {
  padding-left: 90px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 17;
}
.popup .authoriz .contur {
  padding-left: 7px;
}
.popup .authoriz .sign {
  top: 40px;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  max-width: 611px;
  width: 100%;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 28px;
  text-transform: uppercase;
}
.popup .authoriz .sign .cancel-autho {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.popup .authoriz .sign .choose {
  display: flex;
  margin-bottom: 24px;
}
.popup .authoriz .sign .choose .registr {
  padding: 18px 40px;
  color: #5199C0;
  border: 2px solid #5199C0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .authoriz .sign .choose .login {
  margin-right: 20px;
  padding: 18px 40px;
  color: #5199C0;
  border: 2px solid #5199C0;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}
.popup .authoriz .sign .choose .active {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
  color: #FFFFFF;
  background: #5199C0;
}
.popup .authoriz .sign .signup-wrap {
  height: 50vh;
  overflow-y: auto;
  padding-right: 15px;
  display: none;
}
.popup .authoriz .sign .signup-wrap .signup {
  text-align: right;
}
.popup .authoriz .sign .signup-wrap .signup .select-row {
  position: relative;
  max-width: 530px;
  width: 100%;
}
.popup .authoriz .sign .signup-wrap .signup .select-row .select2-container {
  width: 100% !important;
}
.popup .authoriz .sign .signup-wrap .signup .select-row::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url("/themes/default/img/arrow-down.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.popup .authoriz .sign .signup-wrap .signup .select-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup .authoriz .sign .signup-wrap .signup .select-row select option {
  color: #046493;
  font-weight: bold;
  font-size: 16px;
}
.popup .authoriz .sign .signup-wrap .signup input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-top: 12px;
}
.popup .authoriz .sign .signup-wrap .signup input::-moz-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup input:-ms-input-placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup input::placeholder {
  color: rgba(4, 100, 147, 0.4);
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line {
  display: flex;
  margin-top: 12px;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .photo-wrap {
  margin-right: 12px;
  max-width: 196px;
  width: 100%;
  border: 2px solid #046493;
  border-radius: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .photo-wrap .text {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 4;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap input {
  max-width: 322px;
  margin-top: 0;
  margin-bottom: 12px;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap input::-moz-placeholder {
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap input:-ms-input-placeholder {
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap input::placeholder {
  text-transform: uppercase;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap .pass-button {
  max-width: 322px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 18px 75px;
  background: #F0592E;
  border-radius: 40px;
  cursor: pointer;
}
.popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap .pass-button:disabled {
  opacity: 0.5;
}
.popup .authoriz .sign .signup-wrap .signup .agree {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.popup .authoriz .sign .signup-wrap .signup .agree a {
  text-decoration: underline;
  color: #046493;
}
.popup .authoriz .sign .signup-wrap .signup .agree label {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  text-align: left;
  line-height: 20px;
  color: #046493;
}
.popup .authoriz .sign .signup-wrap .signup .agree label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #046493;
}
.popup .authoriz .sign .signup-wrap .signup .agree input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: none;
  background: url("/themes/default/img/input.svg");
}
.popup .authoriz .sign .signup-wrap .signup .agree input {
  opacity: 0;
  position: absolute;
  transform: translateX(-1000px);
}
.popup .authoriz .sign .signup-wrap .simplebar-vertical {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.popup .authoriz .sign .signin {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .authoriz .sign .signin .forgot-pass {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  color: #046493;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease;
}
.popup .authoriz .sign .signin .forgot-pass:hover {
  color: #F0592E;
}
.popup .authoriz .sign .signin input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
.popup .authoriz .sign .signin input::-moz-placeholder {
  color: #046493;
  text-transform: uppercase;
}
.popup .authoriz .sign .signin input:-ms-input-placeholder {
  color: #046493;
  text-transform: uppercase;
}
.popup .authoriz .sign .signin input::placeholder {
  color: #046493;
  text-transform: uppercase;
}
.popup .authoriz .sign .signin .login-button {
  max-width: 530px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 20px 220px;
  background: #F0592E;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
}
.popup .authoriz .sign .signin .login-button.hide {
  color: #F0592E;
}
.popup .authoriz .sign .signin .login-button.hide .loading {
  display: block;
}
.popup .authoriz .sign .signin .login-button .loading {
  display: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.popup .authoriz .sign .signin .login-button .loading .line {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #FFFFFF;
}
.popup .authoriz .sign .signin .login-button .loading .load-3 {
  margin-top: 10px;
}
.popup .authoriz .sign .signin .login-button .loading .load-3 .line:nth-last-child(1) {
  -webkit-animation: loadingC 1.2s 0.1s linear infinite;
          animation: loadingC 1.2s 0.1s linear infinite;
}
.popup .authoriz .sign .signin .login-button .loading .load-3 .line:nth-last-child(2) {
  -webkit-animation: loadingC 1.2s 0.2s linear infinite;
          animation: loadingC 1.2s 0.2s linear infinite;
}
.popup .authoriz .sign .signin .login-button .loading .load-3 .line:nth-last-child(3) {
  -webkit-animation: loadingC 1.2s 0.3s linear infinite;
          animation: loadingC 1.2s 0.3s linear infinite;
}

@media screen and (max-width: 980px) {
  .popup .authoriz .sign {
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    position: absolute;
    max-width: 350px;
    overflow-y: scroll;
    width: 100%;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 28px;
  }

  .popup .sign .simplebar-vertical {
    top: 0;
  }

  .popup .authoriz .sign .signup-wrap .signup .select-row select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    background: #FFFFFF;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .popup .authoriz .sign .signup-wrap .signup input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
  }

  .popup .authoriz .sign .choose .registr {
    padding: 0;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 10px;
  }

  .popup .authoriz .sign .choose .login {
    padding: 0;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .popup .authoriz .sign .signup-wrap .signup .agree label:after {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 1.5px solid #046493;
  }

  .popup .authoriz .sign .signin input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
  }

  .popup .authoriz .sign .signup-wrap .signup .bot-line {
    flex-direction: column;
    align-items: center;
  }

  .popup .authoriz .sign .signup .bot-line .photo-wrap {
    min-height: 100px;
    max-width: 100px !important;
    max-height: 100px !important;
    border-radius: 25px;
    margin-bottom: 12px;
  }

  .popup .authoriz .sign .signup-wrap .signup .bot-line .photo-wrap .text {
    font-size: 14px;
  }

  .popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap .pass-button {
    max-width: 322px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 75px;
    background: #F0592E;
    border-radius: 40px;
    cursor: pointer;
  }

  .popup .authoriz .sign .signup-wrap .signup .agree label {
    font-size: 12px;
    line-height: 14px;
    padding-left: 53px;
  }

  .popup .authoriz .sign .signin .login-button {
    max-width: 530px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 129px;
    background: #F0592E;
    border-radius: 40px;
    cursor: pointer;
  }

  .popup .authoriz .sign .signup-wrap .signup .bot-line .pass-wrap {
    width: 100%;
  }

  .popup .authoriz .sign .cancel-autho {
    width: 50px;
    height: 50px;
  }
  .popup .authoriz .sign .cancel-autho img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .popup .authoriz .sign .signup-wrap .signup .agree input:checked + label:before {
    left: 22px;
  }

  #image-preview {
    min-width: auto !important;
  }

  .popup .authoriz .sign .signin .forgot-pass {
    font-size: 11px;
    font-family: inherit;
  }

  #image-preview label {
    left: -50px !important;
    font-size: 11px !important;
    height: 20px !important;
  }

  .select2-results__option--selectable {
    font-weight: bold;
    font-size: 13px;
    line-height: 18px;
    color: #046493;
    text-transform: uppercase;
    padding-left: 13px;
  }

  .select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background: #046493;
  }

  .select2-selection__arrow {
    display: none !important;
  }

  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #046493;
  }

  .select2-container--classic.select2-container--open .select2-dropdown {
    border: 2px solid #046493 !important;
    border-top: 0 solid transparent !important;
    border-radius: 0 0 16px 16px !important;
    overflow: hidden;
  }

  .select2-container--classic .select2-selection--single {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    padding-left: 13px;
    border-radius: 40px;
    border: 2px solid #046493 !important;
    background: #FFFFFF !important;
    font-weight: bold;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    overflow: hidden;
  }
}
#image-preview {
  width: 200px;
  height: 200px;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  color: #ecf0f1;
  cursor: pointer;
}

#image-preview input {
  line-height: 200px;
  font-size: 200px;
  position: absolute;
  opacity: 0;
  z-index: 10;
}

#image-preview label {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  width: 200px;
  height: 30px;
  line-height: 50px;
  text-transform: uppercase;
  top: 0;
  left: -5px;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #046493;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobilemenu {
  position: relative;
  z-index: 9;
  display: none;
  transition: display 0.3s ease;
}
.mobilemenu-wrapper {
  position: fixed;
  z-index: 15;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}
.mobilemenu-wrapper .hamburger-new {
  position: absolute;
  right: 20px;
  top: 20px;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5 {
  width: 35px;
  height: 25px;
  position: relative;
  margin: 0px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #046493;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5 span:nth-child(1) {
  top: 0px;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5 span:nth-child(2), .mobilemenu-wrapper .hamburger-new #nav-icon3 span:nth-child(3) {
  top: 10px;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5 span:nth-child(4) {
  top: 20px;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5.open span:nth-child(1) {
  top: 0px;
  width: 0%;
  left: 50%;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5.open span:nth-child(2) {
  transform: rotate(45deg);
}
.mobilemenu-wrapper .hamburger-new #nav-icon5.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.mobilemenu-wrapper .hamburger-new #nav-icon5.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mobilemenu-container {
  max-width: 375px;
}
.mobilemenu-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobilemenu-buttons .button-company {
  max-height: 56px;
  background: #F0592E;
  padding: 19px 25px;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 11;
  border: 2px solid transparent;
  transition: 0.3s ease;
  margin-bottom: 10px;
}
.mobilemenu-buttons .button-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobilemenu-buttons .button-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border: 2px solid #046493;
  border-radius: 0px 32px 32px 32px;
  color: #ffffff;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  background: #046493;
  z-index: 9;
  transition: 0.3s ease;
  margin-bottom: 10px;
  max-width: 249.72px;
  min-width: 249.72px;
}
.mobilemenu-buttons .button-login {
  max-height: 54px;
  border: 2px solid #046493;
  padding: 19px 91px;
  border-radius: 0px 32px 32px 32px;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  z-index: 9;
  transition: 0.3s ease;
  margin-bottom: 10px;
}
.mobilemenu-buttons .button-authoriz {
  margin-right: 0;
  margin-bottom: 10px;
  border: 2px solid #046493;
  border-radius: 32px;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  z-index: 9;
  line-height: 54px;
  flex-direction: column;
  transition: border-radius 1.6s ease;
  width: 250px;
  display: flex;
  justify-content: center;
}
.mobilemenu-buttons .button-authoriz.active {
  border-radius: 32px;
  transition: border-radius 0s ease;
  overflow: hidden;
}
.mobilemenu-buttons .button-authoriz a {
  color: #046493;
}
.mobilemenu-buttons .button-authoriz span {
  margin: 0 auto;
  padding: 19px 0;
  color: #046493;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  white-space: nowrap;
}
.mobilemenu-buttons .button-authoriz .arrow {
  position: absolute;
  top: 0;
  right: 20px;
}
.mobilemenu-buttons .button-authoriz .img-wrap {
  top: 0;
  left: -2px;
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 32px 32px 32px 0px;
  border: 2px solid #046493;
  overflow: hidden;
  z-index: 2;
}
.mobilemenu-buttons .button-authoriz .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobilemenu-buttons .button-authoriz__menu {
  display: none;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  padding: 10px 0;
  border-top: 2px #FFFFFF solid !important;
}
.mobilemenu-buttons .button-authoriz__menu svg {
  margin-right: 20px;
}
.mobilemenu-buttons .button-authoriz__menu .item {
  color: #046493;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  padding-left: 65px;
  margin-bottom: 11px;
}
.mobilemenu-buttons .button-authoriz__menu .item svg {
  width: 18px;
  height: 18px;
  margin-right: 13px;
}

.popup .resetpass {
  display: none;
}
.popup .resetpass-wrapper {
  position: fixed;
  z-index: 15;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popup .resetpass-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 16;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
.popup .resetpass-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 17;
  height: 100%;
}
.popup .resetpass .contur {
  padding-left: 7px;
}
.popup .resetpass .sign {
  top: 30%;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  max-width: 611px;
  max-height: 500px;
  width: 100%;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 28px;
}
.popup .resetpass .sign .cancel-autho {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.popup .resetpass .sign .reset {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .resetpass .sign .reset .title {
  color: #046493;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
}
.popup .resetpass .sign .reset .subtitle {
  color: #F0592E;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.popup .resetpass .sign .reset input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.popup .resetpass .sign .reset input::-moz-placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.popup .resetpass .sign .reset input:-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.popup .resetpass .sign .reset input::placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.popup .resetpass .sign .reset .login-button {
  max-width: 530px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  height: 56px;
  background: #F0592E;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .popup .resetpass .sign {
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    position: absolute;
    max-width: 350px;
    overflow-y: scroll;
    width: 100%;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 28px;
  }

  .popup .resetpass .sign .signup .select-row select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    background: #FFFFFF;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .popup .resetpass .sign .signup input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .popup .resetpass .sign .choose .registr {
    padding: 0;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 10px;
  }

  .popup .resetpass .sign .choose .login {
    padding: 0;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .popup .resetpass .sign .signup .select-row::after {
    top: 32%;
  }

  .popup .resetpass .sign .signup .agree label:after {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 1.5px solid #046493;
  }

  .popup .resetpass .sign .signin input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .popup .resetpass .sign .signup .bot-line {
    flex-direction: column;
    align-items: center;
  }

  .popup .resetpass .sign .signup .bot-line .photo-wrap {
    min-height: 100px;
    max-width: 100px;
    border-radius: 25px;
    margin-bottom: 12px;
  }

  .popup .resetpass .sign .signup .bot-line .photo-wrap .text {
    font-size: 14px;
  }

  .popup .resetpass .sign .signup .bot-line .pass-wrap .pass-button {
    max-width: 322px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 75px;
    background: #F0592E;
    border-radius: 40px;
    cursor: pointer;
  }

  .popup .resetpass .sign .signup .agree label {
    font-size: 12px;
    line-height: 14px;
    padding-left: 53px;
  }

  .popup .resetpass .sign .signin .login-button {
    max-width: 530px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 132px;
    background: #F0592E;
    border-radius: 40px;
    cursor: pointer;
  }

  .popup .resetpass .sign .signup .bot-line .pass-wrap {
    width: 100%;
  }

  .popup .resetpass .sign .cancel-autho {
    width: 50px;
    height: 50px;
  }
  .popup .resetpass .sign .cancel-autho img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .popup .resetpass .sign .signup .agree input:checked + label:before {
    left: 22px;
  }

  .popup .resetpass .sign .signin .forgot-pass {
    font-size: 11px;
    font-family: inherit;
  }

  .popup .resetpass .sign .reset .title {
    font-size: 22px;
    line-height: 22px;
  }

  .popup .resetpass .sign .reset .subtitle {
    font-size: 14px;
    line-height: 14px;
  }

  .popup .resetpass .sign .reset input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .popup .resetpass .sign .reset input::-moz-placeholder {
    font-size: 13px;
  }
  .popup .resetpass .sign .reset input:-ms-input-placeholder {
    font-size: 13px;
  }
  .popup .resetpass .sign .reset input::placeholder {
    font-size: 13px;
  }

  .popup .resetpass .sign .reset .login-button {
    height: 43px;
    font-size: 13px;
  }
}
.restorepass-wrapper {
  display: flex;
  justify-content: center;
}
.restorepass-container {
  max-width: 1440px;
  width: 100%;
}
.restorepass-block {
  max-width: 1400px;
  margin-left: 40px;
  background: #5199C0;
  border-radius: 32px 0px 0px 32px;
  padding: 45px 52px;
  margin-bottom: 84px;
}
.restorepass-block__title {
  font-weight: bold;
  font-size: 56px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 49px;
}
.restorepass-whiteblock {
  background: #FFFFFF;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-bottom: 36px;
}
.restorepass-whiteblock .img-wrap {
  max-width: 364px;
  margin-right: 58px;
}
.restorepass-whiteblock .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.restorepass-whiteblock .restorepass-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 530px;
  width: 100%;
}
.restorepass-whiteblock .restorepass-form .top-text {
  max-width: 530px;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #F0592E;
  margin-bottom: 40px;
  margin-top: 36px;
  text-align: center;
}
.restorepass-whiteblock .restorepass-form input {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 32px;
  border-radius: 40px;
  border: 2px solid #046493;
  color: #046493;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
.restorepass-whiteblock .restorepass-form input::-moz-placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.restorepass-whiteblock .restorepass-form input:-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.restorepass-whiteblock .restorepass-form input::placeholder {
  text-transform: uppercase;
  color: rgba(4, 100, 147, 0.4);
}
.restorepass-whiteblock .button_save {
  margin-top: 12px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #046493;
  padding: 18px 51px;
  max-height: 56px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
  max-width: 200px;
}
.restorepass-whiteblock .button_save:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}

@media screen and (max-width: 980px) {
  .restorepass-block {
    max-width: 1400px;
    margin-left: 0;
    background: #5199C0;
    border-radius: 0 0 32px 32px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .restorepass-block__title {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 30px;
    text-align: center;
  }

  .restorepass-whiteblock {
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .restorepass-whiteblock .img-wrap {
    margin-right: 0;
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    min-height: 150px;
  }
  .restorepass-whiteblock .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .restorepass-whiteblock .inputs .top-text {
    max-width: 530px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #F0592E;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
  }

  .restorepass-whiteblock .inputs input {
    width: 100%;
    max-width: 434px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    border-radius: 40px;
    border: 2px solid #046493;
    color: #046493;
    font-weight: bold;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .restorepass-whiteblock .button_save {
    margin: 0 auto;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    background: #046493;
    padding: 12px 37px;
    border-radius: 0px 32px 32px 32px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 0;
    border: 2px solid transparent;
    margin-top: 20px;
  }
}
.popup .createsuccess {
  display: none;
}
.popup .createsuccess-wrapper {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popup .createsuccess-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 16;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
.popup .createsuccess-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 17;
  height: 100%;
}
.popup .createsuccess .contur {
  padding-left: 7px;
}
.popup .createsuccess .sign {
  top: 30%;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  max-width: 611px;
  max-height: 500px;
  width: 100%;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 28px;
}
.popup .createsuccess .sign .cancel-autho {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.popup .createsuccess .sign .reset {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .createsuccess .sign .reset .title {
  color: #046493;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
  max-width: 300px;
  text-align: center;
}
.popup .createsuccess .sign .reset .subtitle {
  color: #046493;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.popup .createsuccess .sign .reset .subtitle span {
  font-weight: 600;
  color: #F0592E;
}
.popup .createsuccess .sign .reset .subtitle a {
  color: #F0592E;
  text-decoration: none;
}

@media screen and (max-width: 980px) {
  .popup .createsuccess .sign .cancel-autho {
    width: 45px;
    height: 45px;
  }
  .popup .createsuccess .sign .cancel-autho img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .popup .createsuccess .sign {
    padding: 25px;
    max-width: 90vw;
  }

  .popup .createsuccess .sign .reset .title {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    line-height: 22px;
  }

  .popup .createsuccess .sign .reset .subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}
.popup .imagecrop {
  display: none;
}
.popup .imagecrop-wrapper {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popup .imagecrop-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 16;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
.popup .imagecrop-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 17;
  height: 100%;
}
.popup .imagecrop .contur {
  padding-left: 7px;
}
.popup .imagecrop .sign {
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  width: 700px;
  padding: 20px 40px;
  background: #FFFFFF;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .imagecrop .sign .error {
  color: red;
  margin-bottom: 5px;
}
.popup .imagecrop .sign .cancel-autho {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.popup .imagecrop .sign #upload-image-crop {
  margin-top: 20px;
  width: 530px;
  height: 310px;
}
.popup .imagecrop .sign .input-button {
  max-width: 530px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.popup .imagecrop .sign .input-button .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 215px;
  height: 100%;
  margin: 0 auto;
  background: #F0592E;
  padding: 14px 0;
  border-radius: 0px 32px 32px 32px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  transition: 0.3s ease;
  overflow: hidden;
  text-align: center;
}
.popup .imagecrop .sign .input-button .button:hover {
  border: 2px solid #F0592E;
  background: #FFFFFF;
  color: #F0592E;
}
.popup .imagecrop .sign .input-button .button input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
  left: 0;
  top: 0;
  cursor: pointer;
}
.popup .imagecrop .sign #image-upload-cropinput-error {
  width: 100%;
  padding: 0 10px;
  position: absolute;
  height: 100%;
  background: red;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 20px;
  color: #FFFFFF;
}
.popup .imagecrop .sign input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup .imagecrop .sign .link {
  margin-top: 20px;
  max-width: 530px;
  width: 100%;
  padding-left: 32px;
  height: 58px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  border: 2px solid #046493;
  color: #046493;
  border-radius: 32px;
}
.popup .imagecrop .sign .link::-moz-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.popup .imagecrop .sign .link:-ms-input-placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.popup .imagecrop .sign .link::placeholder {
  vertical-align: top;
  color: #046493;
  opacity: 0.35;
  text-transform: uppercase;
}
.popup .imagecrop .sign input.error {
  border: 2px solid red;
}
.popup .imagecrop .sign #image-upload-cropbutton {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 0px 32px 32px 32px;
  background: #046493;
  padding: 12px 51px;
  min-width: 211px;
  max-height: 56px;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.popup .imagecrop .sign #image-upload-cropbutton:hover {
  border: 2px solid #046493;
  background: #FFFFFF;
  color: #046493;
}
.popup .button-wrap {
  width: 100%;
  max-width: 530px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 980px) {
  .popup .imagecrop .sign .cancel-autho {
    width: 45px;
    height: 45px;
  }
  .popup .imagecrop .sign .cancel-autho img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .popup .imagecrop .sign {
    padding: 25px;
    max-width: 90vw;
  }

  .popup .imagecrop .sign .link {
    max-width: 100%;
    font-size: 13px;
    height: 45px;
  }

  .popup .imagecrop .sign form {
    max-width: 100%;
  }

  .popup .imagecrop .sign #upload-image-crop {
    max-width: 300px;
  }

  .popup .imagecrop .sign .input-button .button {
    font-size: 13px;
    width: 150px;
  }
}
.fixed-body {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.wrapper {
  overflow: hidden;
}

* {
  visibility: visible !important;
}

#toast-container > div {
  margin-top: 110px !important;
  padding: 20px !important;
  border-radius: 50px !important;
  box-shadow: none !important;
}

#toast-container > .toast-success {
  background-position-x: 35px !important;
}

.toast-message {
  margin-left: 50px !important;
}

.alert.alert-danger {
  font-size: 12px;
  text-align: center;
  line-height: 14px;
  color: #F0592E;
}

.popup .alert {
  margin: 5px 0;
}

.simplebar-wrapper {
  overflow: visible;
}

.simplebar-vertical.simplebar-track {
  overflow: visible;
  width: 7px;
  right: 3px;
}
.simplebar-vertical .simplebar-scrollbar {
  left: -2px;
}
.simplebar-vertical .simplebar-scrollbar::before {
  background: #046493;
  width: 7px;
  border-radius: 6px;
  opacity: 1;
}

@media (max-width: 980px) {
  .simplebar-vertical {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .simplebar-vertical.simplebar-track {
    top: 50px;
  }
}
