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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

input, button, textarea, select {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

button,
textarea,
input:not([type=checkbox]):not([type=radio]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, button, textarea, select, a {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
}

img {
  pointer-events: none;
}

html {
  min-width: 320px;
}

#flashes {
  pointer-events: none;
  z-index: 123456789;
  position: fixed;
  width: 400px;
  right: 15px;
  top: 110px;
  bottom: 170px;
  padding: 0 10px;
  overflow: hidden;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.flash {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 1.1em 1.5em;
  width: 100%;
  color: #fff;
  font-size: 14px;
  background-color: #2ECC71;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-transition: background-color ease-in-out 0.2s;
  -o-transition: background-color ease-in-out 0.2s;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
}

.flash.error {
  background-color: #dc3434;
}

.flash.warning {
  background-color: #F39C12;
}

.flash:hover {
  background-color: #30c76a;
}

.flash.error:hover {
  background-color: #cf302d;
}

.flash.warning:hover {
  background-color: #e88f13;
}

.flash .flash-type {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}

.flash .progressbar {
  z-index: -1;
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.04;
}

.flash .close {
  float: right;
  font-weight: 400;
  font-size: 19px;
  line-height: 19px;
  cursor: pointer;
}

@media screen and (max-width: 430px) {
  #flashes {
    width: 93.333%;
    left: 50%;
    top: 90px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .flash {
    font-size: 13px;
    padding: 0.8em 1.2em;
  }
  .flash .flash-type {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 13.5px;
  }
  .flash .close {
    padding-left: 20px;
  }
}
#login-panel {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 666;
  background: rgba(27, 28, 36, 0.55);
  pointer-events: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, height 0s 0.3s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, height 0s 0.3s, visibility 0s 0.3s;
  -ms-transition: opacity 0.3s 0s, height 0s 0.3s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, height 0s 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, height 0s 0.3s, visibility 0s 0.3s;
}

#login-panel.active {
  pointer-events: auto;
  opacity: 1;
  height: 100%;
  visibility: visible;
  -webkit-transition-delay: 0s, 0s, 0s;
  -moz-transition-delay: 0s, 0s, 0s;
  -ms-transition-delay: 0s, 0s, 0s;
  -o-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  #login-panel .modal-panel {
    display: none;
  }
  #login-panel.active .modal-panel {
    display: block;
  }
}
#login-panel .modal-panel {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  z-index: 777;
  position: relative;
  width: 370px;
  padding: 45px 20px 20px 20px;
  text-align: left;
  line-height: normal;
  letter-spacing: 0;
  color: #636363;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: none;
}

#login-panel .modal-panel .close {
  z-index: 1;
  position: absolute;
  right: 15px;
  top: 14px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  color: #797979;
  font-size: 34px;
  font-weight: 300;
  box-sizing: content-box;
  border: 6px solid transparent;
  border-radius: 5px;
  outline: none;
}

#login-panel .modal-panel .close:focus {
  border-color: #dedede;
  background-color: #dedede;
}

#login-panel .modal-panel .close:hover {
  color: #636363;
}

#login-panel form input {
  padding: 13px 12px;
  width: 100%;
  font-size: 15px;
  margin-top: 8px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-bottom: 1px solid #bfbfbf;
}

#login-panel form input:hover {
  border: 1px solid #a2a2a2;
}

#login-panel form input:focus {
  border: 1px solid #a2a2a2;
}

#login-panel form button {
  display: inline-block;
  line-height: 45px;
  margin-top: 21px;
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  background-color: #4aa76a;
  -webkit-box-shadow: 0 2px 0 0 #388e55;
  box-shadow: 0 2px 0 #388e55;
}

#login-panel form button:hover {
  background-color: #479e64;
}

#login-panel form button:active {
  background-color: #43965f;
}

#login-panel form button:focus {
  outline: none;
}

#login-panel form ul.error {
  padding: 0 5px;
  padding-top: 30px;
  color: #E23E3E;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  list-style-type: none;
}

#login-panel form::-webkit-input-placeholder {
  color: #999999;
}

#login-panel form :-moz-placeholder { /* Firefox 18- */
  color: #999999;
}

#login-panel form::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
}

#login-panel form :-ms-input-placeholder {
  color: #999999;
}

/*********** LOGIN BUTTONY ***********/
#login-panel p {
  padding-top: 20px;
  margin: 35px 0 11px;
  text-align: center;
  font-size: 13.5px;
  color: #a6a6a6;
  border-top: 1px solid #e6e6e6;
}

.social-media-btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.social-media-btns a {
  display: block;
  padding: 10px 15px;
  margin-top: 10px;
  width: 30%;
  font-size: 15px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #3a579a;
  -webkit-box-shadow: 0 2px 0 0 #314880;
  box-shadow: 0 2px 0 #314880;
}

.social-media-btns a:hover {
  background-color: #314c82;
}

.social-media-btns .twitter {
  background-color: #00abf0;
  -webkit-box-shadow: 0 2px 0 0 #008dc6;
  box-shadow: 0 2px 0 #008dc6;
}

.social-media-btns .twitter:hover {
  background-color: #00a1db;
}

.social-media-btns .google {
  background-color: #dd493d;
  -webkit-box-shadow: 0 2px 0 0 #ba3e33;
  box-shadow: 0 2px 0 #ba3e33;
}

.social-media-btns .google:hover {
  background-color: #c7433a;
}

@media screen and (max-height: 380px), screen and (max-width: 370px) {
  #login-panel .modal-panel {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}
@media screen and (max-width: 370px) {
  #login-panel p {
    padding-top: 15px;
    margin: 25px 0 11px;
  }
  .social-media-btns {
    flex-direction: column;
  }
  .social-media-btns a {
    width: 100%;
    margin-top: 13px;
  }
}
@media screen and (max-height: 380px) {
  #login-panel form button {
    line-height: 35px;
  }
  #login-panel form input {
    padding: 8px 12px;
  }
  #login-panel p {
    padding-top: 12px;
    margin: 22px 0 11px;
  }
  .social-media-btns {
    flex-direction: row;
  }
  .social-media-btns a {
    padding: 7px 15px;
  }
}
/******************* Social media login *******************/
#social-login-panel .modal-panel {
  width: 400px;
}

#social-login-panel .social-media-btns a {
  width: 100%;
  margin: 0 5px;
}

#social-login-panel .auth {
  margin: 10px 0 20px;
  font-size: 15px;
}

/*TODO upravit RWD*/
@media screen and (max-width: 400px) and (orientation: portrait) {
  #social-login-panel .modal-panel {
    width: 100%;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

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

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* control's animation */
.mfp-fade.mfp-ready .mfp-close:hover,
.mfp-fade.mfp-ready .mfp-arrow:hover {
  opacity: 1;
}

.mfp-fade.mfp-ready .mfp-close,
.mfp-fade.mfp-ready .mfp-arrow {
  opacity: 0.65;
}

.mfp-fade.mfp-removing .mfp-close,
.mfp-fade.mfp-removing .mfp-arrow {
  opacity: 0;
}

::-moz-selection {
  color: #fff;
  background-color: rgba(48, 57, 127, 0.9);
}

::selection {
  color: #fff;
  background-color: rgba(48, 57, 127, 0.9);
}

body {
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #30397F;
  background: #EBEBEB;
}

body.scroll-disabled {
  overflow: hidden;
}

/* Obsah webu */
.main-wrapper {
  position: relative;
  background-color: #fff;
}

/*.main-wrapper--hp {
    margin-top: $header-height-desktop;

    @media screen and (max-width: 1280px) {
        margin-top: 85px;
    }
}*/
.content-wrapper {
  position: relative;
  width: 100%;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    padding: 0 35px;
  }
}
@media screen and (max-width: 425px) {
  .content-wrapper {
    padding: 0 25px;
  }
}
@media screen and (max-width: 375px) {
  .content-wrapper {
    padding: 0 20px;
  }
}
.content-wrapper--no-padding {
  padding: 0;
}
.content-wrapper--light-grey {
  background-color: #F1F1F1;
}
.content-wrapper--blue {
  color: #fff;
  background-color: #30397F;
}
.content-wrapper--mid-grey {
  background-color: #EBEBEB;
}
.content-wrapper--dark-grey {
  background-color: #2E2D2C;
}
.content-wrapper--grey {
  background-color: #E4E4E4;
}
.content-wrapper--darker-grey {
  background-color: #cacaca;
}
.content-wrapper--dark {
  color: #fff;
  background-color: #3c3c3b;
}
.content-wrapper--dark-blue {
  color: #fff;
  background-color: #1C2252;
}
.content-wrapper--light-blue {
  color: #fff;
  background-color: #30397F;
}
.content-wrapper--blue-hp1 {
  background-color: #3C479D;
}
.content-wrapper--blue-hp2 {
  background-color: #30397F;
}
.content-wrapper--blue-hp3 {
  background-color: #192631;
}
.content-wrapper--yellow {
  background-color: #30397F;
}
.content-wrapper--theme-yellow {
  background-color: #FFCC01;
}
.content-wrapper--turquoise {
  background-color: #ffce00;
}
.content-wrapper--orange {
  background-color: #ef404a;
}
.content-wrapper.img-text__content-wrapper {
  padding: 0;
}
.content-wrapper--shapes:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.content-wrapper--shapes2:after {
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 21%;
  background-image: url("../web_images/shapes/shapes_2.svg?v=2");
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes2:after {
    padding-bottom: 30%;
    background-size: 140%;
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes2:after {
    padding-bottom: 38%;
    background-size: 180%;
  }
}
.content-wrapper--shapes3:after {
  right: 0;
  bottom: 0;
  padding-bottom: 21%;
  width: 18.2291666667%;
  background-image: url("../web_images/shapes/shapes_3.svg");
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes3:after {
    display: none;
  }
}
.content-wrapper--shapes4:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
  top: 0;
  left: 0;
  padding-bottom: 21%;
  width: 18.2291666667%;
  background-image: url("../web_images/shapes/shapes_4.svg");
  background-position: left top;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes4:before {
    display: none;
  }
}
.content-wrapper--shapes4:after {
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 14%;
  background-image: url("../web_images/shapes/shapes_5.svg");
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes4:after {
    padding-bottom: 19%;
    background-size: 140%;
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes4:after {
    padding-bottom: 24%;
    background-size: 180%;
  }
}
.content-wrapper--shapes6:after {
  right: 0;
  bottom: 0;
  padding-bottom: 14%;
  width: 31.25%;
  background-image: url("../web_images/shapes/shapes_6.svg");
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes6:after {
    display: none;
  }
}
.content-wrapper--shapes7:after {
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 7%;
  background-image: url("../web_images/shapes/shapes_7.svg");
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes7:after {
    padding-bottom: 10%;
    background-size: 140%;
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes7:after {
    padding-bottom: 13%;
    background-size: 180%;
  }
}
.content-wrapper--shapes8:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
  bottom: 0;
  right: 0;
  padding-bottom: 12%;
  width: 18.2291666667%;
  background-image: url("../web_images/shapes/shapes_9.svg");
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes8:before {
    display: none;
  }
}
.content-wrapper--shapes8:after {
  left: 0;
  bottom: 0;
  padding-bottom: 14%;
  width: 31.25%;
  background-image: url("../web_images/shapes/shapes_8.svg");
  background-position: left bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes8:after {
    display: none;
  }
}
.content-wrapper--shapes9:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
  bottom: 0;
  right: 0;
  padding-bottom: 22%;
  width: 26.0416666667%;
  background-image: url("../web_images/shapes/shapes_11.svg");
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes9:before {
    display: none;
  }
}
.content-wrapper--shapes9:after {
  left: 0;
  bottom: 0;
  padding-bottom: 23%;
  width: 36.4583333333%;
  background-image: url("../web_images/shapes/shapes_10.svg?v=2");
  background-position: left bottom;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes9:after {
    display: none;
  }
}
.content-wrapper--shapes10:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
  bottom: 0;
  right: 0;
  padding-bottom: 14.7%;
  width: 100%;
  background-image: url("../web_images/shapes/shapes_12.svg?v=2");
  background-position: center bottom;
  background-size: contain;
  -webkit-transform: translateY(-94.5%);
  -moz-transform: translateY(-94.5%);
  -ms-transform: translateY(-94.5%);
  -o-transform: translateY(-94.5%);
  transform: translateY(-94.5%);
}
@media screen and (max-width: 1280px) {
  .content-wrapper--shapes10:before {
    display: none;
  }
}
.content-wrapper--shapes10:after {
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 14%;
  background-image: url("../web_images/shapes/shapes_13.svg");
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes10:after {
    padding-bottom: 19%;
    background-size: 140%;
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes10:after {
    padding-bottom: 24%;
    background-size: 180%;
  }
}

.content {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  padding: 110px 0;
}
@media screen and (max-width: 1200px) {
  .content {
    padding: 95px 0;
  }
}
@media screen and (max-width: 900px) {
  .content {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .content {
    padding: 70px 0;
  }
}
@media screen and (max-width: 425px) {
  .content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 375px) {
  .content {
    padding: 55px 0;
  }
}
.content--no-padding {
  padding: 0;
}
.content.img-text__content {
  max-width: 100%;
  padding-bottom: 0;
}
.content--mw1024 {
  max-width: 1024px;
}
.content-wrapper--shapes2 .content {
  padding-bottom: calc(21% + 55px);
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes2 .content {
    padding-bottom: calc(30% + 40px);
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes2 .content {
    padding-bottom: calc(35% + 30px);
  }
}
.content-wrapper--shapes4 .content {
  padding-bottom: 14%;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes4 .content {
    padding-bottom: calc(19% + 40px);
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes4 .content {
    padding-bottom: calc(24% + 30px);
  }
}
@media screen and (min-width: 901px) {
  .content-wrapper--shapes6 .content {
    padding-bottom: 14%;
  }
}
.content-wrapper--shapes7 .content {
  padding-bottom: calc(7% + 110px);
}
@media screen and (max-width: 1200px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(7% + 95px);
  }
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(10% + 80px);
  }
}
@media screen and (max-width: 768px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(10% + 70px);
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(13% + 70px);
  }
}
@media screen and (max-width: 425px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(13% + 60px);
  }
}
@media screen and (max-width: 375px) {
  .content-wrapper--shapes7 .content {
    padding-bottom: calc(13% + 55px);
  }
}
.content-wrapper--shapes7.img-text__content-wrapper .content {
  padding-bottom: 7%;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes7.img-text__content-wrapper .content {
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes7.img-text__content-wrapper .content {
    padding-bottom: 13%;
  }
}
@media screen and (min-width: 901px) {
  .content-wrapper--shapes8 .content {
    padding-bottom: 14%;
  }
}
@media screen and (min-width: 901px) {
  .content-wrapper--shapes9 .content {
    padding-bottom: 14%;
  }
}
.content-wrapper--shapes10 .content:last-child {
  padding-bottom: 14%;
}
@media screen and (max-width: 900px) {
  .content-wrapper--shapes10 .content:last-child {
    padding-bottom: calc(19% + 40px);
  }
}
@media screen and (max-width: 525px) {
  .content-wrapper--shapes10 .content:last-child {
    padding-bottom: calc(24% + 30px);
  }
}

.img-text__content-wrapper:not(.img-text__content-wrapper--dark-end) + .content-wrapper--white .content {
  padding-top: 0;
}
.content-wrapper--white + .img-text__content-wrapper .content, .content-wrapper:not(.content-wrapper--light-grey):not(.content-wrapper--blue):not(.compact-news):not(.content-wrapper--no-padding) + .img-text__content-wrapper .content {
  padding-top: 0;
}

.content-wrapper--white:not(.content-wrapper--shapes-hp) + .content-wrapper--white:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--light-grey:not(.content-wrapper--shapes-hp) + .content-wrapper--light-grey:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--mid-grey:not(.content-wrapper--shapes-hp) + .content-wrapper--mid-grey:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--dark-grey:not(.content-wrapper--shapes-hp) + .content-wrapper--dark-grey:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--grey:not(.content-wrapper--shapes-hp) + .content-wrapper--grey:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--dark:not(.content-wrapper--shapes-hp) + .content-wrapper--dark:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--darker-grey:not(.content-wrapper--shapes-hp) + .content-wrapper--darker-grey:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--turquoise:not(.content-wrapper--shapes-hp) + .content-wrapper--turquoise:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--dark-blue:not(.content-wrapper--shapes-hp) + .content-wrapper--dark-blue:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--lightest-blue:not(.content-wrapper--shapes-hp) + .content-wrapper--lightest-blue:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

.content-wrapper--blue:not(.content-wrapper--shapes-hp) + .content-wrapper--blue:not(.content-wrapper--shapes-hp) .content {
  padding-top: 0;
}

@media screen and (max-width: 1080px) and (max-width: 1200px) {
  .blocks__wrapper + .content-wrapper .content {
    padding-top: 95px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 900px) {
  .blocks__wrapper + .content-wrapper .content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .blocks__wrapper + .content-wrapper .content {
    padding-top: 70px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .blocks__wrapper + .content-wrapper .content {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 375px) {
  .blocks__wrapper + .content-wrapper .content {
    padding-top: 55px;
  }
}
.paginator,
.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  justify-content: center;
}

.heading-wrapper {
  text-align: center;
  margin: 0 auto 65px;
  max-width: 800px;
}

.divider {
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .paginator,
  .btn-wrapper {
    margin-top: 25px;
  }
  .heading-wrapper {
    margin-bottom: 60px;
  }
  .divider {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 425px) {
  .paginator,
  .btn-wrapper {
    margin-top: 15px;
  }
  .heading-wrapper {
    margin-bottom: 50px;
  }
  .divider {
    padding-bottom: 15px;
  }
}
/* Tlacitka */
.btn,
.more-btn,
.custom-more-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  padding: 17px 35px;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  border-radius: 28px;
  white-space: nowrap;
}
@media screen and (max-width: 425px) {
  .btn,
  .more-btn,
  .custom-more-btn {
    padding: 14px 21px;
    border-radius: 25px;
  }
}
.btn-wrapper .btn,
.btn-wrapper .more-btn,
.btn-wrapper .custom-more-btn {
  margin: 15px 12px 0;
}
.bottom-banner .btn,
.bottom-banner .more-btn,
.bottom-banner .custom-more-btn {
  white-space: wrap;
}

.btn,
.more-btn {
  background-color: #e2e2e2;
  color: #30397F;
}
.btn:hover,
.more-btn:hover {
  background-color: #c9c9c9;
}
.content-wrapper--grey .btn,
.content-wrapper--grey .more-btn {
  background-color: #EAECED;
  color: #3c3c3b;
}
.content-wrapper--grey .btn:hover,
.content-wrapper--grey .more-btn:hover {
  color: #fff;
  background-color: #30397F;
}
.content-wrapper--light-grey .btn, .content-wrapper--darker-grey .btn, .content-wrapper--turquoise .btn,
.content-wrapper--light-grey .more-btn,
.content-wrapper--darker-grey .more-btn,
.content-wrapper--turquoise .more-btn {
  background-color: #E4E4E4;
}
.content-wrapper--light-grey .btn:hover, .content-wrapper--darker-grey .btn:hover, .content-wrapper--turquoise .btn:hover,
.content-wrapper--light-grey .more-btn:hover,
.content-wrapper--darker-grey .more-btn:hover,
.content-wrapper--turquoise .more-btn:hover {
  background-color: #c9c9c9;
}
.content-wrapper--dark .btn, .content-wrapper--blue .btn,
.content-wrapper--dark .more-btn,
.content-wrapper--blue .more-btn {
  color: #fff;
  background-color: #0C1B27;
}
.content-wrapper--dark .btn:hover, .content-wrapper--blue .btn:hover,
.content-wrapper--dark .more-btn:hover,
.content-wrapper--blue .more-btn:hover {
  color: #0C1B27;
  background-color: #ef404a;
}
.btn--yellow,
.more-btn--yellow {
  background-color: #ffce00;
}
.btn--yellow:hover,
.more-btn--yellow:hover {
  background-color: #e6b900;
}
.btn--more-news,
.more-btn--more-news {
  flex-shrink: 0;
  background-color: #FFD544;
}
.btn--more-news:hover,
.more-btn--more-news:hover {
  color: #fff;
  background-color: #22285a;
}
.btn--red,
.more-btn--red {
  color: #fff;
  background-color: #ef404a;
}
.btn--red:hover,
.more-btn--red:hover {
  background-color: #e91320;
}
.btn--blue,
.more-btn--blue {
  color: #fff;
  background-color: #30397F;
}
.btn--blue:hover,
.more-btn--blue:hover {
  background-color: #22285a;
}
.btn--white,
.more-btn--white {
  background-color: #fff;
}
.btn--white:hover,
.more-btn--white:hover {
  background-color: #30397F;
  color: #fff;
}
.btn--blue-text,
.more-btn--blue-text {
  color: #1C2252;
}
.btn--inline,
.more-btn--inline {
  height: auto;
  padding: 0;
}
.btn--small,
.more-btn--small {
  height: 36px;
  padding: 8px 13px;
  font-size: 18px;
}

.custom-more-btn {
  color: #fff;
  background-color: #30397F;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.custom-more-btn:hover {
  background-color: #1C2252;
}

.btn__thin {
  font-weight: 400;
}

@media screen and (max-width: 425px) {
  .btn__desktop-only {
    display: none;
  }
}
/* Odkaz na virtualni prohlidku */
@media screen and (min-width: 400px) {
  .btn--vp {
    padding-left: 75px;
  }
  .btn--vp:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 26px;
    width: 42px;
    height: 19px;
    background: url("../web_images/ico_vp_b.svg") center left no-repeat;
    background-size: contain;
  }
}
/* Odkaz na stazeni prihlasky */
.application {
  position: relative;
}

@media screen and (min-width: 376px) {
  .btn--application {
    padding-left: 60px;
  }
  .btn--application:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 30px;
    width: 19px;
    height: 19px;
    background: url("../web_images/ico_download.svg") center left no-repeat;
    background-size: contain;
  }
}
/* Nadpis */
.main-heading {
  position: relative;
  display: flex;
  justify-content: center;
  line-height: 1.1;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #30397F;
}
@media screen and (max-width: 1250px) {
  .main-heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 425px) {
  .main-heading {
    font-size: 32px;
  }
}
.content-wrapper--blue .main-heading, .content-wrapper--dark-blue .main-heading, .content-wrapper--yellow .main-heading, .content-wrapper--orange .main-heading, .content-wrapper--blue-hp1 .main-heading, .content-wrapper--blue-hp2 .main-heading {
  color: #fff;
}

.main-heading--h1 {
  font-size: 54px;
}
.main-heading--h1:after {
  height: 5px;
  background-color: #ef404a;
}
@media screen and (max-width: 1250px) {
  .main-heading--h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  .main-heading--h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 425px) {
  .main-heading--h1 {
    font-size: 36px;
  }
}

.main-heading__orange {
  color: #ef404a;
  text-decoration: underline;
}
.content-wrapper--yellow .main-heading__orange {
  color: #1C2252;
}
.content-wrapper--orange .main-heading__orange, .content-wrapper--blue-hp3 .main-heading__orange {
  color: #fff;
}

.main-heading__white {
  color: #fff;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Zahlavi */
/* Zahlavi */
.header {
  z-index: 555;
  position: fixed;
  top: 0;
  left: 0;
  height: 140px;
  width: 100%;
  background: #fff;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header.static-white, .header.white {
  background: #fff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
}

.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

.header__logo {
  flex-shrink: 0;
  width: 250px;
  height: 55px;
  background-position: center left;
  background-repeat: no-repeat;
  background-image: url("../web_images/logo.svg");
  background-size: contain;
  -webkit-transform-origin: center left;
  -moz-transform-origin: center left;
  -ms-transform-origin: center left;
  -o-transform-origin: center left;
  transform-origin: center left;
}

@media screen and (min-width: 1150px) {
  .header.active {
    -webkit-transform: translateY(-54px);
    -moz-transform: translateY(-54px);
    -ms-transform: translateY(-54px);
    -o-transform: translateY(-54px);
    transform: translateY(-54px);
  }
  .header.active .header__logo {
    -webkit-transform: translateY(26px) scale(0.7714285714);
    -moz-transform: translateY(26px) scale(0.7714285714);
    -ms-transform: translateY(26px) scale(0.7714285714);
    -o-transform: translateY(26px) scale(0.7714285714);
    transform: translateY(26px) scale(0.7714285714);
  }
  .header__subcontainer {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
  }
  .header__nav {
    display: flex;
    justify-content: flex-end;
  }
  .menu {
    display: flex;
    align-items: center;
  }
  .menu__item {
    position: relative;
  }
  .menu__item + .menu__item {
    margin-left: 40px;
  }
  /* Header top */
  /* Header bot */
  /****** Submenu ******/
  /* Submenu - top */
  /* Submenu - bot */
  /* Megamenu */
  /* Hamburger menu */
}
@media screen and (min-width: 1150px) and (max-width: 1440px) {
  .menu__item + .menu__item {
    margin-left: 35px;
  }
}
@media screen and (min-width: 1150px) and (max-width: 1340px) {
  .menu__item + .menu__item {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1150px) {
  .menu__link,
  .submenu__link {
    white-space: nowrap;
  }
  .menu__link--has-submenu {
    position: relative;
    padding-right: 21px;
  }
  .menu__link--has-submenu:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 15px;
    height: 7px;
    background: url("../web_images/ico_arrow_menu.svg") center no-repeat;
    background-size: contain;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  .menu__item--has-submenu.open .menu__link--has-submenu:before, .menu__item--has-submenu.focus .menu__link--has-submenu:before {
    -webkit-transform: translateY(-30%) rotate(180deg);
    -moz-transform: translateY(-30%) rotate(180deg);
    -ms-transform: translateY(-30%) rotate(180deg);
    -o-transform: translateY(-30%) rotate(180deg);
    transform: translateY(-30%) rotate(180deg);
  }
  .header__nav--top {
    height: 54px;
    opacity: 1;
    -moz-transition: all 0.75s ease-out;
    -o-transition: all 0.75s ease-out;
    -webkit-transition: all 0.75s ease-out;
    transition: all 0.75s ease-out;
  }
  .header.active .header__nav--top {
    opacity: 0;
  }
  .menu__link--top {
    font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #30397F;
  }
  .menu__link--top:hover {
    color: #e91320;
  }
  .menu__item--contact {
    font-weight: 400;
  }
  .menu__contact-divider {
    margin: 0 5px;
    font-size: 0;
  }
  .menu__item--mobile {
    display: none;
  }
  .menu__link--bc {
    cursor: pointer;
    padding-left: 15px;
  }
  .menu__link--bc:before {
    width: 10px;
    height: 6px;
    opacity: 0.8;
  }
  .menu__link--vp {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #30397F;
    background-size: contain;
  }
  .menu__link--vp:hover {
    color: #e91320;
  }
  .menu__vp-ico {
    height: 32px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu__link--vp:hover .menu__vp-ico {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media screen and (min-width: 1150px) and (max-width: 1279px) {
  .menu__link-wrapper--vp {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .menu__icon {
    display: block;
    width: 19px;
    height: 19px;
    font-size: 0;
    background: center no-repeat;
    background-size: contain;
  }
  .menu__icon:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  .menu__icon--fb {
    background-image: url("../web_images/ico_fb.svg");
  }
  .menu__icon--ig {
    background-image: url("../web_images/ico_ig.svg");
  }
  .menu__icon--x {
    width: 20px;
    background-image: url("../web_images/ico_x.svg");
  }
  .menu__icon--yt {
    width: 27px;
    background-image: url("../web_images/ico_yt.svg");
  }
  .menu__icon--li {
    width: 20px;
    background-image: url("../web_images/ico_li.svg");
  }
  .header__nav--bot {
    height: 86px;
  }
  .menu__link--bot {
    font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #30397F;
  }
  .menu__link--bot:hover {
    color: #e91320;
  }
  .menu__link-wrapper {
    text-decoration: underline rgba(239, 64, 74, 0);
    text-underline-offset: 2px;
    -moz-transition: text-decoration-color ease-in-out 0.3s;
    -o-transition: text-decoration-color ease-in-out 0.3s;
    -webkit-transition: text-decoration-color ease-in-out 0.3s;
    transition: text-decoration-color ease-in-out 0.3s;
  }
  .menu__link:hover .menu__link-wrapper {
    text-decoration-color: #ef404a;
  }
  .menu__search-btn {
    display: block;
    width: 28px;
    height: 20px;
    color: #ef404a;
  }
  .menu__search-btn:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  .menu__search-btn-text {
    display: none;
  }
  .submenu {
    z-index: 1;
    position: absolute;
    top: 45px;
    left: 50%;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(48, 57, 127, 0.95);
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .menu__item--has-submenu.open .submenu, .menu__item--has-submenu.focus .submenu {
    opacity: 1;
    pointer-events: all;
  }
  .submenu:not(.megamenu) {
    padding: 20px 15px;
  }
  .menu__item--has-submenu:before, .menu__item--has-submenu:after {
    content: "";
    position: absolute;
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  .menu__item--has-submenu:before {
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background-color: transparent;
  }
  .menu__item--has-submenu:after {
    bottom: -32px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent rgba(48, 57, 127, 0.95) transparent;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .menu__item--has-submenu.open:before, .menu__item--has-submenu.open:after, .menu__item--has-submenu.focus:before, .menu__item--has-submenu.focus:after {
    opacity: 1;
    pointer-events: all;
  }
  .submenu__item--mobile {
    display: none;
  }
  .submenu__link:hover,
  .megamenu__link:hover {
    color: #ffce00;
  }
  .submenu__link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 10px;
  }
  .menu--top .menu__item--has-submenu:before {
    bottom: -20px;
    height: 20px;
  }
  .menu--top .menu__item--has-submenu:after {
    bottom: -20px;
  }
  .submenu--regular {
    top: 54px;
  }
  .submenu--top {
    top: 42px;
  }
  .submenu--megamenu {
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    padding-top: 85px;
    padding-bottom: 85px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .megamenu-wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 1420px;
  }
  .megamenu-block:not(:last-of-type) {
    margin-right: 4.5%;
  }
  .megamenu-block:nth-of-type(1) {
    padding-right: 6.33%;
    margin-right: 6.33%;
    border-right: 1px solid #fff;
  }
  .megamenu-submenu--two-cols {
    column-count: 2;
    column-gap: 20%;
    white-space: nowrap;
  }
  .megamenu__title {
    display: inline-block;
    margin-bottom: 10px;
    margin-left: -5px;
    padding: 2px 5px 1px;
    font-size: 16px;
    font-weight: 700;
    color: #30397F;
    background-color: #fff;
  }
  .megamenu__item {
    padding: 4px 0;
  }
  .megamenu__item--left {
    padding: 5px 0;
  }
  .megamenu__link {
    display: inline-block;
    line-height: 1.31;
    padding: 4px 0;
    font-size: 16px;
    font-weight: 400;
  }
  .megamenu__link--left {
    display: block;
    padding: 5px 0;
    font-size: 21px;
    font-weight: 700;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1150px) and (max-height: 590px) {
  .submenu--megamenu {
    height: calc(100vh - 140px);
    overflow-y: auto;
  }
  .active .submenu--megamenu {
    height: calc(100vh - 86px);
    overflow-y: auto;
  }
}
@media screen and (min-width: 1150px) {
  .menu__social-link {
    display: none;
  }
  .megamenu__field-label {
    display: none;
  }
  .hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  .header {
    height: 80px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.075);
  }
  .header__logo {
    width: 200px;
    height: 40px;
  }
  /* Linky */
  /* Soc site */
  /* Submenu */
  /* Hamburger menu */
}
@media screen and (max-width: 1149px) and (max-width: 400px) {
  .header__logo {
    height: 35px;
    width: 125px;
  }
}
@media screen and (max-width: 1149px) {
  .header__subcontainer {
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    overflow-y: auto;
    background-color: #fff;
    -moz-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
    transition: all ease-in-out 300ms;
    -webkit-transform: scale(1.05) translateY(10px);
    -moz-transform: scale(1.05) translateY(10px);
    -ms-transform: scale(1.05) translateY(10px);
    -o-transform: scale(1.05) translateY(10px);
    transform: scale(1.05) translateY(10px);
  }
  .header__subcontainer.active {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
  .header__nav--top {
    font-weight: 400;
    color: #30397F;
    background-color: #fff;
  }
  .header__nav--bot {
    font-weight: 400;
    color: #fff;
    background-color: #30397F;
  }
  .menu__item--desktop {
    display: none;
  }
  .menu__item + .menu__item {
    border-top: 1px solid #dbdad5;
  }
  .menu--top .menu__item {
    border-top: 1px solid #30397F;
  }
  .menu__search-btn,
  .menu__link,
  .submenu__link,
  .megamenu__link {
    display: block;
    font-size: 18px;
    padding: 31px 30px 31px 75px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 768px) {
  .menu__search-btn,
  .menu__link,
  .submenu__link,
  .megamenu__link {
    padding-left: 65px;
    padding-right: 35px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 425px) {
  .menu__search-btn,
  .menu__link,
  .submenu__link,
  .megamenu__link {
    padding-left: 55px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 375px) {
  .menu__search-btn,
  .menu__link,
  .submenu__link,
  .megamenu__link {
    padding-left: 50px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1149px) {
  .submenu__link,
  .megamenu__link {
    font-weight: 400;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .submenu--top .submenu__link {
    color: #fff;
  }
  .menu__link--bot:hover, .menu__link--bot:focus,
  .megamenu__link:hover,
  .megamenu__link:focus,
  .submenu__link:hover,
  .submenu__link:focus {
    color: #ffce00;
    outline: 0;
  }
  .menu__link--top:hover, .menu__link--top:focus,
  .submenu__link--top:hover,
  .submenu__link--top:focus {
    color: #30397F;
    outline: 0;
  }
  .menu__link--top {
    color: #30397F;
  }
  .menu__link--has-submenu .menu__link-wrapper {
    position: relative;
  }
  .menu__link--has-submenu .menu__link-wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    display: block;
    width: 15px;
    height: 7px;
    background: url("../web_images/ico_arrow_menu_w.svg") center no-repeat;
    background-size: contain;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  .menu__item--has-submenu.open .menu__link--has-submenu .menu__link-wrapper:before, .menu__item--has-submenu.focus .menu__link--has-submenu .menu__link-wrapper:before {
    -webkit-transform: translateY(-30%) rotate(180deg);
    -moz-transform: translateY(-30%) rotate(180deg);
    -ms-transform: translateY(-30%) rotate(180deg);
    -o-transform: translateY(-30%) rotate(180deg);
    transform: translateY(-30%) rotate(180deg);
  }
  .menu__link--has-submenu .menu__link-wrapper--top:before {
    -webkit-filter: invert(0.75);
    filter: invert(0.75);
  }
  .menu__link--bc {
    cursor: pointer;
  }
  .menu__link--bc .menu__link-wrapper:before {
    background-image: url("../web_images/ico_arrow_menu.svg");
  }
  .menu__item--vp {
    display: none;
  }
  .menu__link--vp {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #fff;
  }
  .menu__link--vp:hover, .menu__link--vp:focus {
    color: #e1ecec;
  }
  .menu__link-wrapper--vp {
    background-size: contain;
  }
  .menu__vp-ico {
    height: 20px;
    margin-right: 10px;
  }
  .menu__search-btn {
    color: #30397F;
    background-color: #fff;
  }
  .menu__search-btn:hover {
    color: #22285a;
  }
  .menu__search-btn-inner {
    position: relative;
    display: flex;
    align-items: center;
  }
  .menu__search-btn-inner svg {
    position: absolute;
    left: -33px;
  }
  .menu__search-btn-text {
    font-weight: 400;
  }
  .menu__icon {
    background: center left 45px no-repeat;
    background-size: 19px auto;
  }
}
@media screen and (max-width: 1149px) and (max-width: 768px) {
  .menu__icon {
    background-position-x: 35px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 425px) {
  .menu__icon {
    background-position-x: 25px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 375px) {
  .menu__icon {
    background-position-x: 20px;
  }
}
@media screen and (max-width: 1149px) {
  .menu__icon--fb {
    background-image: url("../web_images/ico_fb.svg");
  }
  .menu__icon--ig {
    background-image: url("../web_images/ico_ig.svg");
  }
  .menu__social-link {
    position: absolute;
    width: 25px;
    height: 25px;
    background: center no-repeat;
    background-size: contain;
    color: #30397F;
  }
  .menu__social-link:nth-child(1) {
    right: 205px;
  }
  .menu__social-link:nth-child(2) {
    right: 160px;
  }
  .menu__social-link:nth-child(3) {
    right: 115px;
  }
  .menu__social-link:nth-child(4) {
    right: 70px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 768px) {
  .menu__social-link:nth-child(1) {
    right: 195px;
  }
  .menu__social-link:nth-child(2) {
    right: 150px;
  }
  .menu__social-link:nth-child(3) {
    right: 105px;
  }
  .menu__social-link:nth-child(4) {
    right: 60px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 600px) {
  .menu__social-link:nth-child(1) {
    right: 175px;
  }
  .menu__social-link:nth-child(2) {
    right: 135px;
  }
  .menu__social-link:nth-child(3) {
    right: 95px;
  }
  .menu__social-link:nth-child(4) {
    right: 55px;
  }
}
@media screen and (max-width: 1149px) and (max-width: 375px) {
  .menu__social-link {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  .submenu {
    opacity: 0;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    background-color: #22285a;
    -moz-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
  }
  .menu__item--has-submenu.open .submenu, .menu__item--has-submenu.focus .submenu {
    opacity: 1;
    padding: 20px 0 30px;
    max-height: 700px;
  }
  .megamenu-block {
    display: block;
  }
  .megamenu-block:first-of-type {
    display: block;
  }
  .megamenu__title {
    display: none;
  }
  .hamburger-menu {
    position: relative;
    z-index: 10000;
    width: 40px;
    height: 40px;
    margin-left: auto;
  }
  .hamburger-menu .breadroll {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -15px;
  }
  .hamburger-menu .breadroll .beef,
  .hamburger-menu .breadroll .beef::before,
  .hamburger-menu .breadroll .beef::after {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: #30397F;
    border-radius: 5px;
    -moz-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    -webkit-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
  }
  .hamburger-menu .breadroll .beef::before {
    top: 10px;
    content: "";
    opacity: 1;
  }
  .hamburger-menu .breadroll .beef::after {
    top: 20px;
    content: "";
  }
  .hamburger-menu.active .breadroll .beef {
    -webkit-transform: translate3d(0px, 10px, 0px) rotate(45deg);
    -moz-transform: translate3d(0px, 10px, 0px) rotate(45deg);
    -ms-transform: translate3d(0px, 10px, 0px) rotate(45deg);
    -o-transform: translate3d(0px, 10px, 0px) rotate(45deg);
    transform: translate3d(0px, 10px, 0px) rotate(45deg);
  }
  .hamburger-menu.active .breadroll .beef::before {
    opacity: 0;
  }
  .hamburger-menu.active .breadroll .beef::after {
    -webkit-transform: translate3d(0px, -20px, 0px) rotate(-90deg);
    -moz-transform: translate3d(0px, -20px, 0px) rotate(-90deg);
    -ms-transform: translate3d(0px, -20px, 0px) rotate(-90deg);
    -o-transform: translate3d(0px, -20px, 0px) rotate(-90deg);
    transform: translate3d(0px, -20px, 0px) rotate(-90deg);
  }
}
@media print {
  .header {
    display: none;
  }
}
/* Přepínač jazyků */
.lang-switcher {
  display: inline-flex;
  align-items: center;
}
.lang-switcher--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lang-switcher__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #30397F;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.lang-switcher__link:hover {
  color: #e91320;
}
.lang-switcher__link--disabled {
  pointer-events: none;
}

.lang-switcher__lang--cur {
  opacity: 0.45;
}
@media screen and (max-width: 600px) {
  .lang-switcher__lang--cur {
    opacity: 0.55;
  }
}
.lang-switcher__lang + .lang-switcher__lang:before {
  content: "/";
  margin: 0 2px;
  opacity: 0.45;
}
.lang-switcher__lang--disabled {
  opacity: 0.35;
  cursor: default;
}

.header__lang-top {
  display: none;
}

@media screen and (min-width: 600px) and (max-width: 1149px) {
  .header__lang-top {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 205px;
  }
  .header__lang-top .lang-switcher__link {
    font-size: 15px;
    color: #30397F;
  }
}
@media screen and (min-width: 600px) and (max-width: 1149px) and (max-width: 768px) {
  .header__lang-top {
    right: 195px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1149px) and (max-width: 650px) {
  .header__lang-top {
    right: 180px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1149px) {
  .menu__item--lang {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .menu__item--lang {
    padding: 31px 35px 31px 65px;
    background-color: #f1f5f8;
  }
}
@media screen and (max-width: 600px) and (max-width: 425px) {
  .menu__item--lang {
    padding-left: 55px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 600px) and (max-width: 375px) {
  .menu__item--lang {
    padding-left: 50px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .lang-switcher__link {
    font-size: 18px;
  }
}
.breadcrumb-menu {
  padding: 0 45px;
  margin-top: 140px;
  font-size: 16px;
  color: #fff;
  background-color: #30397F;
}
@media screen and (max-width: 1280px) {
  .breadcrumb-menu {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb-menu {
    padding: 0 35px;
  }
}
@media screen and (max-width: 480px) {
  .breadcrumb-menu {
    margin-top: 75px;
  }
}
@media screen and (max-width: 425px) {
  .breadcrumb-menu {
    padding: 0 25px;
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .breadcrumb-menu {
    padding: 0 20px;
  }
}

.breadcrumb-menu__items {
  line-height: 1;
  margin: 0 auto;
  max-width: 1420px;
  padding: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-menu__item {
  display: inline;
}

.breadcrumb-menu__item__home {
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 19px;
  background: url("../web_images/home.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 425px) {
  .breadcrumb-menu__item__home {
    width: 15px;
    height: 17px;
  }
}

.breadcrumb-menu__separator {
  display: inline;
  padding: 0 8px;
  font-weight: 900;
}

.breadcrumb-menu a {
  text-decoration: underline transparent;
}
.breadcrumb-menu a:hover {
  text-decoration: underline;
}

/* Obsah webu */
.bg-logo {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  display: block;
  background: no-repeat;
  background-size: contain;
  /*&--left-rotate {
      @include transform(rotate(210deg));
  }
  &--right-rotate {
      right: 50px;
      @include transform(rotate(200deg));
  }*/
}
.bg-logo--butterfly {
  top: 20%;
  left: 50px;
  height: 150px;
  width: 175px;
  background-image: url("../web_images/bg_1.png");
  background-position: center right;
}
@media screen and (min-width: 1921px) {
  .bg-logo--butterfly {
    left: 5vw;
  }
}
@media screen and (min-width: 2200px) {
  .bg-logo--butterfly {
    left: 7vw;
  }
}
.bg-logo--cloud-left {
  overflow: hidden;
  bottom: 20%;
  left: 0;
  height: 280px;
  width: 215px;
}
@media screen and (min-width: 2200px) {
  .bg-logo--cloud-left {
    left: 2vw;
    width: 385px;
  }
}
@media screen and (min-width: 2400px) {
  .bg-logo--cloud-left {
    left: 3vw;
  }
}
.bg-logo--cloud-left:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../web_images/bg_2.png") center right no-repeat;
  background-size: cover;
}
.bg-logo--cloud-right {
  top: 33%;
  right: 0;
  height: 280px;
  width: 190px;
}
@media screen and (min-width: 2200px) {
  .bg-logo--cloud-right {
    width: 360px;
  }
}
@media screen and (min-width: 2400px) {
  .bg-logo--cloud-right {
    right: 3vw;
  }
}
.bg-logo--cloud-right:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../web_images/bg_2.png") center left no-repeat;
  background-size: cover;
}
.bg-logo--baloon {
  overflow: hidden;
  bottom: 10%;
  right: 0;
  height: 425px;
  width: 205px;
  /*background-image: url("../web_images/bg_3.png");
  background-position: center left;*/
}
@media screen and (min-width: 2200px) {
  .bg-logo--baloon {
    width: 325px;
  }
}
@media screen and (min-width: 2400px) {
  .bg-logo--baloon {
    right: 3vw;
  }
}
.bg-logo--baloon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../web_images/bg_3.png") center left no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1850px) {
  .bg-logo {
    display: none;
  }
}

.hero {
  position: relative;
  background: #e6e6e6 no-repeat top center;
  background-size: cover;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 70%;
  height: 100%;
  opacity: 0.9;
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: transparent linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%) 0 0 no-repeat padding-box;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .hero:before {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .hero:before {
    width: 100%;
  }
}
.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 50%;
  min-width: 600px;
  height: 100%;
  background: url("../web_images/shapes/shapes_1.svg?v=2") center bottom no-repeat;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .hero:after {
    width: 60%;
    min-width: initial;
  }
}
@media screen and (max-width: 900px) {
  .hero:after {
    display: none;
  }
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  height: 80vh;
  max-height: 900px;
  min-height: 800px;
  z-index: 1;
}

.hero__text-wrapper {
  max-width: 700px;
}

.hero__heading {
  display: inline;
  line-height: 1.1944444444;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 72px;
  font-weight: 500;
  color: #3C479C;
}

.hero__heading-inner-red {
  color: #ef404a;
}

.hero__heading-inner {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  -ms-transition-delay: 1s;
  transition-delay: 1s;
}
.hero__heading-inner.lines-split {
  display: flex;
  flex-direction: column;
}
.slide-active .hero__heading-inner {
  opacity: 1;
  -moz-transition: all 0.5s 0s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.5s 0s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: all 0.5s 0s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.5s 0s cubic-bezier(0, 0, 0.2, 1);
}

.hero__heading-line-wrapper {
  position: relative;
  display: inline-flex;
}

.hero__heading-line {
  position: relative;
  display: block;
  -moz-transition: all 0.7s 0s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.7s 0s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: all 0.7s 0s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.7s 0s cubic-bezier(0, 0, 0.2, 1);
  clip-path: inset(0 100% 0 0);
}
.slide-active .hero__heading-line {
  clip-path: inset(0);
}
.hero__heading-line-wrapper:nth-child(1) .hero__heading-line {
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  -ms-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.slide-active .hero__heading-line-wrapper:nth-child(1) .hero__heading-line {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  -ms-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.hero__heading-line-wrapper:nth-child(2) .hero__heading-line {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  -ms-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.slide-active .hero__heading-line-wrapper:nth-child(2) .hero__heading-line {
  -webkit-transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
  -ms-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.hero__heading-line-wrapper:nth-child(3) .hero__heading-line {
  -webkit-transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
  -ms-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.slide-active .hero__heading-line-wrapper:nth-child(3) .hero__heading-line {
  -webkit-transition-delay: 0.65s;
  -moz-transition-delay: 0.65s;
  -o-transition-delay: 0.65s;
  -ms-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.hero__heading-line-wrapper:nth-child(4) .hero__heading-line {
  -webkit-transition-delay: 0.65s;
  -moz-transition-delay: 0.65s;
  -o-transition-delay: 0.65s;
  -ms-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.slide-active .hero__heading-line-wrapper:nth-child(4) .hero__heading-line {
  -webkit-transition-delay: 0.85s;
  -moz-transition-delay: 0.85s;
  -o-transition-delay: 0.85s;
  -ms-transition-delay: 0.85s;
  transition-delay: 0.85s;
}
.hero__heading-line-wrapper:nth-child(5) .hero__heading-line {
  -webkit-transition-delay: 0.85s;
  -moz-transition-delay: 0.85s;
  -o-transition-delay: 0.85s;
  -ms-transition-delay: 0.85s;
  transition-delay: 0.85s;
}
.slide-active .hero__heading-line-wrapper:nth-child(5) .hero__heading-line {
  -webkit-transition-delay: 1.05s;
  -moz-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
  -ms-transition-delay: 1.05s;
  transition-delay: 1.05s;
}
.hero__heading-line-wrapper:nth-child(6) .hero__heading-line {
  -webkit-transition-delay: 1.05s;
  -moz-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
  -ms-transition-delay: 1.05s;
  transition-delay: 1.05s;
}
.slide-active .hero__heading-line-wrapper:nth-child(6) .hero__heading-line {
  -webkit-transition-delay: 1.25s;
  -moz-transition-delay: 1.25s;
  -o-transition-delay: 1.25s;
  -ms-transition-delay: 1.25s;
  transition-delay: 1.25s;
}

.hero__subheading {
  margin-top: 25px;
  font-size: 24px;
  line-height: 1.25;
  color: #3C479C;
  opacity: 0;
  transition: all 0.6s 0s cubic-bezier(0, 0, 0.2, 1);
}
.slide-active .hero__subheading {
  opacity: 1;
  transition: all 0.6s 0s cubic-bezier(0, 0, 0.2, 1);
}

.hero__btns-wrapper {
  display: flex;
  margin-top: 25px;
  opacity: 0;
  transition: all 0.6s 0s cubic-bezier(0, 0, 0.2, 1);
}
.slide-active .hero__btns-wrapper {
  opacity: 1;
  transition: all 0.6s 0s cubic-bezier(0, 0, 0.2, 1);
}

@media screen and (min-width: 541px) {
  .hero__btn-wrapper + .hero__btn-wrapper {
    margin-left: 15px;
  }
  .hero__founder {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: block;
    width: 240px;
    height: 105px;
    text-align: right;
    font-size: 0;
    font-weight: 700;
    color: #fff;
    background: url("../web_images/logo-ok.svg") center no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 541px) and (min-width: 1081px) {
  .hero__founder {
    bottom: 180px;
  }
}
@media screen and (max-width: 1440px) {
  .hero__content {
    max-height: 800px;
    min-height: 700px;
  }
  .hero__text-wrapper {
    max-width: 600px;
  }
  .hero__heading {
    font-size: 54px;
  }
}
@media screen and (max-width: 1080px) {
  .hero__content {
    max-height: 600px;
    min-height: 550px;
  }
  .hero__text-wrapper {
    max-width: 500px;
    padding-top: 70px;
  }
  .hero__heading {
    font-size: 48px;
  }
  .hero__subheading {
    margin-top: 15px;
    font-size: 26px;
  }
}
@media screen and (max-width: 840px) {
  .hero__content {
    max-height: 650px;
    min-height: 500px;
  }
  .hero__heading {
    font-size: 46px;
  }
  .hero__founder {
    width: 200px;
    height: 85px;
  }
}
@media screen and (max-width: 768px) {
  .hero__text-wrapper {
    max-width: 450px;
  }
  .hero__heading {
    font-size: 44px;
  }
  .hero__subheading {
    margin-top: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .hero__content {
    max-height: 550px;
    min-height: 500px;
  }
  .hero__text-wrapper {
    max-width: 400px;
  }
  .hero__heading {
    font-size: 40px;
  }
  .hero__heading br {
    display: none;
  }
  .hero__btns-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .hero__founder {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hero__content {
    max-height: 500px;
    min-height: 450px;
  }
  .hero__heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 425px) {
  .hero__heading {
    font-size: 34px;
  }
  .hero__subheading {
    font-size: 22px;
  }
}
@media screen and (max-width: 375px) {
  .hero__heading {
    font-size: 30px;
  }
  .hero__subheading {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .hero__heading {
    font-size: 28px;
  }
}
.content-wrapper--compact-slider {
  position: relative;
}
.content-wrapper--compact-slider--admin {
  background-color: #d8d8d8;
}

.content--compact-slider {
  position: relative;
  padding: 0;
}

.compact-slider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.content-wrapper--compact-slider-admin .compact-slider-wrapper {
  position: static;
}

.compact-slider-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.compact-slider {
  position: relative;
  padding: 0 15px;
  width: 25%;
}

.compact-slider__link {
  display: block;
  height: 100%;
  line-height: 1.45;
  padding: 23px 25px 25px;
  background-color: #fff;
}
.compact-slider__link:hover {
  background-color: #f7f7f7;
}

.compact-slider__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.compact-slider__no-wrap {
  white-space: nowrap;
}

.compact-slider__tags-wrapper {
  display: flex;
}

.compact-slider__tag {
  color: #000;
}

.compact-slider__more-tags {
  cursor: help;
  margin-left: 5px;
  text-align: center;
  width: 19px;
  color: #fff;
  background-color: #000;
}
.compact-slider__more-tags:hover {
  background-color: #3c3c3b;
}

.compact-slider__title {
  line-height: 1.2083333333;
  font-size: 24px;
}
.compact-slider__info + .compact-slider__title {
  margin-top: 10px;
}

@media screen and (max-width: 1680px) {
  .compact-slider__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1440px) {
  .compact-slider-list {
    margin: 0 -10px;
  }
  .compact-slider {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1280px) {
  .compact-slider-list {
    margin: 0;
  }
  .compact-slider {
    padding: 0;
  }
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  .compact-slider:nth-child(odd) .compact-slider__link {
    background-color: #f2f2f2;
  }
}
@media screen and (max-width: 1280px) {
  .compact-slider__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .content-wrapper--compact-slider {
    padding: 0;
  }
  .content--compact-slider {
    flex-direction: column;
    align-items: flex-start;
  }
  .compact-slider-wrapper {
    position: static;
  }
  .compact-slider {
    width: 50%;
  }
  .compact-slider__link {
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .compact-slider:nth-child(2) .compact-slider__link, .compact-slider:nth-child(3) .compact-slider__link {
    background-color: #f2f2f2;
  }
}
@media screen and (max-width: 1024px) {
  .compact-slider__info {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .compact-slider {
    width: 100%;
  }
  .compact-slider--admin {
    display: block;
  }
  .compact-slider__link {
    padding: 20px 35px;
  }
  .compact-slider:nth-child(odd) .compact-slider__link {
    background-color: #f2f2f2;
  }
}
@media screen and (max-width: 425px) {
  .compact-slider__link {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 375px) {
  .compact-slider__link {
    padding: 20px 20px;
  }
}
/*.blocks-offset {
    @media screen and (min-width: 1201px) {
        height: 220px;
    }
}

.blocks-wrapper {

}*/
@media screen and (max-width: 1080px) {
  .blocks__content {
    padding-bottom: 0;
  }
}

.blocks-list {
  z-index: 1;
  position: relative;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
}

.blocks {
  z-index: 1;
  position: relative;
  display: flex;
  color: #1C2252;
  background-color: #E4E4E4;
}
.blocks:nth-of-type(even) {
  color: #fff;
  background-color: #1C2252;
}
@media screen and (max-width: 1200px) {
  .blocks {
    flex-direction: column;
    margin: 0 -45px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .blocks {
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 425px) {
  .blocks {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 375px) {
  .blocks {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.blocks__img-wrapper {
  background: #e3e3e3 center no-repeat;
  background-size: cover;
  padding-top: 50%;
}
@media screen and (max-width: 1080px) {
  .blocks__img-wrapper {
    padding-top: 0;
    height: 50vh;
    max-height: 400px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__img-wrapper {
    padding-top: 100%;
    height: auto;
    max-height: none;
  }
}

.blocks__text-wrapper {
  padding: 70px 7% 50px;
}
@media screen and (max-width: 1440px) {
  .blocks__text-wrapper {
    padding: 60px 80px 50px;
  }
}
@media screen and (max-width: 1200px) {
  .blocks__text-wrapper {
    padding: 50px 45px 40px;
  }
}
@media screen and (max-width: 768px) {
  .blocks__text-wrapper {
    padding: 50px 35px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__text-wrapper {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 375px) {
  .blocks__text-wrapper {
    padding: 35px 20px;
  }
}

.blocks__title {
  position: relative;
  margin-bottom: 40px;
  line-height: 1.1;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .blocks__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .blocks__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__title {
    font-size: 26px;
  }
}

.blocks__highlighted-text {
  color: #ef404a;
}
.blocks:nth-of-type(even) .blocks__highlighted-text {
  color: inherit;
  text-decoration: underline;
}

.blocks__spacer {
  margin-top: 40px;
}

.blocks__ico-text {
  margin-top: 65px;
  max-width: 768px;
  display: flex;
}
@media screen and (max-width: 540px) {
  .blocks__ico-text {
    margin-top: 60px;
  }
}
@media screen and (max-width: 375px) {
  .blocks__ico-text {
    flex-direction: column;
  }
}
.blocks__ico-text + .blocks__ico-text {
  margin-top: 30px;
}
@media screen and (max-width: 540px) {
  .blocks__ico-text + .blocks__ico-text {
    margin-top: 20px;
  }
}

.blocks__ico {
  margin-right: 30px;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: top center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .blocks__ico {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 1280px) {
  .blocks__ico {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .blocks__ico {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 540px) {
  .blocks__ico {
    margin-right: 25px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__ico {
    margin-right: 20px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 375px) {
  .blocks__ico {
    margin-bottom: 15px;
  }
}

.blocks__text {
  max-width: 768px;
  line-height: 1.3;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .blocks__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__text {
    font-size: 17px;
  }
}
.blocks__text--simple {
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .blocks__text--simple {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__text--simple {
    font-size: 16px;
  }
}
.blocks__text h4 {
  margin-top: 30px;
  line-height: 1.2;
  font-size: 32px;
}
@media screen and (max-width: 1280px) {
  .blocks__text h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .blocks__text h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 540px) {
  .blocks__text h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .blocks__text h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__text h4 {
    margin-top: 20px;
    font-size: 22px;
  }
}
.blocks__text h4:first-child {
  margin-top: 0;
}
.blocks__text p {
  margin-top: 20px;
}
@media screen and (max-width: 425px) {
  .blocks__text p {
    margin-top: 15px;
  }
}
.blocks__text p:first-child {
  margin-top: 0;
}
.blocks__text ul {
  margin-top: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 425px) {
  .blocks__text ul {
    margin-top: 15px;
    margin-left: 5px;
  }
}
.blocks__text ul ul {
  margin-top: 10px;
  margin-left: 0;
}
@media screen and (max-width: 425px) {
  .blocks__text ul ul {
    margin-top: 5px;
  }
}
.blocks__text ul:first-child {
  margin-top: 0;
}
.blocks__text li {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 425px) {
  .blocks__text li {
    padding-left: 15px;
  }
}
.blocks__text li + li {
  margin-top: 5px;
}
.blocks__text li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ef404a;
}
.blocks:nth-of-type(even) .blocks__text li:before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .blocks__text li:before {
    top: 5px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__text li:before {
    top: 5px;
    width: 8px;
    height: 8px;
  }
}
.blocks__text strong {
  font-weight: 700;
}

.blocks__link.btn {
  margin-top: 30px;
  color: #fff;
  background-color: #30397F;
}
.blocks__link.btn:hover {
  color: #fff;
  background-color: #1C2252;
}
.blocks:nth-of-type(even) .blocks__link.btn {
  color: #1C2252;
  background-color: #fff;
}
.blocks:nth-of-type(even) .blocks__link.btn:hover {
  color: #fff;
  background-color: #30397F;
}
@media screen and (max-width: 1280px) {
  .blocks__link.btn {
    margin-top: 25px;
  }
}
@media screen and (max-width: 425px) {
  .blocks__link.btn {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1081px) {
  /*.blocks__wrapper + .content-wrapper .content {
      padding-top: 220px;

      @media screen and (max-width: 1200px) {
          padding-top: 190px;
      }
  }

  .blocks-container {
      margin-bottom: -220px;

      @media screen and (max-width: 1200px) {
          margin-bottom: -190px;
      }
  }*/
  .blocks {
    flex-direction: row;
    align-items: center;
  }
  .blocks:nth-of-type(even) {
    flex-direction: row-reverse;
    background-color: #1C2252;
  }
  .blocks__img-wrapper,
  .blocks__text-wrapper {
    flex-shrink: 0;
    width: 50%;
  }
  /*.blocks:nth-of-type(even) .blocks__link {
      flex-direction: row;
      color: $color-black;
      background-color: $color-yellow;

      &:hover {
          background-color: $color-yellow-hover;
      }
  }*/
}
.columns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
@media screen and (max-width: 1440px) {
  .columns-list {
    grid-gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .columns-list {
    grid-gap: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .columns-list {
    grid-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .columns-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
    margin: 0 auto;
    max-width: 425px;
  }
}

.columns {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .columns {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .columns {
    flex-direction: row;
  }
}
@media screen and (max-width: 480px) {
  .columns {
    flex-direction: row;
  }
}
@media screen and (max-width: 425px) {
  .columns {
    flex-direction: column;
  }
}

.columns__img-wrapper {
  flex-shrink: 0;
  padding-top: 48%;
  width: 48%;
  background: center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .columns__img-wrapper {
    padding-top: 40%;
    width: 40%;
  }
}
@media screen and (max-width: 1200px) {
  .columns__img-wrapper {
    padding-top: 40%;
    width: 40%;
  }
}
@media screen and (max-width: 1080px) {
  .columns__img-wrapper {
    padding-top: 65%;
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .columns__img-wrapper {
    padding-top: 175px;
    width: 175px;
  }
}
@media screen and (max-width: 480px) {
  .columns__img-wrapper {
    padding-top: 150px;
    width: 150px;
  }
}
@media screen and (max-width: 425px) {
  .columns__img-wrapper {
    padding-top: 200px;
    width: 200px;
  }
}

.columns__title {
  margin-left: 45px;
  line-height: 1.3333333333;
  font-size: 24px;
}
@media screen and (max-width: 1440px) {
  .columns__title {
    margin-left: 40px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .columns__title {
    margin-left: 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .columns__title {
    max-width: 65%;
    margin: 25px auto 0;
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .columns__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .columns__title {
    margin-left: 45px;
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .columns__title {
    margin-left: 30px;
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .columns__title {
    max-width: 200px;
    margin: 25px auto 0;
    font-size: 20px;
  }
}

.compact-hp-list,
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 80px 60px;
}

@media screen and (max-width: 1200px) {
  .news-hp-list,
  .compact-hp-list,
  .news-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px 40px;
  }
}
@media screen and (max-width: 1080px) {
  .news-hp-list,
  .compact-hp-list,
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .news-hp-list,
  .compact-hp-list,
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 35px;
  }
}

.news-hp,
.compact-hp,
.news {
  position: relative;
}

@media screen and (max-width: 767px) {
  .news-hp,
  .news {
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media screen and (max-width: 767px) and (max-width: 425px) {
  .news-hp,
  .news {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 767px) and (max-width: 375px) {
  .news-hp,
  .news {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.news__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.news__img-wrapper {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding-top: 56.25%;
  background: #d8d8d8 center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .news__img-wrapper {
    padding-top: 0;
    height: 50vh;
    max-height: 400px;
  }
}
@media screen and (max-width: 425px) {
  .news__img-wrapper {
    padding-top: 56.25%;
    height: auto;
    max-height: none;
  }
}

.news__img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%) scale(1.0001);
  -moz-transform: translate(-50%, -50%) scale(1.0001);
  -ms-transform: translate(-50%, -50%) scale(1.0001);
  -o-transform: translate(-50%, -50%) scale(1.0001);
  transform: translate(-50%, -50%) scale(1.0001);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.news__link:hover .news__img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.news__tags {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.news__tag {
  padding: 13px 16px;
  color: #3c479d;
  background-color: #dbdad5;
}
.news__tag--2 {
  background-color: #d2d0ca;
}
.news__tag--4 {
  background-color: #d2d0ca;
}
.news__tag--6 {
  background-color: #d2d0ca;
}
.news__tag--8 {
  background-color: #d2d0ca;
}
.news__tag--10 {
  background-color: #d2d0ca;
}
.news__tag--dulezite {
  background-color: #c62d36;
  color: #fff;
}
.news__tag--gymnazium {
  background-color: #30397F;
  color: #fff;
}
.news__tag--zakladni-skola {
  background-color: #ffce00;
  color: #000;
}
@media screen and (max-width: 425px) {
  .news__tag {
    padding: 10px 10px;
    font-size: 16px;
  }
}

.news__text-wrapper {
  margin-top: 20px;
}
.news__text-wrapper--compact {
  margin-top: 0;
}

.news__date {
  padding-top: 4px;
  padding-left: 40px;
  line-height: 28px;
  font-size: 18px;
  background: url("../web_images/ico_event-date-blue.svg") center left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .news__date {
    padding-left: 35px;
    line-height: 22px;
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .news__date {
    padding-left: 30px;
    line-height: 18px;
    font-size: 16px;
  }
}
.news__date--compact {
  padding-left: 30px;
  line-height: 18px;
}
.content-wrapper--blue .news__date {
  background-image: url("../web_images/ico_event-date.svg");
}

.news__no-wrap {
  white-space: nowrap;
}

.news__title {
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.2;
  font-size: 28px;
  font-weight: 800;
  -moz-transition: color ease-in-out 300ms;
  -o-transition: color ease-in-out 300ms;
  -webkit-transition: color ease-in-out 300ms;
  transition: color ease-in-out 300ms;
}
.news__date + .news__title {
  margin-top: 15px;
}
@media screen and (max-width: 1200px) {
  .news__date + .news__title--compact {
    margin-top: 10px;
  }
}
.news__link:hover .news__title {
  color: #d9121e;
}
@media screen and (max-width: 1440px) {
  .news__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .news__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .news__title {
    margin: 10px 0 15px;
  }
}
.news__title--compact {
  font-size: 24px;
}
@media screen and (max-width: 1440px) {
  .news__title--compact {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .news__title--compact {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.content-wrapper--blue .news__link:hover .news__title {
  color: #ffce00;
}

.news__perex {
  margin: 20px 0;
  line-height: 1.3333333333;
  max-height: 69px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 425px) {
  .news__perex {
    margin: 15px 0;
    max-height: 63px;
    font-size: 16px;
  }
}

.news__more {
  margin-top: auto;
  text-decoration: underline;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.news__link:hover .news__more {
  color: #d9121e;
}
.content-wrapper--blue .news__link:hover .news__more {
  color: #ffce00;
}

@media screen and (max-width: 768px) {
  .news__more,
  .news__text-wrapper {
    padding: 0 45px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .news__more,
  .news__text-wrapper {
    padding: 0 35px;
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .news__more,
  .news__text-wrapper {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .news__more,
  .news__text-wrapper {
    padding: 0 20px;
  }
}
.event-date {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .event-date {
    margin-bottom: 20px;
  }
}

.event-date__inner {
  padding-top: 4px;
  padding-left: 40px;
  line-height: 28px;
  font-size: 18px;
  background: url("../web_images/ico_event-date-blue.svg") center left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .event-date__inner {
    padding-left: 38px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .event-date__inner {
    padding-left: 35px;
    line-height: 22px;
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .event-date__inner {
    padding-left: 30px;
    line-height: 18px;
    font-size: 16px;
  }
}

.news-hp-list {
  display: grid;
  /*@media screen and (max-width: 1200px) {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 60px 30px;
  }*/
}
@media screen and (min-width: 1201px) {
  .news-hp-list {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 80px;
    grid-template-areas: "no-0 no-0 no-1 no-1" "no-0 no-0 no-2 no-2" "no-0 no-0 no-3 no-3";
  }
}
@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .news-hp-list {
    grid-row-gap: 60px;
  }
}

.news-hp {
  position: relative;
}
@media screen and (min-width: 1201px) {
  .news-hp:nth-child(1) {
    grid-area: no-0;
  }
  .news-hp:nth-child(2) {
    grid-area: no-1;
  }
  .news-hp:nth-child(3) {
    grid-area: no-2;
  }
  .news-hp:nth-child(4) {
    grid-area: no-3;
  }
  .news-hp + .news-hp:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    display: block;
    height: 1px;
    background-color: #CED2D8;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .news-hp + .news-hp:before {
    top: -30px;
  }
}
@media screen and (min-width: 1201px) {
  .news-hp:nth-child(1) + .news-hp:before {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .news-hp__link {
    display: flex;
  }
  .news-hp:nth-child(1) .news-hp__link {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .news-hp__link {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .news-hp__item {
    display: none;
  }
}

.news-hp__img-wrapper {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #d8d8d8 center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1201px) {
  .news-hp__img-wrapper {
    margin-right: 35px;
    width: 140px;
    height: 140px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .news-hp__img-wrapper {
    margin-right: 25px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 1201px) {
  .news-hp:nth-child(1) .news-hp__img-wrapper {
    width: auto;
    padding-top: 56.25%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .news-hp__img-wrapper {
    width: 100%;
    padding-top: 56.25%;
  }
}

.news-hp__img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%) scale(1.0001);
  -moz-transform: translate(-50%, -50%) scale(1.0001);
  -ms-transform: translate(-50%, -50%) scale(1.0001);
  -o-transform: translate(-50%, -50%) scale(1.0001);
  transform: translate(-50%, -50%) scale(1.0001);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.news-hp__link:hover .news-hp__img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (min-width: 1201px) {
  .news-hp:nth-child(1) .news-hp__text-wrapper {
    margin-top: 35px;
  }
}

.news-hp__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.news-hp__event-date {
  padding-top: 4px;
  padding-left: 40px;
  line-height: 28px;
  font-size: 18px;
  background: url("../web_images/ico_event-date-blue.svg") center left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .news-hp__event-date {
    padding-left: 35px;
    line-height: 22px;
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .news-hp__event-date {
    padding-left: 30px;
    line-height: 18px;
    font-size: 16px;
  }
}
.content-wrapper--blue .news-hp__event-date {
  background-image: url("../web_images/ico_event-date.svg");
}

.news-hp__no-wrap {
  white-space: nowrap;
}

.news-hp__tags-wrapper {
  display: flex;
}

.news-hp__tags {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.news-hp__tag {
  padding: 12px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #3c479d;
  background-color: #dbdad5;
}
.news-hp__tag--dulezite {
  background-color: #c62d36;
  color: #fff;
}
.news-hp__tag--gymnazium {
  background-color: #30397F;
  color: #fff;
}
.news-hp__tag--zakladni-skola {
  background-color: #ffce00;
  color: #000;
}
@media screen and (min-width: 1201px) {
  .news-hp__tag--mobile {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .news-hp__tag--desktop {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .news-hp__more-tags {
    cursor: help;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #ef404a;
  }
  .news-hp__more-tags:hover {
    background-color: #e91320;
  }
}
@media screen and (max-width: 1200px) {
  .news-hp__more-tags {
    display: none;
  }
}

.news-hp__date {
  margin-left: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #30397F;
}

.news-hp__title {
  line-height: 1.2;
  font-size: 36px;
  text-decoration: 2px underline;
  text-underline-offset: 5px;
  font-weight: 500;
  -moz-transition: color ease-in-out 300ms;
  -o-transition: color ease-in-out 300ms;
  -webkit-transition: color ease-in-out 300ms;
  transition: color ease-in-out 300ms;
}
.news-hp__info + .news-hp__title {
  margin-top: 15px;
}
@media screen and (min-width: 1201px) {
  .news-hp:nth-child(1) .news-hp__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .news-hp:nth-child(1) .news-hp__title {
    font-size: 38px;
  }
}
.news-hp__link:hover .news-hp__title {
  color: #e91320;
}
.content-wrapper--blue .news-hp__link:hover .news-hp__title {
  color: #ffce00;
}

@media screen and (max-width: 1440px) {
  .news-hp__tag,
  .news-hp__more-tags {
    padding: 8px 10px;
    font-size: 16px;
  }
  .news-hp__date {
    font-size: 18px;
  }
  .news-hp__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .content-wrapper-quotations {
    padding: 0 65px;
  }
}
@media screen and (max-width: 540px) {
  .content-wrapper-quotations {
    padding: 0 55px;
  }
}
@media screen and (max-width: 425px) {
  .content-wrapper-quotations {
    padding: 0 50px;
  }
}

.quotations-wrapper:not(.quotations-wrapper--admin) {
  margin: 0 auto;
}

.quotations-list:not(.slick-initialized) {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -40px -20px;
}
@media screen and (max-width: 900px) {
  .quotations-list:not(.slick-initialized) {
    margin: -25px auto;
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .quotations-list:not(.slick-initialized) {
    margin: -20px auto;
  }
}

.quotations {
  position: relative;
  outline: none;
  padding: 0 20px;
}
.quotations-list:not(.slick-initialized) .quotations {
  margin: 40px 20px;
  width: calc(50% - 40px);
}
@media screen and (max-width: 900px) {
  .quotations-list:not(.slick-initialized) .quotations {
    margin: 25px 0;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .quotations-list:not(.slick-initialized) .quotations {
    margin: 20px 0;
  }
}

.quotations__img-wrapper {
  margin: 0 auto;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background: center no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.quotations__img-wrapper--no-image {
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 425px) {
  .quotations__img-wrapper {
    width: 125px;
    height: 125px;
  }
}

.quotations__text-wrapper {
  margin-top: 35px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .quotations__text-wrapper {
    font-size: 16px;
  }
}

.quotations__quote {
  display: block;
  line-height: 1.4285714286;
  font-weight: 500;
  font-style: italic;
}

.quotations__name {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .quotations__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .quotations__name {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .quotations__name {
    font-size: 19px;
  }
}

.quotations__profession {
  margin-top: 5px;
  color: #d9121e;
}
.content-wrapper--theme-yellow .quotations__profession {
  color: initial;
}
.content-wrapper--blue .quotations__profession {
  color: #ffce00;
}

@media screen and (max-width: 900px) {
  .quotations.active {
    display: block;
  }
  .more-block-quotations-wrapper {
    text-align: center;
  }
}
@media screen and (min-width: 901px) {
  .more-quotations-wrapper,
  .more-block-quotations-wrapper {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  .more-quotations-wrapper--detail {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .more-block-quotations-wrapper {
    background-color: #ebebeb;
  }
}
@media screen and (max-width: 550px) and (max-width: 768px) {
  .more-block-quotations-wrapper {
    padding-bottom: 50px;
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media screen and (max-width: 550px) and (max-width: 425px) {
  .more-block-quotations-wrapper {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 550px) and (max-width: 375px) {
  .more-block-quotations-wrapper {
    padding-bottom: 40px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 550px) {
  .more-block-quotations {
    background-color: #fff;
  }
}
.quotations-wrapper:not(.quotations-long-wrapper--admin) {
  margin: 0 auto;
}

.quotations-long-list:not(.slick-initialized) {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -40px -20px;
}
@media screen and (max-width: 900px) {
  .quotations-long-list:not(.slick-initialized) {
    margin: -25px auto;
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .quotations-long-list:not(.slick-initialized) {
    margin: -20px auto;
  }
}

.quotations-long {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  outline: none;
  padding: 0 20px;
}
.quotations-long-list:not(.slick-initialized) .quotations-long {
  margin: 40px 20px;
  width: calc(50% - 40px);
}
@media screen and (max-width: 900px) {
  .quotations-long-list:not(.slick-initialized) .quotations-long {
    margin: 25px 0;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .quotations-long-list:not(.slick-initialized) .quotations-long {
    margin: 20px 0;
  }
}
@media screen and (max-width: 1280px) {
  .quotations-long {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .quotations-long {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
  }
}
.quotations-long p + p {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .quotations-long p + p {
    margin-top: 12px;
  }
}
.quotations-long strong {
  font-weight: 600;
}

.quotations-long__left-wrapper {
  position: relative;
  max-width: 600px;
}
.quotations-long__left-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../web_images/quote.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .quotations-long__left-wrapper:before {
    width: 25px;
    height: 25px;
    left: -40px;
  }
}
@media screen and (max-width: 768px) {
  .quotations-long__left-wrapper:before {
    display: none;
  }
}
.quotations-wrapper--admin .quotations-long__left-wrapper:before {
  display: none;
}
.content-wrapper--blue .quotations-long__left-wrapper:before {
  background-image: url("../web_images/quote-light.svg");
}

.quotations-long__img-wrapper {
  margin: 0 auto;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: center no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.quotations-long__img-wrapper--no-image {
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .quotations-long__img-wrapper {
    width: 175px;
    height: 175px;
  }
}
@media screen and (max-width: 1024px) {
  .quotations-long__img-wrapper {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 425px) {
  .quotations-long__img-wrapper {
    width: 125px;
    height: 125px;
  }
}

.quotations-long__right-wrapper {
  text-align: center;
  font-size: 21px;
}
@media screen and (max-width: 1200px) {
  .quotations-long__right-wrapper {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .quotations-long__right-wrapper {
    font-size: 19px;
  }
}
@media screen and (max-width: 680px) {
  .quotations-long__right-wrapper {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .quotations-long__right-wrapper {
    font-size: 16px;
  }
}
.content-wrapper--blue .quotations-long__right-wrapper {
  color: #fff;
}

.quotations-long__quote {
  display: block;
  line-height: 1.4285714286;
  font-weight: 400;
  font-style: italic;
}

.quotations-long__name {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .quotations-long__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 680px) {
  .quotations-long__name {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .quotations-long__name {
    font-size: 19px;
  }
}

.quotations-long__profession {
  color: #d9121e;
}
.content-wrapper--blue .quotations-long__profession {
  color: #ffce00;
}

@media screen and (max-width: 900px) {
  .quotations-long.active {
    display: block;
  }
  .more-block-quotations-long-wrapper {
    text-align: center;
  }
}
@media screen and (min-width: 901px) {
  .more-quotations-long-wrapper,
  .more-block-quotations-long-wrapper {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  .more-quotations-long-wrapper--detail {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .content-wrapper-logos {
    padding: 0 65px;
  }
}
@media screen and (max-width: 540px) {
  .content-wrapper-logos {
    padding: 0 55px;
  }
}
@media screen and (max-width: 425px) {
  .content-wrapper-logos {
    padding: 0 50px;
  }
}

.logos-colorful-list:not(.slick-initialized),
.logos-list:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 50px;
}
@media screen and (max-width: 900px) {
  .logos-colorful-list:not(.slick-initialized),
  .logos-list:not(.slick-initialized) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .logos-colorful-list:not(.slick-initialized),
  .logos-list:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 425px) {
  .logos-colorful-list:not(.slick-initialized),
  .logos-list:not(.slick-initialized) {
    grid-gap: 13px;
  }
}
@media screen and (max-width: 350px) {
  .logos-colorful-list:not(.slick-initialized),
  .logos-list:not(.slick-initialized) {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}

.logos-colorful,
.logos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__link {
  height: 65px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.33;
}
.content-wrapper--blue .logos__link {
  opacity: 0.66;
}
.logos__link--colorful {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.logos__link:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.logos__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom-banner {
  position: relative;
  background-color: #30397F;
}
.bottom-banner + .bottom-banner {
  margin-top: 1px;
}

.bottom-banner-list {
  position: relative;
}

.bottom-banner__heading {
  font-size: 28px;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #fff;
}
.bottom-banner__heading:after {
  display: none;
}
.bottom-banner__heading--cta {
  display: block;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .bottom-banner__heading--cta {
    text-align: center;
  }
}

.bottom-banner__heading-gold {
  color: #30397F;
}

.bottom-banner__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .bottom-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bottom-banner__content {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .bottom-banner__content {
    padding: 35px 0;
  }
}
@media screen and (max-width: 425px) {
  .bottom-banner__content {
    padding: 30px 0;
  }
}
.bottom-banner__content--cta {
  justify-content: normal;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .bottom-banner__content--cta {
    display: block;
  }
}

.bottom-banner__btns {
  display: flex;
  align-self: center;
  gap: 25px;
}
@media screen and (max-width: 1280px) {
  .bottom-banner__btns {
    gap: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .bottom-banner__btns {
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .bottom-banner__btns {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .bottom-banner__btns {
    gap: 13px;
  }
}

.bottom-banner__btn {
  margin: 0;
  border-radius: 30px;
}
.bottom-banner__btn.more-btn {
  color: #1C2252;
  background-color: #fff;
}
.bottom-banner__btn.more-btn:hover {
  background-color: #1C2252;
  color: #fff;
}
.bottom-banner__btn--download {
  padding-right: 50px;
}
.bottom-banner__btn--download:after {
  content: "";
  position: absolute;
  right: 25px;
  width: 15px;
  height: 16px;
  background: url("../web_images/ico_download.svg") center left no-repeat;
  background-size: contain;
}
.compact-banner__inner--theme1 .bottom-banner__btn, .compact-banner__inner--theme3 .bottom-banner__btn, .compact-banner__inner--theme4 .bottom-banner__btn, .compact-banner__inner--theme5 .bottom-banner__btn {
  color: #3c3c3b;
  background-color: #ffce00;
}
.compact-banner__inner--theme1 .bottom-banner__btn:hover, .compact-banner__inner--theme3 .bottom-banner__btn:hover, .compact-banner__inner--theme4 .bottom-banner__btn:hover, .compact-banner__inner--theme5 .bottom-banner__btn:hover {
  background-color: #e6b900;
}
.compact-banner__inner--theme1 .bottom-banner__btn:nth-child(2), .compact-banner__inner--theme3 .bottom-banner__btn:nth-child(2), .compact-banner__inner--theme4 .bottom-banner__btn:nth-child(2), .compact-banner__inner--theme5 .bottom-banner__btn:nth-child(2) {
  background-color: #F2F3F5;
}
.compact-banner__inner--theme1 .bottom-banner__btn:nth-child(2):hover, .compact-banner__inner--theme3 .bottom-banner__btn:nth-child(2):hover, .compact-banner__inner--theme4 .bottom-banner__btn:nth-child(2):hover, .compact-banner__inner--theme5 .bottom-banner__btn:nth-child(2):hover {
  background-color: #e4e6ea;
}
.compact-banner__inner--theme2 .bottom-banner__btn {
  color: #3c3c3b;
  background-color: #fff;
}
.compact-banner__inner--theme2 .bottom-banner__btn:hover {
  background-color: #f2f2f2;
}
.bottom-banner--yellow-btn .bottom-banner__btn {
  color: #3c3c3b;
  background-color: #ffce00;
}
.bottom-banner--yellow-btn .bottom-banner__btn:hover {
  background-color: #e6b900;
}

/* Filtr */
.fields-filter {
  margin-bottom: 50px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .fields-filter {
    position: relative;
    display: block;
    width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .fields-filter {
    width: 170px;
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .fields-filter {
    margin-bottom: 40px;
    width: 165px;
    font-size: 16px;
  }
}

.fields-filter__prompt {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fields-filter__prompt {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 45px 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  .fields-filter__prompt {
    height: 50px;
    padding: 0 40px 0 15px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 425px) {
  .fields-filter__prompt {
    height: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__prompt:hover {
    color: #000;
    background-color: #fff;
  }
  .fields-filter.active .fields-filter__prompt {
    color: #000;
    background-color: #fff;
  }
  .fields-filter__prompt:after {
    content: "›";
    position: absolute;
    top: 11px;
    right: 20px;
    display: block;
    width: 10px;
    height: 39px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  .fields-filter__prompt:after {
    top: 7px;
    right: 15px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 425px) {
  .fields-filter__prompt:after {
    top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__prompt:hover:after {
    color: #000;
  }
  .fields-filter.active .fields-filter__prompt:after {
    color: #000;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@media screen and (max-width: 1024px) {
  .fields-filter__options-wrapper {
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: transparent;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  .fields-filter__options-wrapper {
    top: 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 425px) {
  .fields-filter__options-wrapper {
    top: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter.active .fields-filter__options-wrapper {
    pointer-events: auto;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
}

@media screen and (min-width: 1025px) {
  .fields-filter__options {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__options {
    padding: 5px 0 12px;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  .fields-filter__options {
    padding: 5px 0 7px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  .fields-filter__options {
    max-height: 230px;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__options::-webkit-scrollbar {
    width: 7px;
    background-color: rgba(0, 0, 0, 0.07);
    border: 0;
  }
  .fields-filter__options::-webkit-scrollbar-thumb {
    background-color: #000;
  }
  .fields-filter__options::-webkit-scrollbar-thumb:hover {
    background-color: black;
  }
  .fields-filter__options::-webkit-scrollbar-thumb:active {
    background-color: black;
  }
  .fields-filter.active .fields-filter__options {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.fields-filter__link {
  cursor: pointer;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
@media screen and (min-width: 1025px) {
  .fields-filter__link {
    min-width: 240px;
    padding: 20px 40px;
    line-height: 1.2;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #E1E4E8;
    border-top: 5px solid #fff;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .fields-filter__link {
    min-width: 0;
    padding: 15px 25px;
  }
}
@media screen and (min-width: 1025px) {
  .fields-filter__link + .fields-filter__link {
    margin-left: 32px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .fields-filter__link + .fields-filter__link {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .fields-filter__link.active {
    color: #fff;
    background-color: #000;
  }
  .fields-filter__link:hover {
    color: #000;
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__link {
    display: flex;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 900px) {
  .fields-filter__link {
    padding: 7px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .fields-filter__link.active {
    font-weight: 700;
  }
}

/* Polozky */
.fields-hp-wrapper .slick-track {
  display: block;
  margin: 0;
}
.fields-hp-wrapper .slick-prev {
  left: -45px;
}
.fields-hp-wrapper .slick-next {
  right: -45px;
}

.fields-list {
  margin: -16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fields-hp-wrapper .fields-list {
  display: block;
  width: auto;
  margin: 0 -16px;
}
@media screen and (max-width: 1750px) {
  .fields-hp-wrapper .fields-list {
    margin: 0 35px;
  }
}

.fields {
  position: relative;
  margin: 16px;
  width: calc(25% - 32px);
}
@media screen and (max-width: 1024px) {
  .fields {
    width: calc(33.3333333333% - 32px);
  }
}
@media screen and (max-width: 680px) {
  .fields {
    width: calc(50% - 32px);
  }
}
@media screen and (max-width: 425px) {
  .fields {
    width: calc(100% - 32px);
  }
}
.fields-hp-wrapper .fields {
  float: left;
  padding: 0;
  width: calc(25%);
}
@media screen and (max-width: 1024px) {
  .fields-hp-wrapper .fields {
    width: calc(33.3333333333%);
  }
}
@media screen and (max-width: 680px) {
  .fields-hp-wrapper .fields {
    width: calc(50%);
  }
}
@media screen and (max-width: 425px) {
  .fields-hp-wrapper .fields {
    width: calc(100%);
  }
}

.fields__link {
  color: #1C2252;
}

.fields__inner {
  position: relative;
  display: block;
  padding-top: 150%;
  background-color: #1C2252;
}

.fields__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.fields__link:hover .fields__img-wrapper {
  opacity: 0.3;
}

.fields__heading {
  margin-top: 15px;
  line-height: 1.25;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.fields__link:hover .fields__heading {
  text-decoration: underline transparent;
}
.content-wrapper--blue .fields__link:hover .fields__heading {
  color: #ef404a;
}
.content-wrapper--blue .fields__heading {
  color: #fff;
}

.fields__info {
  margin-top: 5px;
  line-height: 1.25;
}

.fields__btn.btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  color: #3c3c3b;
  background-color: #fff;
  opacity: 0;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.fields__btn.btn:hover {
  background-color: #000;
}
.fields__link:hover .fields__btn.btn {
  opacity: 1;
}

.fields__heading-image {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  font-size: 30px;
  line-height: 1.1666666667;
  font-weight: 700;
  color: #fff;
  opacity: 1;
  text-shadow: 6px 9px 34px rgba(21, 31, 63, 0.7490196078);
  text-transform: uppercase;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  .fields__heading-image {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .fields__heading-image {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .fields__heading-image {
    font-size: 24px;
  }
}
@media screen and (max-width: 425px) {
  .fields__heading-image {
    font-size: 22px;
  }
}
.fields__link:hover .fields__heading-image {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .fields__info {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .fields__inner {
    padding-top: 100%;
  }
  .fields__img-wrapper {
    background-position: center top;
  }
  .fields__info {
    font-size: 16px;
  }
}
.hero-detail-list {
  position: relative;
  min-height: 560px;
}

.hero-detail {
  padding: 80px 45px;
}
@media screen and (max-width: 1200px) {
  .hero-detail {
    padding: 70px 45px;
  }
}
@media screen and (max-width: 768px) {
  .hero-detail {
    padding: 60px 35px;
  }
}
@media screen and (max-width: 540px) {
  .hero-detail {
    padding: 0;
  }
}

.hero-detail__img-wrapper {
  background: #f4f4f2 center no-repeat;
  background-size: cover;
}

.hero-detail__text-wrapper {
  position: relative;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .hero-detail__text-wrapper {
    padding: 45px 35px 0;
  }
}
@media screen and (max-width: 425px) {
  .hero-detail__text-wrapper {
    padding: 30px 25px 0;
  }
}
@media screen and (max-width: 375px) {
  .hero-detail__text-wrapper {
    padding: 25px 20px 0;
  }
}

.hero-detail__field-category,
.hero-detail__field-name {
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.hero-detail__field-category {
  display: inline-block;
  padding: 13px 20px 11px;
  font-size: 28px;
  background-color: #3c3c3b;
  border-radius: 5px 5px 0 0;
}

.hero-detail__field-name-wrapper {
  margin: 0 0 10px;
}

.hero-detail__field-name {
  display: inline-block;
  padding: 12px 20px 10px;
  font-size: 60px;
  background-color: #ef404a;
  border-radius: 0 5px 5px;
}

.hero-detail__para {
  padding: 18px 20px;
  max-width: 400px;
  line-height: 1.875;
  font-size: 16px;
  background-color: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 1440px) {
  .hero-detail__field-category {
    padding: 12px 20px 10px;
    font-size: 26px;
  }
  .hero-detail__field-name {
    padding: 8px 17px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .hero-detail-list {
    min-height: 480px;
  }
}
@media screen and (max-width: 1080px) {
  .hero-detail__field-category {
    padding: 11px 18px 9px;
    font-size: 24px;
  }
  .hero-detail__field-name {
    font-size: 46px;
  }
  .hero-detail__para {
    padding: 15px 18px;
  }
}
@media screen and (max-width: 840px) {
  .hero-detail__field-category {
    font-size: 22px;
  }
  .hero-detail__field-name {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .hero-detail-list {
    min-height: 375px;
  }
  .hero-detail__field-name {
    font-size: 40px;
  }
}
@media screen and (min-width: 541px) {
  .hero-detail__img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 540px) {
  .detail-info__content {
    padding-top: 40px;
  }
  .hero-detail-list {
    min-height: 0;
  }
  .hero-detail__img-wrapper {
    height: 50vh;
    min-height: 250px;
    max-height: 300px;
  }
  .hero-detail__field-category {
    padding: 8px 14px 7px;
    font-size: 20px;
  }
  .hero-detail__field-name {
    line-height: 1.2;
    padding: 8px 14px;
    font-size: 34px;
  }
  .hero-detail__para {
    line-height: 1.6;
    padding: 11px 14px;
    background-color: #f4f4f2;
  }
}
@media screen and (max-width: 480px) {
  .hero-detail__field-name {
    font-size: 32px;
  }
}
@media screen and (max-width: 425px) {
  .detail-info__content {
    padding-top: 35px;
  }
  .hero-detail__field-category {
    padding: 8px 12px 7px;
    font-size: 18px;
  }
  .hero-detail__field-name {
    font-size: 26px;
  }
  .hero-detail__para {
    padding: 9px 13px;
  }
}
@media screen and (max-width: 375px) {
  .detail-info__content {
    padding-top: 30px;
  }
  .hero-detail__field-name {
    font-size: 24px;
  }
}
.tables-wrapper--admin {
  margin: 0 auto;
  max-width: 680px;
}

.table .admin-actions.small {
  width: auto;
}

.table-list {
  position: relative;
  column-count: 3;
  column-gap: 120px;
}
.table-list:before, .table-list:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  height: 100%;
  width: 2px;
  background-color: #e7e7e7;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tables-wrapper--admin .table-list {
  column-count: 1;
  column-gap: 0;
}
.tables-wrapper--admin .table-list:before, .tables-wrapper--admin .table-list:after {
  display: none;
}

.table {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-gap: 10px;
}
.table + .table {
  margin-top: 15px;
}
@media screen and (min-width: 501px) {
  .tables-wrapper--admin .table {
    grid-template-columns: 220px 1fr;
  }
  .tables-wrapper--admin .table + .table {
    margin-top: 30px;
  }
}

.table__column {
  line-height: 1.33;
}

.table__column--right {
  font-weight: 700;
}

@media screen and (max-width: 1500px) {
  .table-list {
    column-gap: 70px;
  }
}
@media screen and (min-width: 1401px) {
  .table-list:before {
    left: 32.33%;
  }
  .table-list:after {
    left: 67.66%;
  }
}
@media screen and (max-width: 1400px) {
  .table-list {
    column-count: 2;
    column-gap: 100px;
  }
  .table-list:before {
    left: 50%;
  }
  .table-list:after {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .table-list {
    column-count: 1;
    column-gap: 0;
  }
  .table-list:before, .table-list:after {
    display: none;
  }
  .table {
    grid-template-columns: 220px 1fr;
  }
}
@media screen and (max-width: 540px) {
  .table {
    grid-template-columns: 1fr;
    grid-gap: 0;
    font-size: 16px;
  }
  .table + .table {
    margin-top: 17px;
  }
}
.icons-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -25px;
}
@media screen and (max-width: 768px) {
  .icons-list {
    margin: -20px auto;
    max-width: 400px;
  }
}
.content-wrapper--icons-large .icons-list {
  margin: -20px auto;
  max-width: 1024px;
}

.icons {
  position: relative;
  margin: 25px;
  width: calc(33.33% - 50px);
}
.icons-list--1 .icons {
  width: auto;
  max-width: 680px;
}
@media screen and (min-width: 769px) {
  .content-wrapper--icons-large .icons {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .icons {
    margin: 20px 0;
    width: 100%;
  }
}

.icons__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .icons__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .icons__inner {
    flex-direction: row;
  }
}
@media screen and (max-width: 480px) {
  .icons__inner {
    flex-direction: row;
  }
}
@media screen and (max-width: 425px) {
  .icons__inner {
    flex-direction: column;
  }
}
.content-wrapper--icons-centered .icons__inner {
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.icons__img-wrapper {
  flex-shrink: 0;
  margin-right: 45px;
  padding-top: 100px;
  width: 100px;
  background: center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .icons__img-wrapper {
    margin-right: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .icons__img-wrapper {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .icons__img-wrapper {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .icons__img-wrapper {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
@media screen and (max-width: 425px) {
  .icons__img-wrapper {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.content-wrapper--icons-centered .icons__img-wrapper {
  margin-right: 0;
}

.icons__text-wrapper {
  line-height: 1.1;
}
@media screen and (max-width: 1080px) {
  .icons__text-wrapper {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .icons__text-wrapper {
    margin-top: 0;
    text-align: left;
  }
}
@media screen and (max-width: 425px) {
  .icons__text-wrapper {
    max-width: 290px;
    margin: 0 auto;
    text-align: center;
  }
}
.content-wrapper--icons-centered .icons__text-wrapper {
  max-width: 350px;
  text-align: center;
  margin: initial;
}

.icons__title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .icons__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .icons__title {
    font-size: 20px;
  }
}

.icons__subtitle {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 16px;
}

.icons__btn {
  text-align: left;
  white-space: normal;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}

.rolldown {
  position: relative;
  background-color: #ffce00;
  color: #3c3c3b;
}
.rolldown:nth-of-type(even) {
  background-color: #d6d9f0;
  color: #3c3c3b;
}

.rolldown .admin-actions.small {
  width: auto;
}

.rolldown__title {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 30px 50px;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 900;
  font-variant-ligatures: no-common-ligatures;
  background-color: transparent;
}
.rolldown__title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  display: block;
  width: 15px;
  height: 8px;
  background: url("../web_images/ico_arrow_menu.svg") center no-repeat;
  background-size: contain;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.rolldown-wrapper__text__text {
  color: #fff;
}
.rolldown-wrapper__text__text .image-wrapper {
  display: inline-block;
}
.rolldown-wrapper__text__text img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1081px) {
  .rolldown-wrapper {
    display: flex;
  }
  .rolldown-wrapper__text,
  .rolldown-wrapper__items {
    width: 50%;
  }
  .rolldown-wrapper__text {
    padding: 65px;
    background-color: #30397F;
  }
  .content-wrapper--blue .rolldown-wrapper__text {
    background-color: #ffce00;
  }
  .rolldown-wrapper__text__heading {
    color: #fff;
    line-height: 1.15;
    font-size: 36px;
    font-weight: 900;
  }
  .content-wrapper--blue .rolldown-wrapper__text__heading {
    color: #000;
  }
  .rolldown-wrapper__text__text {
    margin-top: 25px;
    line-height: 1.5;
    font-size: 16px;
  }
  .content-wrapper--blue .rolldown-wrapper__text__text {
    color: #000;
  }
  .rolldown-wrapper__text__text h3 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 900;
  }
  .rolldown-wrapper__text__text p + p {
    margin-top: 15px;
  }
  .rolldown-wrapper__text__text p + h3 {
    margin-top: 30px;
  }
  .rolldown-wrapper__text__text ul,
  .rolldown-wrapper__text__text ol {
    margin-top: 20px;
    margin-left: 10px;
  }
  .rolldown-wrapper__text__text ul ul, .rolldown-wrapper__text__text ul ol,
  .rolldown-wrapper__text__text ol ul,
  .rolldown-wrapper__text__text ol ol {
    margin-top: 10px;
    margin-left: 0;
  }
  .rolldown-wrapper__text__text ul ol,
  .rolldown-wrapper__text__text ol ol {
    margin-left: 20px;
  }
  .rolldown-wrapper__text__text ul + p, .rolldown-wrapper__text__text ul + p,
  .rolldown-wrapper__text__text ol + p,
  .rolldown-wrapper__text__text ol + p {
    margin-top: 20px;
  }
  .rolldown-wrapper__text__text ul + h3, .rolldown-wrapper__text__text ul + h3,
  .rolldown-wrapper__text__text ol + h3,
  .rolldown-wrapper__text__text ol + h3 {
    margin-top: 30px;
  }
  .rolldown-wrapper__text__text ol {
    margin-left: 30px;
  }
  .rolldown-wrapper__text__text li {
    position: relative;
    padding-left: 20px;
  }
  .rolldown-wrapper__text__text li + li {
    margin-top: 10px;
  }
  .rolldown-wrapper__text__text ol > li {
    list-style-type: decimal;
    padding-left: 0;
  }
  .rolldown-wrapper__text__text ul > li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    background-color: #fff;
  }
  .content-wrapper--blue .rolldown-wrapper__text__text ul > li:before {
    background-color: #ef404a;
  }
  .rolldown-wrapper__text__text a:not(.image-wrapper) {
    border-bottom: 1px solid #fff;
  }
  .content-wrapper--blue .rolldown-wrapper__text__text a:not(.image-wrapper) {
    border-bottom-color: #000;
  }
  .rolldown-wrapper__text__text a:not(.image-wrapper):hover {
    border-bottom-color: transparent;
  }
  .rolldown-wrapper__text__text strong {
    font-weight: 700;
  }
  .rolldown__text-wrapper {
    display: none;
  }
  .rolldown__title {
    -moz-transition: background-color ease-in-out 300ms;
    -o-transition: background-color ease-in-out 300ms;
    -webkit-transition: background-color ease-in-out 300ms;
    transition: background-color ease-in-out 300ms;
  }
  .rolldown__title:before {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
  .rolldown__title.active:before {
    -webkit-transform: translateY(-50%) rotate(90deg) scaleY(-1);
    -moz-transform: translateY(-50%) rotate(90deg) scaleY(-1);
    -ms-transform: translateY(-50%) rotate(90deg) scaleY(-1);
    -o-transform: translateY(-50%) rotate(90deg) scaleY(-1);
    transform: translateY(-50%) rotate(90deg) scaleY(-1);
  }
  .rolldown__title:hover, .rolldown__title.active {
    color: #fff;
    background-color: #30397F;
  }
  .content-wrapper--blue .rolldown__title:hover, .content-wrapper--blue .rolldown__title.active {
    color: initial;
    background-color: #ffce00;
  }
  .rolldown__title.active:before, .rolldown__title:hover:before {
    background-image: url("../web_images/ico_arrow_menu_w.svg");
  }
  .content-wrapper--blue .rolldown__title.active:before, .content-wrapper--blue .rolldown__title:hover:before {
    background-image: url("../web_images/ico_arrow_menu.svg");
  }
}
@media screen and (max-width: 1400px) {
  .rolldown-wrapper__text {
    padding: 55px;
  }
  .rolldown-wrapper__text__heading {
    color: #fff;
    font-size: 34px;
  }
  .rolldown__title {
    min-height: 95px;
    font-size: 22px;
  }
  .rolldown__title.active {
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .rolldown-wrapper__text {
    padding: 40px;
  }
  .rolldown-wrapper__text__heading {
    font-size: 30px;
  }
  .rolldown-wrapper__text__text {
    margin-top: 25px;
  }
  .rolldown__title {
    min-height: 85px;
    padding: 25px 40px;
    font-size: 20px;
  }
  .rolldown__title:before {
    left: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown-wrapper {
    margin: 0 auto;
    max-width: 680px;
  }
  .rolldown-wrapper__text {
    display: none;
  }
  .rolldown__text-wrapper {
    max-height: 0;
    background-color: #30397F;
    overflow: hidden;
    -moz-transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
    -webkit-transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
  }
  .rolldown.active .rolldown__text-wrapper {
    max-height: 4000px;
    -moz-transition: max-height ease-in-out 0.7s;
    -o-transition: max-height ease-in-out 0.7s;
    -webkit-transition: max-height ease-in-out 0.7s;
    transition: max-height ease-in-out 0.7s;
  }
  .content-wrapper--blue .rolldown__text-wrapper {
    background-color: #ffce00;
  }
  .rolldown__title {
    min-height: 80px;
    padding: 20px;
    padding-left: 55px;
    padding-right: 30px;
  }
  .rolldown__title:before {
    left: 30px;
    width: 15px;
    height: 8px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .rolldown.active .rolldown__title:before {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    background-image: url("../web_images/ico_arrow_menu_w.svg");
  }
  .content-wrapper--blue .rolldown.active .rolldown__title:before {
    background-image: url("../web_images/ico_arrow_menu.svg");
  }
  .rolldown.active .rolldown__title {
    color: #fff;
    background-color: #22285a;
  }
  .content-wrapper--blue .rolldown.active .rolldown__title {
    color: #000;
    background-color: #e6b900;
  }
  .rolldown__text-wrapper__title {
    padding: 30px;
    padding-bottom: 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
  }
  .content-wrapper--blue .rolldown__text-wrapper__title {
    color: #000;
  }
  .rolldown__text-wrapper__text {
    padding: 30px;
    padding-top: 0;
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
  }
  .content-wrapper--blue .rolldown__text-wrapper__text {
    color: #000;
  }
  .rolldown__text-wrapper__text h3 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 900;
  }
  .rolldown__text-wrapper__text p + p {
    margin-top: 15px;
  }
  .rolldown__text-wrapper__text p + h3 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text p + h3 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ul,
  .rolldown__text-wrapper__text ol {
    margin-top: 20px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul,
  .rolldown__text-wrapper__text ol {
    margin-top: 15px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ul ul, .rolldown__text-wrapper__text ul ol,
  .rolldown__text-wrapper__text ol ul,
  .rolldown__text-wrapper__text ol ol {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul ul, .rolldown__text-wrapper__text ul ol,
  .rolldown__text-wrapper__text ol ul,
  .rolldown__text-wrapper__text ol ol {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ul ol,
  .rolldown__text-wrapper__text ol ol {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul ol,
  .rolldown__text-wrapper__text ol ol {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ul + p, .rolldown__text-wrapper__text ul + p,
  .rolldown__text-wrapper__text ol + p,
  .rolldown__text-wrapper__text ol + p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul + p, .rolldown__text-wrapper__text ul + p,
  .rolldown__text-wrapper__text ol + p,
  .rolldown__text-wrapper__text ol + p {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ul + h3, .rolldown__text-wrapper__text ul + h3,
  .rolldown__text-wrapper__text ol + h3,
  .rolldown__text-wrapper__text ol + h3 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul + h3, .rolldown__text-wrapper__text ul + h3,
  .rolldown__text-wrapper__text ol + h3,
  .rolldown__text-wrapper__text ol + h3 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ol {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ol {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text li {
    position: relative;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text li {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text li + li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text li + li {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1080px) {
  .rolldown__text-wrapper__text ol > li {
    list-style-type: decimal;
    padding-left: 0;
  }
  .rolldown__text-wrapper__text ul > li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    background-color: #fff;
  }
}
@media screen and (max-width: 1080px) and (max-width: 425px) {
  .rolldown__text-wrapper__text ul > li:before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 1080px) {
  .content-wrapper--blue .rolldown__text-wrapper__text ul > li:before {
    background-color: #ef404a;
  }
  .rolldown__text-wrapper__text a:not(.image-wrapper) {
    border-bottom: 1px solid #fff;
  }
  .content-wrapper--blue .rolldown__text-wrapper__text a:not(.image-wrapper) {
    border-bottom-color: #000;
  }
  .rolldown__text-wrapper__text a:not(.image-wrapper):hover {
    border-bottom-color: transparent;
  }
  .rolldown__text-wrapper__text strong {
    font-weight: 700;
  }
}
@media screen and (max-width: 680px) {
  .rolldown__text-wrapper__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 425px) {
  .rolldown__title {
    padding: 20px;
    padding-left: 50px;
    padding-right: 25px;
    font-size: 18px;
  }
  .rolldown__title:before {
    left: 25px;
  }
  .rolldown__text-wrapper__title {
    padding: 25px;
    padding-bottom: 15px;
    font-size: 22px;
  }
  .rolldown__text-wrapper__text {
    padding: 25px;
    padding-top: 0;
    font-size: 16px;
  }
  .rolldown__text-wrapper__text h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .rolldown__title {
    padding: 20px;
    padding-left: 45px;
  }
  .rolldown__title:before {
    left: 20px;
  }
  .rolldown__text-wrapper__title {
    padding: 20px;
    padding-bottom: 15px;
  }
  .rolldown__text-wrapper__text {
    padding: 20px;
    padding-top: 0;
  }
}
.album__photos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 45px;
}
@media screen and (max-width: 1300px) {
  .album__photos-container {
    grid-gap: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .album__photos-container {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .album__photos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .album__photos-container {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 425px) {
  .album__photos-container {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    max-width: 330px;
  }
}

.album__item {
  position: relative;
}

.album__photo {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 66%;
  height: 0;
}

.album__photo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  -webkit-transform: scale(1.0001);
  -moz-transform: scale(1.0001);
  -ms-transform: scale(1.0001);
  -o-transform: scale(1.0001);
  transform: scale(1.0001);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media screen and (min-width: 769px) {
  .album__photo__overlay:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.album__photo__img {
  display: none;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 50px;
}
@media screen and (max-width: 1080px) {
  .gallery-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery-list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 425px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 425px) {
  .gallery-list {
    grid-gap: 40px;
  }
}

.gallery {
  position: relative;
}

.gallery__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.gallery__preview-wrapper {
  position: relative;
  -moz-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.gallery__link:hover .gallery__preview-wrapper {
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.gallery__preview-wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 15px solid #fff;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg);
  -moz-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.gallery__link:hover .gallery__preview-wrapper:before {
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  transform: rotate(5deg);
}

.gallery__preview {
  position: relative;
  padding-top: 66%;
  background: transparent center no-repeat;
  background-size: cover;
  border: 15px solid #fff;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
}

.gallery__text-wrapper {
  margin-top: 30px;
  padding: 0 15px;
}
@media screen and (max-width: 425px) {
  .gallery__text-wrapper {
    margin-top: 25px;
    padding: 0 15px;
  }
}

.gallery__title {
  margin: 10px 0;
  line-height: 1.2;
  font-size: 28px;
  font-weight: 800;
  -moz-transition: color ease-in-out 0.4s;
  -o-transition: color ease-in-out 0.4s;
  -webkit-transition: color ease-in-out 0.4s;
  transition: color ease-in-out 0.4s;
}
.gallery__link:hover .gallery__title {
  color: #d9121e;
}
.content-wrapper--blue .gallery__link:hover .gallery__title {
  color: #ffce00;
}
@media screen and (max-width: 1440px) {
  .gallery__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .gallery__title {
    font-size: 22px;
  }
}

.gallery__description {
  margin: 10px 0 20px;
  line-height: 1.3333333333;
  max-height: 69px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 425px) {
  .gallery__description {
    margin: 10px 0 15px;
    max-height: 63px;
    font-size: 16px;
  }
}

.gallery__more {
  margin-top: auto;
  padding: 0 15px;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.gallery__link:hover .gallery__more {
  color: #d9121e;
}
.content-wrapper--blue .gallery__link:hover .gallery__more {
  color: #ffce00;
}

.file-list,
.files-list {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 900px) {
  .file-list,
  .files-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .file-list,
  .files-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .file-list,
  .files-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 425px) {
  .file-list,
  .files-list {
    grid-gap: 20px;
  }
}

.file {
  position: relative;
}

.file .admin-actions-wrapper {
  z-index: 1;
}

.file__link {
  padding: 20px 25px;
}
@media screen and (min-width: 901px) {
  .file__link {
    display: flex;
    align-items: center;
    white-space: nowrap;
    background-color: transparent;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
  }
  .file__link:hover {
    background-color: rgba(26, 26, 26, 0.03);
  }
  .content-wrapper--blue .file__link {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  }
  .content-wrapper--blue .file__link:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
@media screen and (max-width: 900px) {
  .file__link {
    display: block;
    height: 100%;
    color: #000;
    background-color: #f2f2f2;
  }
  .content-wrapper--light-grey .file__link {
    background-color: #fff;
  }
}
@media screen and (max-width: 600px) {
  .file__link {
    padding: 20px;
  }
}

.file__name {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 901px) {
  .file__name {
    padding-right: 30px;
  }
}
@media screen and (max-width: 900px) {
  .file__name {
    display: block;
    margin-bottom: 15px;
  }
}

.file__extension {
  padding: 3px 8px;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #e6e6e6;
  border-radius: 4px;
}
@media screen and (min-width: 901px) {
  .content-wrapper--blue .file__extension {
    color: #30397F;
  }
}
@media screen and (min-width: 901px) {
  .file__extension {
    margin-left: auto;
  }
}
@media screen and (max-width: 425px) {
  .file__extension {
    font-size: 16px;
  }
}

.file__size {
  flex-shrink: 0;
}
@media screen and (min-width: 901px) {
  .file__size {
    margin-left: 30px;
    min-width: 80px;
    text-align: right;
  }
}
@media screen and (max-width: 900px) {
  .file__size {
    margin-left: 10px;
  }
}
@media screen and (max-width: 425px) {
  .file__size {
    font-size: 16px;
  }
}

.file__download {
  position: relative;
  font-weight: 700;
  color: #d9121e;
}
@media screen and (min-width: 901px) {
  .file__download {
    margin-left: 30px;
  }
  .file__download--standalone {
    margin-left: auto;
  }
  .content-wrapper--blue .file__download {
    color: #fff;
  }
}
@media screen and (max-width: 900px) {
  .file__download {
    display: block;
    margin-top: 15px;
  }
}
@media screen and (max-width: 425px) {
  .file__download {
    font-size: 16px;
  }
}

.links-list {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 40px;*/
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -25px -20px;
}

.links {
  position: relative;
  margin: 25px 20px;
  width: calc(25% - 40px);
}

.links__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  text-align: center;
  background-color: #f2f2f2;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
.content-wrapper--light-grey .links__link {
  background-color: #fff;
}
.links__link:hover {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.075);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.075);
}

.links__title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 800;
}
.content-wrapper--blue .links__title {
  color: #30397F;
}

.links__btn {
  margin-top: auto;
}
.links__link:hover .links__btn {
  background-color: #22285a;
}

@media screen and (max-width: 1200px) {
  .links {
    width: calc(33.33% - 40px);
  }
}
@media screen and (max-width: 1080px) {
  .links-list {
    margin: -25px auto;
    max-width: 768px;
  }
  .links {
    width: calc(50% - 40px);
  }
  .links__link {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .links-list {
    margin: -25px -20px;
  }
  .links__title {
    margin-bottom: 25px;
    font-size: 20px;
  }
}
@media screen and (max-width: 680px) {
  .links {
    width: 100%;
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .links-list {
    margin: -20px;
  }
  .links {
    margin: 20px;
  }
}
.content-wrapper-contact {
  background-color: #d6d9f0;
}

.contact-wrapper {
  position: relative;
}
.contact-wrapper .admin-actions {
  z-index: 1;
}
.contact-wrapper .delete,
.contact-wrapper .compact-switcher {
  display: none;
}

.pages-switcher {
  margin-bottom: 60px;
  display: flex;
}
@media screen and (min-width: 1281px) {
  .pages-switcher {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1150px) {
  .pages-switcher {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1149px) {
  .pages-switcher {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 900px) {
  .pages-switcher {
    display: none;
  }
}

.pages-switcher__link {
  padding: 20px;
  line-height: 1.2;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #E8EFF4;
  border-top: 5px solid #32aeff;
}
@media screen and (min-width: 1281px) {
  .pages-switcher__link {
    width: 100%;
  }
}
.pages-switcher__link + .pages-switcher__link {
  margin-left: 30px;
}
.pages-switcher__link.active {
  color: #fff;
  background-color: #30397F;
}
.pages-switcher__link:hover {
  color: #3c3c3b;
  background-color: #32aeff;
}

@media screen and (min-width: 1280px) {
  .contact__columns {
    display: grid;
    grid-template-columns: 0.375fr 0.375fr 0.25fr;
    gap: 9%;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .contact__columns {
    gap: 6%;
  }
}
@media screen and (min-width: 901px) {
  .contact__columns--no-cf {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 9%;
  }
}
@media screen and (max-width: 1440px) {
  .contact__columns--no-cf {
    gap: 6%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1279px) {
  .contact__columns {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .contact__columns {
    margin-top: 30px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1279px) {
  .contact__column {
    width: 50%;
  }
  .contact__column:first-child {
    margin-bottom: 50px;
    width: 100%;
  }
  .contact__column:nth-child(2) {
    padding-right: 5%;
  }
  .contact__column:last-child {
    padding-left: 5%;
  }
  .contact__column--no-cf {
    width: 100%;
  }
  .contact__column--no-cf:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .contact__column {
    width: 100%;
  }
  .contact__column + .contact__column {
    margin-top: 50px;
  }
}
@media screen and (max-width: 900px) and (max-width: 600px) {
  .contact__column + .contact__column {
    margin-top: 40px;
  }
}
.contact__column .contact-form {
  margin-top: 0;
  max-width: none;
}

.contact__heading {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .contact__heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .contact__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact__heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  .contact__heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 425px) {
  .contact__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .contact__heading {
    font-size: 24px;
  }
}

.contact__info-row + .contact__info-row {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #30397F;
}
@media screen and (max-width: 1280px) {
  .contact__info-row + .contact__info-row {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  .contact__info-row + .contact__info-row {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.contact__info-opener:hover {
  color: #30397F;
}

.contact__info-heading {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 40px;
  line-height: 1.2083333333;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .contact__info-heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .contact__info-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .contact__info-heading {
    font-size: 17px;
  }
}
.contact__info-heading--common {
  font-size: 24px;
}
@media screen and (max-width: 1280px) {
  .contact__info-heading--common {
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .contact__info-heading--common {
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .contact__info-heading--common {
    font-size: 18px;
  }
}
.contact__info-heading--pin {
  min-height: 50px;
  padding-left: 55px;
}
@media screen and (max-width: 1280px) {
  .contact__info-heading--pin {
    min-height: 38px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 900px) {
  .contact__info-heading--pin {
    min-height: 35px;
    padding-left: 45px;
  }
}
.contact__info-heading:after {
  pointer-events: none;
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 20px;
  height: 12px;
  background: url("../web_images/ico_arrow_menu.svg") center no-repeat;
  background-size: contain;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.contact__info-opener.opened .contact__info-heading:after {
  transform: rotate(180deg);
}
.contact__info-heading--no-opener {
  padding-right: 0;
}
.contact__info-heading--no-opener:after {
  display: none;
}

.contact__info-ico {
  position: absolute;
  left: 0;
  width: 36px;
  height: 44px;
  background: center left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .contact__info-ico {
    width: 31px;
    height: 38px;
  }
}
@media screen and (max-width: 900px) {
  .contact__info-ico {
    width: 29px;
    height: 35px;
  }
}

.contact__info-heading-inner {
  max-width: 425px;
}

.contact__info-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -moz-transition: max-height 0.4s ease-out, opacity 0.2s ease-out;
  -o-transition: max-height 0.4s ease-out, opacity 0.2s ease-out;
  -webkit-transition: max-height 0.4s ease-out, opacity 0.2s ease-out;
  transition: max-height 0.4s ease-out, opacity 0.2s ease-out;
}
.contact__info-content.opened {
  opacity: 1;
}
.contact__info-content p {
  line-height: 1.5555555556;
}
@media screen and (max-width: 425px) {
  .contact__info-content p {
    font-size: 16px;
  }
}
.contact__info-content p:first-child {
  margin-top: 15px;
}
@media screen and (max-width: 1100px) {
  .contact__info-content p:first-child {
    margin-top: 10px;
  }
}
.contact__info-content p + p {
  margin-top: 10px;
}
.contact__info-content strong {
  font-weight: 700;
}
.contact__info-content a {
  text-decoration: underline transparent;
}
.contact__info-content a:hover {
  text-decoration: underline;
}

.contact__map-wrapper {
  position: relative;
  background-color: #f2f2f2;
}
@media screen and (min-width: 1025px) {
  .contact__map-wrapper {
    padding-top: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .contact__map-wrapper {
    padding-top: 0;
    height: 66vh;
    max-height: 600px;
  }
}
.contact__map-wrapper--no-cf {
  padding-top: 0;
  height: 66vh;
  max-height: 600px;
}

.contact__map {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.gmap__info {
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
}
.gmap__info h4 {
  margin-bottom: 7px;
  max-width: 350px;
  font-size: 18px;
  font-weight: 700;
}
.gmap__info p {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 400;
}
.gmap__info a {
  text-decoration: underline transparent;
}
.gmap__info a:hover {
  text-decoration: underline;
}
.gmap__info strong {
  font-weight: 700;
}
.gmap__info .gmap__link-wrapper {
  margin-top: 15px;
}
.gmap__info .gmap__link {
  color: #30397F;
  text-decoration: underline;
}
.gmap__info .gmap__link:hover {
  text-decoration: underline transparent;
}

.contacts-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -25px -20px;
}
@media screen and (max-width: 425px) {
  .contacts-list {
    margin: -20px;
  }
}

.contacts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 25px 20px;
  width: calc(33.33% - 40px);
}
@media screen and (max-width: 1080px) {
  .contacts {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 680px) {
  .contacts {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .contacts {
    margin: 20px;
  }
}
@media screen and (min-width: 681px) {
  .contacts-wrapper--hp .contacts {
    flex-direction: row;
    gap: 30px;
    width: auto;
  }
}

.contacts__img-wrapper {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  background: transparent no-repeat center;
  background-size: cover;
  border-radius: 50%;
}
@media screen and (max-width: 1280px) {
  .contacts__img-wrapper {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 1150px) {
  .contacts__img-wrapper {
    width: 150px;
    height: 150px;
  }
}
.contacts__img-wrapper--detail {
  margin-bottom: 15px;
}
.contacts__img-wrapper--no-img {
  background-color: rgba(0, 0, 0, 0.1);
}
.contacts-wrapper--hp .contacts__img-wrapper {
  border-radius: 50%;
}

.contacts__text-wrapper {
  width: 100%;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .contacts__text-wrapper {
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  .contacts__text-wrapper {
    padding-top: 20px;
  }
}
@media screen and (max-width: 425px) {
  .contacts__text-wrapper {
    font-size: 16px;
  }
}
@media screen and (min-width: 681px) {
  .contacts-wrapper--hp .contacts__text-wrapper {
    width: auto;
    padding-top: 0;
  }
}

.contacts__name {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .contacts__name {
    font-size: 22px;
  }
}
@media screen and (min-width: 681px) {
  .contacts-wrapper--hp .contacts__name {
    text-align: left;
  }
}

@media screen and (min-width: 681px) {
  .contacts-wrapper--hp .contacts__link-wrapper--role {
    text-align: left;
  }
}
.contacts__link-wrapper + .contacts__link-wrapper {
  margin-top: 5px;
}

.contacts__link {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: underline transparent;
  color: #d9121e;
}
.contacts__link:hover {
  text-decoration: underline;
}
.content-wrapper--blue .contacts__link {
  color: #ffce00;
}
@media screen and (min-width: 681px) {
  .contacts-wrapper--hp .contacts__link {
    justify-content: flex-start;
  }
}

.contacts__ico {
  margin-right: 2px;
  height: 25px;
}

.contacts__btn.btn {
  padding: 0;
  background-color: transparent;
  text-decoration: underline transparent;
}
.contacts__btn.btn:hover {
  background-color: transparent;
  text-decoration: underline;
}
.content-wrapper--blue .contacts__btn.btn {
  color: #fff;
}
.content-wrapper--blue .contacts__btn.btn:hover {
  text-decoration: underline;
}

.contacts__text-wrapper-right {
  margin-top: 15px;
}

/********** Detail ***********/
.contacts-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts-detail__medailon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.contacts-detail__text {
  max-width: 400px;
  text-align: center;
}
.contacts-detail__text p {
  margin-bottom: 10px;
}

.contacts-table,
.contacts-table-list {
  width: 100%;
}

.contacts-table__name-wrapper {
  margin-right: 5px;
}

.contacts-table__info-icon {
  cursor: help;
  top: 1px;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.contacts-table__download {
  font-weight: 700;
  color: #ef404a;
}
.contacts-table__download:hover {
  color: #e91320;
}

.contacts-table__caption {
  font-weight: 700;
  color: #fff;
  background-color: #30397F;
}
.content-wrapper--blue .contacts-table__caption {
  color: #30397F;
  background-color: #dbdad5;
}

.contacts-table__link {
  white-space: nowrap;
  color: #d9121e;
}
@media screen and (min-width: 1201px) {
  .content-wrapper--blue .contacts-table__link {
    color: #fff;
    text-decoration: underline;
  }
}
.contacts-table__link:hover {
  color: #30397F;
}
@media screen and (min-width: 1201px) {
  .content-wrapper--blue .contacts-table__link:hover {
    color: #ffce00;
  }
}

@media screen and (min-width: 1201px) {
  .contacts-table__row {
    background-color: rgba(26, 26, 26, 0.01);
  }
  .contacts-table__row:nth-child(odd) {
    background-color: rgba(26, 26, 26, 0.03);
  }
  .content-wrapper--blue .contacts-table__row:nth-child(odd) {
    background-color: rgba(26, 26, 26, 0.3);
  }
  .contacts-table__row.ui-sortable-helper {
    display: table;
  }
  .contacts-table__column {
    padding: 20px 25px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.075);
  }
  .contacts-table__column:nth-child(2) {
    padding: 20px 0;
  }
  .content-wrapper--blue .contacts-table__column {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  }
  .contacts-table__column--admin {
    position: relative;
    width: 140px;
  }
  .contacts-table__column-label {
    display: none;
  }
  .contacts-table__link {
    font-weight: 700;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1200px) {
  .contacts-table__caption {
    display: none;
  }
  .contacts-table-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 30px;
  }
  .contacts-table__row {
    position: relative;
    padding: 24px 27px;
    background-color: #F5F5F6;
  }
  .content-wrapper--light-grey .contacts-table__row, .content-wrapper--blue .contacts-table__row {
    background-color: #fff;
  }
  .contacts-table__column {
    display: block;
    color: #30397F;
  }
  .contacts-table__column + .contacts-table__column {
    margin-top: 15px;
  }
  .contacts-table__column-label {
    margin-bottom: 5px;
    font-weight: 700;
  }
}
@media screen and (max-width: 900px) {
  .contacts-table-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px 30px;
  }
  .contacts-table__row {
    padding: 22px 25px;
  }
}
@media screen and (max-width: 600px) {
  .contacts-table-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .contacts-table__column-label {
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 425px) {
  .contacts-table-list {
    grid-gap: 20px;
  }
  .contacts-table__row {
    padding: 20px 22px;
  }
}
.content-container {
  position: relative;
  margin: 0 auto;
  max-width: 768px;
}

.content-container .admin-actions-wrapper {
  z-index: 1;
}

.content__text-wrapper {
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper {
    font-size: 16px;
  }
}

.content__text-wrapper h3 {
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.content__text-wrapper h3 + h4 {
  margin-top: 15px;
}

.content__text-wrapper h4 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 20px;
  font-weight: 800;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper h4 {
    margin-bottom: 15px;
    font-size: 17px;
  }
}

.content__text-wrapper p + p {
  margin-top: 15px;
}
.content__text-wrapper p + h3, .content__text-wrapper p + h4 {
  margin-top: 30px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper p + h3, .content__text-wrapper p + h4 {
    margin-top: 20px;
  }
}

.content__text-wrapper ul,
.content__text-wrapper ol {
  margin-top: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul,
  .content__text-wrapper ol {
    margin-top: 15px;
    margin-left: 5px;
  }
}
.content__text-wrapper ul ul, .content__text-wrapper ul ol,
.content__text-wrapper ol ul,
.content__text-wrapper ol ol {
  margin-top: 10px;
  margin-left: 0;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul ul, .content__text-wrapper ul ol,
  .content__text-wrapper ol ul,
  .content__text-wrapper ol ol {
    margin-top: 5px;
  }
}
.content__text-wrapper ul ol,
.content__text-wrapper ol ol {
  margin-left: 20px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul ol,
  .content__text-wrapper ol ol {
    margin-left: 15px;
  }
}
.content__text-wrapper ul + p, .content__text-wrapper ul + p,
.content__text-wrapper ol + p,
.content__text-wrapper ol + p {
  margin-top: 20px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul + p, .content__text-wrapper ul + p,
  .content__text-wrapper ol + p,
  .content__text-wrapper ol + p {
    margin-top: 15px;
  }
}
.content__text-wrapper ul + h3, .content__text-wrapper ul + h4,
.content__text-wrapper ol + h3,
.content__text-wrapper ol + h4 {
  margin-top: 30px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul + h3, .content__text-wrapper ul + h4,
  .content__text-wrapper ol + h3,
  .content__text-wrapper ol + h4 {
    margin-top: 20px;
  }
}

.content__text-wrapper ol {
  margin-left: 30px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ol {
    margin-left: 25px;
  }
}

.content__text-wrapper li {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper li {
    padding-left: 15px;
  }
}
.content__text-wrapper li + li {
  margin-top: 10px;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper li + li {
    margin-top: 5px;
  }
}

.content__text-wrapper ol > li {
  list-style-type: decimal;
  padding-left: 0;
}

.content__text-wrapper ul > li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 7px;
  height: 7px;
  background-color: #ef404a;
}
@media screen and (max-width: 425px) {
  .content__text-wrapper ul > li:before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
}

.content__text-wrapper a {
  font-weight: 700;
  color: #ef404a;
  text-decoration: underline;
}
.content__text-wrapper a:hover {
  color: #e91320;
}
.content-wrapper--blue .content__text-wrapper a {
  color: inherit;
}
.content-wrapper--blue .content__text-wrapper a:hover {
  color: inherit;
  text-decoration-color: transparent;
}

.content__text-wrapper strong {
  font-weight: 800;
}

.content__text-wrapper em {
  font-style: italic;
}

.content__text-wrapper .image-wrapper {
  display: block;
}

.content__text-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.content__text-wrapper table {
  margin: 30px 0;
  display: block;
  width: 100% !important;
  max-width: 100%;
  overflow-x: auto;
}
.content__text-wrapper table:first-child {
  margin-top: 0;
}
.content__text-wrapper table:last-child {
  margin-bottom: 0;
}
.content__text-wrapper table td {
  padding: 5px 8px;
  border: 1px solid black;
}

.content__text-wrapper tbody {
  display: table;
  width: 100%;
}

.content__text-wrapper .highlight {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 25px 40px 25px 30px;
  background-color: #d6d9f0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .content__text-wrapper .highlight {
    padding: 20px 30px 20px 25px;
  }
}
.content-wrapper--blue .content__text-wrapper .highlight {
  color: #30397F;
}

.content__text-wrapper .highlight-span {
  padding: 3px 5px;
  background-color: #fff2bd;
  border-radius: 5px;
}
.content-wrapper--blue .content__text-wrapper .highlight-span {
  color: #30397F;
}

.content__perex {
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 425px) {
  .content__perex {
    font-size: 16px;
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}

.filter {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .filter {
    flex-wrap: wrap;
  }
}
.filter--autocomplete {
  justify-content: left;
  align-items: center;
  padding: 20px 30px 60px 0;
}
.filter--autocomplete .filter__reset-btn {
  margin-left: 74px;
  margin-top: 0;
}
@media screen and (max-width: 525px) {
  .filter--autocomplete .filter__reset-btn {
    margin-left: 0;
    align-self: flex-start;
  }
}
@media screen and (max-width: 525px) {
  .filter--autocomplete {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

.filter__reset-btn {
  align-self: flex-end;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3c3c3b;
  background-color: #ffce00;
}
.filter__reset-btn:hover, .filter__reset-btn:focus {
  background-color: #e6b900;
}

.filter__inner-wrapper {
  position: relative;
  width: 250px;
}
@media screen and (max-width: 900px) {
  .filter__inner-wrapper:nth-child(2), .filter__inner-wrapper:nth-child(3) {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .filter__inner-wrapper {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  .filter__inner-wrapper {
    width: 100%;
  }
  .filter__inner-wrapper:nth-child(1) {
    margin-bottom: 14px;
  }
  .filter__inner-wrapper:nth-child(2), .filter__inner-wrapper:nth-child(3) {
    width: calc(50% - 7px);
  }
  .filter__inner-wrapper:nth-child(3) {
    margin-left: 14px;
  }
}
@media screen and (max-width: 425px) {
  .filter__inner-wrapper {
    font-size: 16px;
  }
  .filter__inner-wrapper:nth-child(1) {
    margin-bottom: 10px;
  }
  .filter__inner-wrapper:nth-child(2), .filter__inner-wrapper:nth-child(3) {
    width: calc(50% - 5px);
  }
  .filter__inner-wrapper:nth-child(3) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 601px) {
  .filter__inner-wrapper + .filter__inner-wrapper {
    margin-left: 25px;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .filter__inner-wrapper + .filter__inner-wrapper {
    margin-left: 15px;
  }
}

.filter__prompt {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 45px 0 20px;
  font-weight: 700;
  color: #fff;
  background-color: #ef404a;
}
@media screen and (max-width: 900px) {
  .filter__prompt {
    height: 50px;
    padding: 0 40px 0 15px;
  }
}
@media screen and (max-width: 425px) {
  .filter__prompt {
    height: 45px;
  }
}
.filter__prompt:hover {
  background-color: #e91320;
}
.filter__prompt:after {
  content: "›";
  position: absolute;
  top: 11px;
  right: 20px;
  display: block;
  width: 10px;
  height: 39px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 900px) {
  .filter__prompt:after {
    top: 7px;
    right: 15px;
  }
}
@media screen and (max-width: 425px) {
  .filter__prompt:after {
    top: 5px;
  }
}
.filter__inner-wrapper.active .filter__prompt:after {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

.filter__options-wrapper {
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: transparent;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
@media screen and (max-width: 900px) {
  .filter__options-wrapper {
    top: 50px;
  }
}
@media screen and (max-width: 425px) {
  .filter__options-wrapper {
    top: 45px;
  }
}
.filter__inner-wrapper.active .filter__options-wrapper {
  pointer-events: auto;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.filter__options {
  padding: 5px 0 12px;
  color: #3c3c3b;
  background-color: #30397F;
  max-height: 300px;
  overflow-y: auto;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
@media screen and (max-width: 900px) {
  .filter__options {
    padding: 5px 0 7px;
  }
}
@media screen and (max-width: 480px) {
  .filter__options {
    max-height: 230px;
  }
}
.filter__options::-webkit-scrollbar {
  width: 7px;
  background-color: rgba(0, 0, 0, 0.07);
  border: 0;
}
.filter__options::-webkit-scrollbar-thumb {
  background-color: #22285a;
}
.filter__options::-webkit-scrollbar-thumb:hover {
  background-color: #1e234f;
}
.filter__options::-webkit-scrollbar-thumb:active {
  background-color: #1b2047;
}
.filter__inner-wrapper.active .filter__options {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.filter__option {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 8px 20px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .filter__option {
    padding: 7px 15px;
  }
}
.filter__option:hover {
  background-color: rgba(60, 60, 59, 0.1);
}

.filter__checkbox {
  position: relative;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-transition: background-color ease-in-out 300ms;
  -o-transition: background-color ease-in-out 300ms;
  -webkit-transition: background-color ease-in-out 300ms;
  transition: background-color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .filter__checkbox {
    width: 23px;
    height: 23px;
  }
}

.filter__input:checked + .filter__checkbox:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 5px;
  height: 6px;
  width: 11px;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
  -webkit-transform: translateX(-50%) rotate(-227deg);
  -moz-transform: translateX(-50%) rotate(-227deg);
  -ms-transform: translateX(-50%) rotate(-227deg);
  -o-transform: translateX(-50%) rotate(-227deg);
  transform: translateX(-50%) rotate(-227deg);
}

.filter__input:checked + .filter__checkbox + .filter__label {
  font-weight: 700;
}

.filter__input,
.filter__submit-btn {
  display: none;
}

.filter-checkboxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #f4f4f2;
}
.content-wrapper--light-grey .filter-checkboxes {
  background-color: #fff;
}

.filter-checkboxes__checkboxes {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-right: 20px;
}

.filter-checkboxes__wrapper {
  margin: 5px 25px 5px 0;
}

.filter-checkboxes__input {
  display: none;
}

.filter-checkboxes__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-checkboxes__checkbox {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.07);
  -moz-transition: background-color ease-in-out 300ms;
  -o-transition: background-color ease-in-out 300ms;
  -webkit-transition: background-color ease-in-out 300ms;
  transition: background-color ease-in-out 300ms;
}
.filter-checkboxes__label:hover .filter-checkboxes__checkbox {
  background-color: #30397F;
}

.filter-checkboxes__input:checked + .filter-checkboxes__label .filter-checkboxes__checkbox {
  position: relative;
  background-color: #30397F;
}

.filter-checkboxes__input:checked + .filter-checkboxes__label .filter-checkboxes__checkbox:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 5px;
  height: 6px;
  width: 11px;
  border-right: 4px solid #3c3c3b;
  border-top: 4px solid #3c3c3b;
  -webkit-transform: translateX(-50%) rotate(-227deg);
  -moz-transform: translateX(-50%) rotate(-227deg);
  -ms-transform: translateX(-50%) rotate(-227deg);
  -o-transform: translateX(-50%) rotate(-227deg);
  transform: translateX(-50%) rotate(-227deg);
}

@media screen and (max-width: 540px) {
  .filter-checkboxes {
    flex-wrap: wrap;
    padding: 20px 22px;
  }
  .filter-checkboxes__reset-btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 480px) {
  .filter-checkboxes__checkboxes {
    flex-direction: column;
  }
}
@media screen and (max-width: 375px) {
  .filter-checkboxes {
    padding: 15px 17px;
  }
  .filter-checkboxes__label {
    font-size: 16px;
  }
}
.filter-checkboxes__reset-btn {
  background-color: #30397F;
}
.filter-checkboxes__reset-btn:hover {
  background-color: #22285a;
}

.map-wrapper,
.calendar-wrapper {
  position: relative;
  background-color: #ef404a;
}

.map__iframe,
.calendar__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 681px) {
  .map-wrapper,
  .calendar-wrapper {
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 680px) {
  .map-wrapper,
  .calendar-wrapper {
    height: 66vh;
  }
}
.video {
  position: relative;
  padding-top: 56.25%;
}
.video .admin-actions {
  z-index: 1;
}

.video__img-wrapper,
.video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__img-wrapper {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  background: #ef404a center no-repeat;
  background-size: cover;
  -moz-transition: opacity ease-in-out 300ms;
  -o-transition: opacity ease-in-out 300ms;
  -webkit-transition: opacity ease-in-out 300ms;
  transition: opacity ease-in-out 300ms;
}
.video__img-wrapper--no-img {
  background-color: transparent;
}
.video__img-wrapper.hidden {
  pointer-events: none;
  opacity: 0;
}

.video__btn.btn {
  margin-top: 0;
  padding-left: 55px;
  background-color: #ef404a;
  color: #fff;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.video__img-wrapper:hover .video__btn.btn {
  background-color: #1C2252;
}
.video__btn.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.sharers {
  display: flex;
  justify-content: center;
}

.sharer {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.sharer + .sharer {
  margin-left: 15px;
}
.sharer--fb {
  background: #3a579a url("../web_images/fb_share.png") no-repeat center;
}
.sharer--fb:hover {
  background-color: #314c82;
}
.sharer--twitter {
  background: #00abf0 url("../web_images/twitter_share.png") no-repeat center;
}
.sharer--twitter:hover {
  background-color: #00a1db;
}

@media screen and (max-width: 425px) {
  .sitemap-wrapper {
    font-size: 16px;
  }
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.sitemap__heading {
  margin-top: 30px;
  font-weight: 800;
}

.sitemap__inner + .sitemap__inner {
  margin-top: 10px;
}

.sitemap-wrapper p {
  font-weight: 800;
}

.sitemap-wrapper ul {
  padding-left: 30px;
}
.sitemap-wrapper ul + p {
  margin-top: 20px;
}
@media screen and (max-width: 425px) {
  .sitemap-wrapper ul {
    padding-left: 20px;
  }
}

.sitemap__ul_lvl1,
.sitemap__ul_lvl2 {
  margin-top: 10px;
}

.sitemap-wrapper li {
  margin-top: 7px;
}

.sitemap-wrapper a {
  color: #30397F;
}
.sitemap-wrapper a:hover {
  color: #0C1B27;
}

.timelines-wrapper {
  max-width: 768px;
  margin: 0 auto;
}

.timelines-list {
  position: relative;
}
.timelines-list:before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.14);
}
.content-wrapper--blue .timelines-list:before {
  background-color: #fff;
}

.timelines {
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}
.timelines:first-child .timelines__point:after, .timelines:last-child .timelines__point:before {
  content: "";
  position: absolute;
  left: 50%;
  height: 5000px;
  margin-left: -1px;
  background-color: #f4f4f2;
}
.content-wrapper--light-grey .timelines:first-child .timelines__point:after, .content-wrapper--light-grey .timelines:last-child .timelines__point:before {
  background-color: rgba(0, 0, 0, 0.14);
}
.content-wrapper--blue .timelines:first-child .timelines__point:after, .content-wrapper--blue .timelines:last-child .timelines__point:before {
  background-color: #f4f4f2;
}
.timelines:last-child .timelines__point:before {
  top: 100%;
  margin-top: 1px;
}
.timelines:first-child .timelines__point:after {
  bottom: 100%;
  margin-bottom: 1px;
}
.timelines + .timelines {
  margin-top: 15px;
}

.timelines__point {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.timelines__point--color-1 {
  background-color: #30397F;
}
.content-wrapper--blue .timelines__point--color-1 {
  background-color: #ffce00;
}
.timelines__point--color-2 {
  background-color: #ef404a;
}

.timelines__inner {
  padding-left: 50px;
}

.timelines__title {
  font-weight: 700;
}

.timelines__datetime {
  margin-top: 5px;
  font-size: 17px;
}

.timelines__datetime__end {
  white-space: nowrap;
}

.timelines__text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .timelines__text {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .timelines__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 425px) {
  .timelines {
    padding-bottom: 13px;
  }
  .timelines + .timelines {
    margin-top: 13px;
  }
  .timelines__inner {
    padding-left: 35px;
  }
  .timelines__title {
    font-size: 17px;
  }
  .timelines__datetime {
    font-size: 16px;
  }
}
.timelines-centered-list {
  position: relative;
}
@media screen and (min-width: 681px) {
  .timelines-centered-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.timelines-centered-list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.14);
}
.content-wrapper--blue .timelines-centered-list:before {
  background-color: #fff;
  width: 1px;
}
@media screen and (max-width: 680px) {
  .timelines-centered-list:before {
    left: 9px;
  }
}

.timelines-centered {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 15px;
}
@media screen and (max-width: 425px) {
  .timelines-centered {
    padding-bottom: 12px;
  }
}
.timelines-centered:first-child .timelines-centered__point:after, .timelines-centered:last-child .timelines-centered__point:before {
  content: "";
  position: absolute;
  margin-left: -1px;
  left: 50%;
  width: 2px;
  height: 5000px;
  background-color: #f4f4f2;
}
.content-wrapper--light-grey .timelines-centered:first-child .timelines-centered__point:after, .content-wrapper--light-grey .timelines-centered:last-child .timelines-centered__point:before {
  background-color: #e0e6eb;
}
.content-wrapper--blue .timelines-centered:first-child .timelines-centered__point:after, .content-wrapper--blue .timelines-centered:last-child .timelines-centered__point:before {
  background-color: #5c68c1;
}
.timelines-centered:last-child .timelines-centered__point:before {
  top: 100%;
}
.timelines-centered:first-child .timelines-centered__point:after {
  bottom: 100%;
}
.timelines-centered + .timelines-centered {
  margin-top: 15px;
}
@media screen and (max-width: 425px) {
  .timelines-centered + .timelines-centered {
    margin-top: 12px;
  }
}

.timelines-centered__point {
  position: absolute;
  top: 18px;
  width: 20px;
  height: 20px;
  background-color: #d1d5f6;
}
@media screen and (max-width: 680px) {
  .timelines-centered__point {
    left: 0;
  }
}
@media screen and (max-width: 425px) {
  .timelines-centered__point {
    top: 16px;
    left: 2px;
    width: 16px;
    height: 16px;
  }
}
.timelines-centered__point--color-1 {
  background-color: #30397F !important;
}
.content-wrapper--blue .timelines-centered__point--color-1 {
  background-color: #ffce00 !important;
}
.timelines-centered__point--color-2 {
  background-color: #ef404a !important;
}

.timelines-centered__inner {
  width: 100%;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .timelines-centered__inner {
    font-size: 22px;
  }
}
@media screen and (min-width: 681px) {
  .timelines-centered:nth-child(odd) .timelines-centered__inner {
    margin-left: 50%;
    padding-left: 50px;
  }
}
@media screen and (min-width: 681px) and (max-width: 1200px) {
  .timelines-centered:nth-child(odd) .timelines-centered__inner {
    padding-left: 45px;
  }
}
@media screen and (min-width: 681px) {
  .timelines-centered:nth-child(even) .timelines-centered__inner {
    margin-right: 50%;
    padding-right: 50px;
    text-align: right;
  }
}
@media screen and (min-width: 681px) and (max-width: 1200px) {
  .timelines-centered:nth-child(even) .timelines-centered__inner {
    padding-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .timelines-centered__inner {
    font-size: 20px;
  }
}
@media screen and (max-width: 680px) {
  .timelines-centered__inner {
    padding-left: 45px;
  }
}
@media screen and (max-width: 425px) {
  .timelines-centered__inner {
    padding-left: 40px;
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .timelines-centered__inner {
    padding-left: 35px;
  }
}

.timelines-centered__title {
  font-weight: 700;
}

.timelines-centered__datetime__end {
  white-space: nowrap;
}

.timelines-centered__text {
  margin-top: 10px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .timelines-centered__text {
    margin-top: 7px;
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .timelines-centered__text {
    margin-top: 5px;
    font-size: 16px;
  }
}

.contact-form-para {
  text-align: center;
  font-size: 20px;
}

.contact-form {
  margin: 40px auto 0;
  max-width: 640px;
}

.contact-form__input-wrapper {
  position: relative;
}
.contact-form__input-wrapper + .contact-form__input-wrapper {
  margin-top: 20px;
}

.contact-form__label {
  display: block;
  margin-bottom: 7px;
}

.contact-form__label--req {
  font-weight: 700;
}

.errors-container {
  position: absolute;
  top: 15px;
  right: 15px;
  line-height: initial;
  padding: 5px 9px;
  font-size: 14px;
  color: #fff;
  background-color: #f0636a;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

.not-validated + .errors-container {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.contact-form__input,
.contact-form__textarea {
  padding: 15px 18px;
  width: 100%;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 2px solid transparent;
}
.contact-form__input::-webkit-input-placeholder,
.contact-form__textarea::-webkit-input-placeholder {
  color: transparent;
}
.contact-form__input:-moz-placeholder,
.contact-form__textarea:-moz-placeholder {
  color: transparent;
}
.contact-form__input::-moz-placeholder,
.contact-form__textarea::-moz-placeholder {
  color: transparent;
}
.contact-form__input:-ms-input-placeholder,
.contact-form__textarea:-ms-input-placeholder {
  color: transparent;
}
.content-wrapper--light-grey .contact-form__input,
.content-wrapper--light-grey .contact-form__textarea {
  background-color: #fff;
}
.contact-form__input:hover, .contact-form__input:focus,
.contact-form__textarea:hover,
.contact-form__textarea:focus {
  border-color: #30397F;
}

.contact-form__textarea {
  line-height: 1.5;
  padding: 13px 18px;
}

.contact-form .not-validated {
  border-color: #fd747a;
}
.contact-form .not-validated:focus {
  border-color: #fd747a;
}
.contact-form .not-validated:hover {
  border-color: #d16065;
}

.contact-form__gdpr {
  margin-top: 20px;
  line-height: 1.44;
  text-align: center;
  font-size: 15px;
}

.contact-form__gdpr-link {
  text-decoration: underline;
}
.contact-form__gdpr-link:hover {
  color: #ef404a;
}

.contact-form__submit {
  display: block;
  margin: 20px auto 0;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  background-color: #30397F;
}
.contact-form__submit:hover {
  background-color: #22285a;
}

@media screen and (max-width: 768px) {
  .contact-form-para {
    font-size: 19px;
  }
}
@media screen and (max-width: 425px) {
  .contact-form-para {
    font-size: 18px;
  }
  .contact-form {
    margin-top: 30px;
  }
  .contact-form__input-wrapper + .contact-form__input-wrapper {
    margin-top: 17px;
  }
  .contact-form__label,
  .contact-form__input,
  .contact-form__textarea {
    font-size: 16px;
  }
  .contact-form__input,
  .contact-form__textarea {
    padding-left: 15px;
    padding-right: 15px;
  }
  .errors-container {
    top: 12px;
    right: 10px;
  }
}
.search-panel {
  z-index: 600;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: rgba(60, 60, 59, 0.95);
  opacity: 0;
  pointer-events: none;
  -moz-transition: opacity ease-in-out 300ms;
  -o-transition: opacity ease-in-out 300ms;
  -webkit-transition: opacity ease-in-out 300ms;
  transition: opacity ease-in-out 300ms;
}
.search-panel--active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 425px) {
  .search-panel {
    padding: 25px;
  }
}
@media screen and (max-width: 375px) {
  .search-panel {
    padding: 20px;
  }
}

.search-panel__close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 73px;
  height: 73px;
  text-align: center;
  line-height: 1.4;
  font-size: 50px;
  color: #fff;
  background-color: #30397F;
  border-radius: 50%;
}
.search-panel__close:hover {
  background-color: #22285a;
}
@media screen and (max-width: 768px) {
  .search-panel__close {
    top: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 425px) {
  .search-panel__close {
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 40px;
  }
}

.search-form {
  max-width: 768px;
  width: 100%;
}

.search-form__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.search-form__input-wrapper {
  position: relative;
  width: 100%;
}

.search-form__input-wrapper .errors-container {
  top: -14px;
  right: 14px;
}

.search-form__input {
  width: 100%;
  padding: 15px 25px;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 22px;
  border-radius: 5px;
}
.search-form__input:focus, .search-form__input:hover {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .search-form__input {
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .search-form__input {
    font-size: 18px;
  }
}

.search-form__submit {
  margin-top: 25px;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  background-color: #30397F;
  color: #fff;
}
.search-form__submit:focus, .search-form__submit:hover {
  background-color: #22285a;
}

/* Vysledky vyhledavani */
.search-results__header {
  text-align: center;
}

.search-results__query {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .search-results__query {
    margin-top: 40px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__query {
    margin-top: 35px;
    font-size: 16px;
  }
}

.search-results__wrapper {
  margin: 50px auto 0;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .search-results__wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .search-results__wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__wrapper {
    margin-top: 30px;
  }
}

.search-results__item {
  margin-top: 50px;
}
@media screen and (max-width: 1440px) {
  .search-results__item {
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .search-results__item {
    margin-top: 40px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__item {
    margin-top: 30px;
  }
}

.search-results__heading {
  line-height: 1.2;
  font-size: 26px;
  font-weight: 700;
  color: #808080;
}
@media screen and (max-width: 1440px) {
  .search-results__heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .search-results__heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__heading {
    font-size: 20px;
  }
}

.search-results__heading__link:hover {
  color: #d1d5f6;
}

.search-results__text-wrapper {
  margin-top: 15px;
  line-height: 1.33333;
}
@media screen and (max-width: 768px) {
  .search-results__text-wrapper {
    margin-top: 10px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__text-wrapper {
    margin-top: 7px;
    font-size: 16px;
  }
}

.search-results__text-wrapper mark {
  background-color: #30397F;
  color: #fff;
}

.search-results__link-wrapper {
  margin-top: 15px;
  font-weight: 700;
  color: #d1d5f6;
}
.search-results__link-wrapper:hover {
  color: #0C1B27;
}
@media screen and (max-width: 768px) {
  .search-results__link-wrapper {
    margin-top: 10px;
  }
}
@media screen and (max-width: 425px) {
  .search-results__link-wrapper {
    margin-top: 7px;
    font-size: 17px;
  }
}

.popup {
  z-index: 1;
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 350px;
  background-color: #ef404a;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
  opacity: 0;
  pointer-events: none;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.popup:hover {
  background-color: #e91320;
}
.popup.open {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 425px) {
  .popup {
    max-width: 275px;
  }
}

.popup__close {
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 6px;
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.popup__close:hover {
  color: #000;
  background-color: #ffce00;
}

.popup__icon {
  z-index: 1;
  flex-shrink: 0;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 35px;
  font-size: 22px;
  font-weight: 700;
  color: #ef404a;
  background-color: #fff;
}
@media screen and (max-width: 425px) {
  .popup__icon {
    margin: 25px;
  }
}

.popup__text-wrapper {
  align-self: center;
  padding: 25px 40px 25px 0;
  font-weight: 700;
}
@media screen and (max-width: 425px) {
  .popup__text-wrapper {
    padding: 19px 40px 17px 0;
  }
}

.popup__title {
  line-height: 1.1666666667;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 425px) {
  .popup__title {
    font-size: 16px;
  }
}

.popup__read-more {
  margin-top: 5px;
  font-size: 16px;
  color: #ffce00;
}
@media screen and (max-width: 425px) {
  .popup__read-more {
    font-size: 14px;
  }
}

/* administrace popupu */
.popup-edit-mode__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.popup-basic {
  position: relative;
  max-width: 710px;
  line-height: 1.5;
  padding: 20px 25px;
  font-weight: 700;
  color: #fff;
  background-color: #ef404a;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 20px;
}

.move-top {
  z-index: 1;
  position: fixed;
  bottom: 100px;
  right: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.move-top.active {
  opacity: 1;
  pointer-events: all;
}
.move-top:hover {
  border-color: #3c3c3b;
}
.move-top:after {
  content: "";
  position: relative;
  display: block;
  top: 4px;
  width: 15px;
  height: 15px;
  border: solid #3c3c3b;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (max-width: 375px) {
  .move-top:after {
    top: 2px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1800px) {
  .move-top {
    right: 45px;
    bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .move-top {
    right: 35px;
    bottom: 35px;
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 425px) {
  .move-top {
    right: 25px;
    bottom: 25px;
  }
}
@media screen and (max-width: 375px) {
  .move-top {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}

.move-top--logged {
  bottom: 175px;
}
@media screen and (max-width: 1024px) {
  .move-top--logged {
    bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  .move-top--logged {
    bottom: 110px;
  }
}
@media screen and (max-width: 480px) {
  .move-top--logged {
    bottom: 90px;
  }
}

.banners-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1080px) {
  .banners-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .banners-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 425px) {
  .banners-list {
    grid-gap: 20px;
  }
}
.banners-list--1 {
  display: flex;
  justify-content: center;
}
.banners-list--1 .banners {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .banners-list--1 .banners {
    width: 100%;
  }
}
@media screen and (min-width: 1081px) {
  .banners-list--2 {
    display: flex;
    justify-content: center;
  }
  .banners-list--2 .banners {
    width: calc(33.33% - 20px);
  }
}

.banners {
  position: relative;
  background-color: #ccc;
}
.banners .admin-actions {
  z-index: 1;
}

.banners__img-wrapper {
  position: relative;
  display: block;
  padding-top: 56.3381%;
  background: center no-repeat;
  background-size: cover;
}
.banners__img-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 55, 68, 0.55);
  -moz-transition: background-color ease-in-out 300ms;
  -o-transition: background-color ease-in-out 300ms;
  -webkit-transition: background-color ease-in-out 300ms;
  transition: background-color ease-in-out 300ms;
}
.banners__img-wrapper:hover:before {
  background-color: rgba(53, 55, 68, 0.4);
}
.banners__img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 57, 127, 0);
  -moz-transition: background-color ease-in-out 300ms;
  -o-transition: background-color ease-in-out 300ms;
  -webkit-transition: background-color ease-in-out 300ms;
  transition: background-color ease-in-out 300ms;
}
.banners__img-wrapper:hover:after {
  background-color: rgba(48, 57, 127, 0.55);
}
.banners__img-wrapper--white:after {
  background-color: rgba(255, 255, 255, 0);
}
.banners__img-wrapper--white:hover:after {
  background-color: rgba(255, 255, 255, 0.66);
}

.banner__inner-wrapper {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

.banner__text-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 35px 50px 35px 35px;
}
@media screen and (max-width: 1024px) {
  .banner__text-wrapper {
    padding: 25px 45px 25px 25px;
  }
}
@media screen and (max-width: 425px) {
  .banner__text-wrapper {
    padding: 15px 45px 15px 20px;
  }
}

.banner__title,
.banner__subtitle {
  position: relative;
  display: block;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
}

.banner__title {
  left: 0;
  right: 0;
  padding: 5px 15px;
  font-size: 30px;
  color: #fff;
  border-radius: 5px;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
@media screen and (max-width: 1280px) {
  .banner__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .banner__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 900px) {
  .banner__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 800px) {
  .banner__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .banner__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px) {
  .banner__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .banner__title {
    right: 12px;
    font-size: 20px;
  }
}
.banners__img-wrapper--white:hover .banner__title {
  color: #30397F;
}

.banner__subtitle {
  left: 0;
  right: 0;
  padding: 5px 15px;
  font-size: 22px;
  color: #fff;
  border-radius: 5px;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
@media screen and (max-width: 1024px) {
  .banner__subtitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 900px) {
  .banner__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .banner__subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .banner__subtitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 500px) {
  .banner__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .banner__subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .banner__subtitle {
    font-size: 17px;
  }
}
.banners__img-wrapper--white:hover .banner__subtitle {
  color: #30397F;
}

.banner__divider {
  height: 5px;
}

@media screen and (max-width: 680px) {
  .content-image-text {
    max-width: 440px;
  }
}

.image-text-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -25px;
}
@media screen and (max-width: 1280px) {
  .image-text-list {
    margin: -20px;
  }
}
@media screen and (max-width: 768px) {
  .image-text-list {
    margin: -20px -15px;
  }
}
@media screen and (max-width: 680px) {
  .image-text-list {
    margin: -20px 0;
  }
}
@media screen and (max-width: 425px) {
  .image-text-list {
    margin: -18px 0;
  }
}

.image-text {
  position: relative;
  margin: 25px;
  width: calc(33.33% - 50px);
}
@media screen and (max-width: 1280px) {
  .image-text {
    margin: 20px;
    width: calc(33.33% - 40px);
  }
}
@media screen and (max-width: 1024px) {
  .image-text {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .image-text {
    margin: 20px 15px;
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 680px) {
  .image-text {
    margin: 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .image-text {
    margin: 18px 0;
  }
}

.image-text__image {
  padding-top: 60%;
  background: center no-repeat;
  background-size: cover;
}

.image-text__text {
  margin-top: 35px;
  padding: 0 25px;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .image-text__text {
    margin-top: 25px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .image-text__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 680px) {
  .image-text__text {
    padding: 0;
  }
}
@media screen and (max-width: 425px) {
  .image-text__text {
    margin-top: 18px;
  }
}

.compact-banner {
  position: relative;
}
.compact-banner + .compact-banner {
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .compact-banner + .compact-banner {
    margin-top: 30px;
  }
}
@media screen and (max-width: 425px) {
  .compact-banner + .compact-banner {
    margin-top: 25px;
  }
}
@media screen and (max-width: 375px) {
  .compact-banner + .compact-banner {
    margin-top: 20px;
  }
}

.compact-banner__inner {
  padding: 30px;
  border-radius: 5px;
  color: #fff;
}
@media screen and (min-width: 1201px) {
  .compact-banner__inner {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .compact-banner__inner {
    padding: 30px;
  }
}
@media screen and (max-width: 425px) {
  .compact-banner__inner {
    padding: 20px;
  }
}
.compact-banner__inner--theme1 {
  background-color: #30397F;
}
.content-wrapper--blue .compact-banner__inner--theme1 {
  color: #30397F;
  background-color: #ffce00;
}
.compact-banner__inner--theme2 {
  background-color: #ef404a;
}
.compact-banner__inner--theme3 {
  background-color: #222222;
}
.compact-banner__inner--theme4 {
  background-color: #3c3c3b;
}
.compact-banner__inner--theme5 {
  background-color: #565654;
}
.content--compact-banners-hp .compact-banner__inner {
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.compact-banner__icon {
  flex-shrink: 0;
  margin-right: 20px;
  width: 125px;
  height: 50px;
  background: center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .compact-banner__icon {
    width: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .compact-banner__icon {
    background-position: center left;
    width: 125px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 425px) {
  .compact-banner__icon {
    margin-bottom: 10px;
  }
}
.compact-banner__icon--cta {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .compact-banner__icon--cta {
    margin-left: auto;
    margin-right: auto;
    background-position: center;
  }
}

.compact-banner__heading {
  align-self: center;
  line-height: 1.2142857143;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (min-width: 1201px) {
  .compact-banner__heading {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1440px) {
  .compact-banner__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 1280px) {
  .compact-banner__heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .compact-banner__heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .compact-banner__heading {
    font-size: 20px;
  }
}
.compact-banner__heading strong {
  font-weight: 700;
}

.compact-banner__btns {
  margin-left: auto;
  display: flex;
  align-self: center;
}
@media screen and (max-width: 1200px) {
  .compact-banner__btns {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .compact-banner__btns {
    margin-top: 10px;
  }
}

.compact-banner__btn {
  margin-top: 0;
  font-weight: 700;
}
.compact-banner__btn--download {
  padding-right: 50px;
}
.compact-banner__btn--download:after {
  content: "";
  position: absolute;
  right: 25px;
  width: 15px;
  height: 16px;
  background: url("../web_images/ico_download.svg") center left no-repeat;
  background-size: contain;
}
.compact-banner__inner--theme1 .compact-banner__btn, .compact-banner__inner--theme3 .compact-banner__btn, .compact-banner__inner--theme4 .compact-banner__btn, .compact-banner__inner--theme5 .compact-banner__btn {
  color: #30397F;
  background-color: #ffce00;
}
.compact-banner__inner--theme1 .compact-banner__btn:hover, .compact-banner__inner--theme3 .compact-banner__btn:hover, .compact-banner__inner--theme4 .compact-banner__btn:hover, .compact-banner__inner--theme5 .compact-banner__btn:hover {
  background-color: #fff;
  color: #1C2252;
}
.compact-banner__inner--theme1 .compact-banner__btn:nth-child(2), .compact-banner__inner--theme2 .compact-banner__btn:nth-child(2), .compact-banner__inner--theme3 .compact-banner__btn:nth-child(2), .compact-banner__inner--theme4 .compact-banner__btn:nth-child(2), .compact-banner__inner--theme5 .compact-banner__btn:nth-child(2) {
  color: #1C2252;
  background-color: #F2F3F5;
}
.compact-banner__inner--theme1 .compact-banner__btn:nth-child(2):hover, .compact-banner__inner--theme2 .compact-banner__btn:nth-child(2):hover, .compact-banner__inner--theme3 .compact-banner__btn:nth-child(2):hover, .compact-banner__inner--theme4 .compact-banner__btn:nth-child(2):hover, .compact-banner__inner--theme5 .compact-banner__btn:nth-child(2):hover {
  background-color: #e4e6ea;
}
.content-wrapper--blue .compact-banner__inner--theme1 .compact-banner__btn:nth-child(1) {
  color: #fff;
  background-color: #1C2252;
}
.content-wrapper--blue .compact-banner__inner--theme1 .compact-banner__btn:nth-child(1):hover {
  color: #1C2252;
  background-color: #e4e6ea;
}
.content-wrapper--blue .compact-banner__inner--theme1 .compact-banner__btn--download:nth-child(1):after {
  background-image: url("../web_images/ico_download_w.svg");
}
.content-wrapper--blue .compact-banner__inner--theme1 .compact-banner__btn--download:nth-child(1):hover:after {
  background-image: url("../web_images/ico_download.svg");
}
.compact-banner__inner--theme2 .compact-banner__btn:nth-child(1) {
  color: #fff;
  background-color: #1C2252;
}
.compact-banner__inner--theme2 .compact-banner__btn:nth-child(1):hover {
  color: #1C2252;
  background-color: #fff;
}
.compact-banner__inner--theme2 .compact-banner__btn:nth-child(1):after {
  background-image: url("../web_images/ico_download_w.svg");
}
.compact-banner__inner--theme2 .compact-banner__btn:nth-child(1):hover:after {
  background-image: url("../web_images/ico_download.svg");
}
.compact-banner__btn--download:nth-child(2):after {
  background-image: url("../web_images/ico_download.svg");
}
@media screen and (max-width: 1200px) {
  .compact-banner__btn {
    margin-right: 20px;
    margin-top: 10px;
  }
}
.compact-banner__btn + .compact-banner__btn {
  margin-left: 30px;
}
@media screen and (max-width: 1280px) {
  .compact-banner__btn + .compact-banner__btn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .compact-banner__btn + .compact-banner__btn {
    margin-left: 0;
  }
}

.slides-outer-wrapper {
  position: relative;
}

.slides-heading-lvl2 {
  margin-bottom: 30px;
  font-weight: 700;
}

.slides-wrapper {
  position: relative;
}

.slides-list--admin {
  display: flex;
  flex-wrap: wrap;
  margin: -30px;
}
@media screen and (max-width: 900px) {
  .slides-list--admin {
    margin: -15px;
  }
}

.slides {
  position: relative;
  display: flex;
  outline: none;
  width: calc(50% - 60px);
  margin: 30px;
}
@media screen and (max-width: 900px) {
  .slides {
    display: block;
    float: left;
    width: calc(100% - 30px);
    margin: 15px;
  }
}
.slides .admin-actions.small {
  width: auto;
}
.slides:focus-visible {
  outline-style: auto;
}

.slides__heading {
  line-height: 1.2;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .slides__heading {
    font-size: 24px;
  }
}

.slides-list .slick-arrow {
  position: absolute;
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 36px;
  font-size: 0;
  background-color: #A7A9AC;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 1024px) {
  .slides-list .slick-arrow {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 679px) {
  .slides-list .slick-arrow {
    position: absolute;
    bottom: -60px;
  }
}
.slides-list .slick-arrow:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 11px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #ffffff;
}
@media screen and (max-width: 1024px) {
  .slides-list .slick-arrow:after {
    top: 8px;
    border-width: 7px 0 7px 12px;
  }
}
.slides-list .slick-arrow:hover {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
@media screen and (max-width: 679px) {
  .slides-list .slick-arrow:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
.slides-list .slick-arrow:focus-visible {
  outline-style: auto;
}

.slides-list .slick-prev:after {
  margin-left: -4px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 679px) {
  .slides-list .slick-prev {
    left: 0;
  }
}

.slides-list .slick-next:after {
  left: 7px;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .slides-list .slick-next:after {
    left: 6px;
  }
}
@media screen and (max-width: 679px) {
  .slides-list .slick-next {
    right: 0;
  }
}

.slides-wrapper .slides-dots-container {
  position: absolute;
  bottom: 45px;
  padding: 0 45px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .slides-wrapper .slides-dots-container {
    bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .slides-wrapper .slides-dots-container {
    padding: 0 35px;
  }
}
@media screen and (max-width: 425px) {
  .slides-wrapper .slides-dots-container {
    padding: 0 25px;
  }
}
@media screen and (max-width: 375px) {
  .slides-wrapper .slides-dots-container {
    padding: 0 20px;
  }
}
.slides-wrapper .slides-dots-container .slick-dots {
  display: flex;
  justify-content: flex-end;
  max-width: 1420px;
  margin: 0 auto;
}
.slides-wrapper .slides-dots-container li {
  display: block;
}
.slides-wrapper .slides-dots-container li + li {
  margin-left: 20px;
}
.slides-wrapper .slides-dots-container button {
  display: block;
  width: 14px;
  height: 14px;
  font-size: 0;
  background-color: #fff;
}
.slides-wrapper .slides-dots-container button:focus-visible {
  outline-style: auto;
}
.slides-wrapper .slides-dots-container button:hover,
.slides-wrapper .slides-dots-container .slick-active button {
  background-color: #ef404a;
}

.intro-text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.intro-text__heading,
.intro-text__para {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .intro-text__heading,
  .intro-text__para {
    width: 100%;
    max-width: 680px;
  }
}

.intro-text__heading {
  line-height: 1.2083333333;
  padding-right: 75px;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1500px) {
  .intro-text__heading {
    font-size: 44px;
  }
}
@media screen and (max-width: 1440px) {
  .intro-text__heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 1330px) {
  .intro-text__heading {
    font-size: 40px;
  }
}
@media screen and (max-width: 1250px) {
  .intro-text__heading {
    padding-right: 50px;
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  .intro-text__heading {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .intro-text__heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 600px) {
  .intro-text__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 425px) {
  .intro-text__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .intro-text__heading {
    font-size: 24px;
  }
}

.intro-text__para {
  line-height: 1.6;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .intro-text__para {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .intro-text__para {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .intro-text__para {
    margin-top: 15px;
    font-size: 16px;
  }
}

.page-heading + .content-wrapper-tile {
  background-color: transparent;
}

.page-heading + .content-wrapper-tile .content-tile {
  margin-top: -110px;
  padding-top: 0;
}
@media screen and (max-width: 1200px) {
  .page-heading + .content-wrapper-tile .content-tile {
    margin-top: -100px;
  }
}
@media screen and (max-width: 768px) {
  .page-heading + .content-wrapper-tile .content-tile {
    margin-top: -80px;
  }
}
@media screen and (max-width: 425px) {
  .page-heading + .content-wrapper-tile .content-tile {
    margin-top: -75px;
  }
}

.tile-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: order;
}
@media screen and (max-width: 1440px) {
  .tile-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .tile-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .tile-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .tile-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.tile {
  position: relative;
}

.tile__inner,
.tile__link {
  display: block;
  height: 100%;
  padding: 50px;
  color: #fff;
  -moz-transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
  -o-transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
  -webkit-transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
  transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
@media screen and (max-width: 1440px) {
  .tile__inner,
  .tile__link {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .tile__inner,
  .tile__link {
    padding: 30px;
  }
}
@media screen and (max-width: 425px) {
  .tile__inner,
  .tile__link {
    padding: 25px;
  }
}
@media screen and (min-width: 1441px) {
  .tile:nth-child(10n+1) .tile__inner, .tile:nth-child(10n+10) .tile__inner,
  .tile:nth-child(10n+1) .tile__link,
  .tile:nth-child(10n+10) .tile__link {
    background-color: #3e4aa4;
  }
  .tile:nth-child(10n+2) .tile__inner, .tile:nth-child(16n+2) .tile__inner, .tile:nth-child(10n+8) .tile__inner,
  .tile:nth-child(10n+2) .tile__link,
  .tile:nth-child(16n+2) .tile__link,
  .tile:nth-child(10n+8) .tile__link {
    background-color: #3d48a0;
  }
  .tile:nth-child(10n+3) .tile__inner, .tile:nth-child(16n+3) .tile__inner, .tile:nth-child(10n+9) .tile__inner,
  .tile:nth-child(10n+3) .tile__link,
  .tile:nth-child(16n+3) .tile__link,
  .tile:nth-child(10n+9) .tile__link {
    background-color: #384395;
  }
  .tile:nth-child(10n+4) .tile__inner, .tile:nth-child(10n+7) .tile__inner,
  .tile:nth-child(10n+4) .tile__link,
  .tile:nth-child(10n+7) .tile__link {
    background-color: #343e8a;
  }
  .tile:nth-child(10n+5) .tile__inner, .tile:nth-child(10n+6) .tile__inner,
  .tile:nth-child(10n+5) .tile__link,
  .tile:nth-child(10n+6) .tile__link {
    background-color: #30397f;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .tile:nth-child(8n+1) .tile__inner, .tile:nth-child(8n+8) .tile__inner,
  .tile:nth-child(8n+1) .tile__link,
  .tile:nth-child(8n+8) .tile__link {
    background-color: #3e4aa4;
  }
  .tile:nth-child(8n+2) .tile__inner, .tile:nth-child(8n+7) .tile__inner,
  .tile:nth-child(8n+2) .tile__link,
  .tile:nth-child(8n+7) .tile__link {
    background-color: #3d48a0;
  }
  .tile:nth-child(8n+3) .tile__inner, .tile:nth-child(8n+6) .tile__inner,
  .tile:nth-child(8n+3) .tile__link,
  .tile:nth-child(8n+6) .tile__link {
    background-color: #384395;
  }
  .tile:nth-child(8n+4) .tile__inner, .tile:nth-child(8n+5) .tile__inner,
  .tile:nth-child(8n+4) .tile__link,
  .tile:nth-child(8n+5) .tile__link {
    background-color: #343e8a;
  }
}
@media screen and (min-width: 901px) and (max-width: 1280px) {
  .tile:nth-child(9n+1) .tile__inner, .tile:nth-child(9n+9) .tile__inner, .tile:nth-child(9n+5) .tile__inner,
  .tile:nth-child(9n+1) .tile__link,
  .tile:nth-child(9n+9) .tile__link,
  .tile:nth-child(9n+5) .tile__link {
    background-color: #3e4aa4;
  }
  .tile:nth-child(9n+2) .tile__inner, .tile:nth-child(9n+7) .tile__inner, .tile:nth-child(9n+6) .tile__inner,
  .tile:nth-child(9n+2) .tile__link,
  .tile:nth-child(9n+7) .tile__link,
  .tile:nth-child(9n+6) .tile__link {
    background-color: #384395;
  }
  .tile:nth-child(9n+3) .tile__inner, .tile:nth-child(9n+4) .tile__inner, .tile:nth-child(9n+8) .tile__inner,
  .tile:nth-child(9n+3) .tile__link,
  .tile:nth-child(9n+4) .tile__link,
  .tile:nth-child(9n+8) .tile__link {
    background-color: #30397f;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .tile__inner,
  .tile__link {
    background-color: #3e4aa4;
  }
  .tile:nth-child(4n+2) .tile__inner, .tile:nth-child(4n+3) .tile__inner,
  .tile:nth-child(4n+2) .tile__link,
  .tile:nth-child(4n+3) .tile__link {
    background-color: #384395;
  }
}
@media screen and (min-width: 320px) and (max-width: 600px) {
  .tile__inner,
  .tile__link {
    background-color: #3e4aa4;
  }
  .tile:nth-child(even) .tile__inner,
  .tile:nth-child(even) .tile__link {
    background-color: #384395;
  }
}

.tile:hover .tile__link {
  color: #30397F;
  background-color: #ffce00;
}

.tile__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 36px;
  font-weight: 700;
  color: #ef404a;
  background-color: #fff;
  -moz-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  /*.tile:hover & {
      color: #fff;
      background-color: $color-turquoise-hover;
  }*/
}
@media screen and (max-width: 1024px) {
  .tile__heading {
    width: 55px;
    height: 55px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .tile__heading {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .tile__heading {
    width: 45px;
    height: 45px;
    font-size: 26px;
  }
}
@media screen and (max-width: 425px) {
  .tile__heading {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}
.tile__heading:before {
  content: counters(order, ".", decimal-leading-zero);
  counter-increment: order;
}

.tile__para {
  margin-top: 25px;
  line-height: 1.2222222222;
  font-size: 18px;
}
@media screen and (max-width: 1440px) {
  .tile__para {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tile__para {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .tile__para {
    font-size: 17px;
  }
}
@media screen and (max-width: 375px) {
  .tile__para {
    font-size: 16px;
  }
}

.tile__btn.btn {
  margin-top: 25px;
  padding: 0;
  line-height: initial;
  color: inherit;
  background-color: transparent;
  font-weight: 500;
  text-decoration: underline white;
  text-underline-offset: 2px;
  -moz-transition: text-decoration-color ease-in-out 0.3s;
  -o-transition: text-decoration-color ease-in-out 0.3s;
  -webkit-transition: text-decoration-color ease-in-out 0.3s;
  transition: text-decoration-color ease-in-out 0.3s;
}
@media screen and (max-width: 1440px) {
  .tile__btn.btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .tile__btn.btn {
    margin-top: 15px;
  }
}
.tile__btn.btn:hover {
  background-color: transparent;
}
.tile:hover .tile__btn.btn {
  text-decoration-color: #30397F;
}

.calendar-container {
  padding: 50px;
  background-color: rgba(28, 34, 82, 0.8);
}
@media screen and (max-width: 1440px) {
  .calendar-container {
    padding: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .calendar-container {
    padding: 30px;
  }
}
@media screen and (max-width: 900px) {
  .calendar-container {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .calendar-container {
    padding: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 355px) {
  .calendar-container {
    padding: 25px 15px;
    margin: 0 -20px;
  }
}

.calendar {
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}
.calendar header .simple-calendar-btn {
  display: inline-block;
  position: absolute;
  top: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
}
.calendar header .simple-calendar-btn:hover {
  background: #fff;
  color: #e91320;
}
.calendar header .simple-calendar-btn:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transform-origin: center center;
}
.calendar header .btn-prev {
  left: 0;
  transform: rotate(-180deg);
}
.calendar header .btn-next {
  right: 0;
}
.calendar header .btn-next:before {
  transform: rotate(45deg);
}
.calendar header .month {
  padding: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .calendar header .month {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .calendar header .month {
    font-size: 20px;
  }
}
.calendar header .month .year {
  font-size: 14px;
  font-weight: 400;
}
.calendar table {
  width: 100%;
  margin: 20px 0 0;
}
.calendar thead {
  font-weight: 700;
}
.calendar td {
  padding: 5px 2px;
}
@media screen and (max-width: 900px) {
  .calendar td {
    padding: 2px;
  }
}
.calendar .day {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 2.25;
  border: 2px solid transparent;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .calendar .day {
    width: 40px;
    height: 40px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .calendar .day {
    width: 35px;
    height: 35px;
    line-height: 1.9;
  }
}
.calendar .day:hover {
  border: 2px solid #fff;
}
.calendar .day.wrong-month {
  color: rgba(255, 255, 255, 0.5);
}
.calendar .day.today {
  background: #fff;
  color: #e91320;
}
.calendar .day.today.has-event:after {
  background: white;
}
.calendar .day.has-event:after {
  content: "";
  position: absolute;
  top: calc(50% + 0.6em);
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  background: #fff;
}
.calendar .day.disabled {
  cursor: default;
}
.calendar .day.disabled:hover {
  border: 2px solid transparent;
}
.calendar .filler {
  display: none;
}

.content-wrapper-event {
  /*background: $color-turquoise-hover url("../web_images/bg.svg") center bottom no-repeat;
  background-size: cover;*/
}

@media screen and (min-width: 681px) {
  .event-inner {
    display: flex;
    align-items: flex-start;
  }
}

.event-divider {
  flex-shrink: 0;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .event-divider {
    width: 10px;
  }
}
@media screen and (max-width: 680px) {
  .event-divider {
    width: 100%;
    height: 30px;
  }
}
@media screen and (max-width: 375px) {
  .event-divider {
    height: 20px;
  }
}

.event-list-wrapper {
  width: 100%;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .event-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .event-list {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .event-list {
    gap: 10px;
  }
}

.event {
  display: none;
}
.event.active {
  display: block;
}

.event__link {
  position: relative;
  display: block;
  height: 100%;
  padding: 45px;
  background-color: #f2f3f5;
}
.event__link:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
}
.content-wrapper--light-grey .event__link {
  background-color: #fff;
}
.content-wrapper--blue .event__link {
  background-color: #0C1B27;
}
.content-wrapper--blue .event__link:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1440px) {
  .event__link {
    padding: 35px;
  }
}
@media screen and (max-width: 1280px) {
  .event__link {
    padding: 25px;
  }
}
@media screen and (max-width: 900px) {
  .event__link {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .event__link {
    padding: 15px 18px;
  }
}

.event__info {
  margin-bottom: 10px;
  display: flex;
  line-height: 1.2;
  font-size: 16px;
}

.event__tag {
  padding: 3px 6px;
  background-color: #30397F;
  color: #fff;
}
.event__tag + .event__tag {
  margin-left: 5px;
}

.event__more-tags {
  cursor: help;
  margin-left: 10px;
  text-align: center;
  line-height: 1.5;
  width: 25px;
  color: #fff;
  background-color: #ef404a;
}
.event__more-tags:hover {
  background-color: #e91320;
}

.event__datetime {
  font-size: 18px;
  color: #d9121e;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .event__datetime {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .event__datetime {
    font-size: 16px;
  }
}

.event__title {
  margin-top: 5px;
  line-height: 1.1875;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 1440px) {
  .event__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .event__title {
    font-size: 22px;
  }
}

.events-switch {
  display: flex;
  flex-direction: column;
}

.events-switch__switcher {
  margin: 0 auto;
  overflow: hidden;
  display: flex;
}

.events-switch__btn {
  padding: 15px 25px 13px;
  font-size: 18px;
  letter-spacing: 0.45px;
  color: #fff;
  background-color: #32aeff;
}
.events-switch__btn.active {
  font-weight: 700;
  background-color: #1C2252;
}
.events-switch__btn:hover {
  background-color: #30397F;
}

.events-switch__lists {
  margin-top: 50px;
}

.events-switch__list {
  display: none;
}
.events-switch__list.active {
  display: block;
}

.events-columns {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .events-columns {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 425px) {
  .events-columns {
    gap: 50px;
  }
}

@media screen and (min-width: 1025px) {
  .events-columns__column:first-child {
    width: 60%;
  }
  .events-columns__column:last-child {
    width: 40%;
  }
}

.events-columns__heading {
  font-size: 36px;
  font-weight: 800;
}
@media screen and (max-width: 1250px) {
  .events-columns__heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .events-columns__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 680px) {
  .events-columns__heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 425px) {
  .events-columns__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .events-columns__heading {
    font-size: 24px;
  }
}

.events-columns__list {
  margin-top: 50px;
}
@media screen and (max-width: 1280px) {
  .events-columns__list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .events-columns__list {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .events-columns__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 425px) {
  .events-columns__list {
    margin-top: 25px;
  }
}

.news-list--events-future-columns {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .news-list--events-future-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.compact-hp-list--events-future-columns,
.compact-hp-list--events-past-columns {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .compact-hp-list--events-future-columns,
  .compact-hp-list--events-past-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .compact-hp-list--events-future-columns,
  .compact-hp-list--events-past-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1200px) {
  .content-wrapper-items-selector:has(.project-list),
  .content-wrapper-project {
    padding: 0 65px;
  }
}
@media screen and (max-width: 540px) {
  .content-wrapper-items-selector:has(.project-list),
  .content-wrapper-project {
    padding: 0 55px;
  }
}
@media screen and (max-width: 425px) {
  .content-wrapper-items-selector:has(.project-list),
  .content-wrapper-project {
    padding: 0 50px;
  }
}

.project-list .slick-track {
  justify-content: center;
}

.project-list:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}

.project {
  position: relative;
}

.project.slick-slide {
  padding: 0 15px;
}

.project__img {
  display: block;
  padding-top: 120.8333333333%;
  background: rgba(0, 0, 0, 0.025) center no-repeat;
  background-size: cover;
}

.map {
  position: relative;
  background-color: #f2f2f2;
}
@media screen and (min-width: 769px) {
  .map {
    padding-top: 75vh;
  }
}
@media screen and (max-width: 768px) {
  .map {
    padding-top: 0;
    height: 66vh;
    max-height: 600px;
  }
}

.map__inner {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cookies-button {
  z-index: 1;
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
}
.cookies-button:hover {
  border-color: #3c3c3b;
}
.cookies-button:hover:after {
  opacity: 1;
}
.cookies-button:after {
  content: "";
  background: #fff url("../web_images/ico_cookies.svg") center no-repeat;
  background-size: contain;
  opacity: 0.6;
  position: relative;
  display: block;
  width: 60%;
  height: 60%;
}
@media screen and (max-width: 768px) {
  .cookies-button {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 375px) {
  .cookies-button {
    width: 50px;
    height: 50px;
  }
}

.img-text {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 1080px) {
  .img-text {
    padding: 50px 0;
  }
}
.img-text:first-child {
  padding-top: 0;
}
.img-text:nth-child(even) {
  color: #fff;
  background-color: #30397F;
}
.img-text .admin-actions {
  z-index: 2;
}

.img-text__inner-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 45px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .img-text__inner-wrapper {
    padding: 0 35px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__inner-wrapper {
    padding: 0 25px;
  }
}
@media screen and (max-width: 375px) {
  .img-text__inner-wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1280px) {
  .img-text__inner-wrapper {
    gap: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .img-text__inner-wrapper {
    gap: 70px;
  }
}
@media screen and (min-width: 1081px) {
  .img-text:nth-child(even) .img-text__inner-wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1080px) {
  .img-text__inner-wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.img-text__inner-wrapper .admin-actions {
  z-index: 2;
}

@media screen and (min-width: 1081px) {
  .img-text__text {
    width: 50%;
    align-self: center;
  }
}

.img-text__title {
  position: relative;
  max-width: 500px;
  line-height: 1.0833333333;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .img-text__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1200px) {
  .img-text__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .img-text__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  .img-text__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .img-text__title {
    font-size: 24px;
  }
}

.img-text__cta {
  margin-top: 30px;
  color: #1C2252;
  background-color: #fff;
}
.img-text__cta:hover {
  color: #fff;
  background-color: #1C2252;
}
.img-text:nth-child(odd) .img-text__cta {
  color: #fff;
  background-color: #ef404a;
}
.img-text:nth-child(odd) .img-text__cta:hover {
  color: #fff;
  background-color: #1C2252;
}

.img-text__image {
  position: relative;
  width: 100%;
  background-color: #d8d8d8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 33%;
}
@media screen and (min-width: 1081px) {
  .img-text__image {
    width: 50%;
  }
}
@media screen and (max-width: 1080px) {
  .img-text__image {
    padding-top: 66%;
  }
}

.img-text__para {
  max-width: 768px;
  margin-top: 20px;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .img-text__para {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__para {
    font-size: 17px;
  }
}
.img-text__para--simple {
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .img-text__para--simple {
    font-size: 17px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__para--simple {
    font-size: 16px;
  }
}
.img-text__para h4 {
  margin-top: 30px;
  line-height: 1.2;
  font-size: 32px;
}
@media screen and (max-width: 1280px) {
  .img-text__para h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .img-text__para h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 540px) {
  .img-text__para h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .img-text__para h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__para h4 {
    margin-top: 20px;
    font-size: 22px;
  }
}
.img-text__para h4:first-child {
  margin-top: 0;
}
.img-text__para p {
  margin-top: 20px;
}
@media screen and (max-width: 425px) {
  .img-text__para p {
    margin-top: 15px;
  }
}
.img-text__para p:first-child {
  margin-top: 0;
}
.img-text__para ul {
  margin-top: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 425px) {
  .img-text__para ul {
    margin-top: 15px;
    margin-left: 5px;
  }
}
.img-text__para ul ul {
  margin-top: 10px;
  margin-left: 0;
}
@media screen and (max-width: 425px) {
  .img-text__para ul ul {
    margin-top: 5px;
  }
}
.img-text__para ul:first-child {
  margin-top: 0;
}
.img-text__para li {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 425px) {
  .img-text__para li {
    padding-left: 15px;
  }
}
.img-text__para li + li {
  margin-top: 5px;
}
.img-text__para li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ef404a;
}
.img-text:nth-child(even) .img-text__para li:before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .img-text__para li:before {
    top: 5px;
  }
}
@media screen and (max-width: 425px) {
  .img-text__para li:before {
    top: 5px;
    width: 8px;
    height: 8px;
  }
}
.img-text__para strong {
  font-weight: 700;
}
.img-text__para em {
  font-style: italic;
}
.img-text__para a {
  font-weight: 700;
  text-decoration: underline;
}
.img-text__para a:hover {
  text-decoration: underline transparent;
}

.compact-news {
  position: relative;
  color: #30397F;
  background-color: #FFCE01;
}
@media screen and (min-width: 1081px) {
  .compact-news--nested:not(.compact-news--admin) {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}

.compact-hp__content {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.compact-hp__heading {
  line-height: 1.4;
  color: #30397F;
  font-weight: 700;
}

.compact-hp__wrapper {
  width: 100%;
}

.compact-hp__link {
  display: inline-block;
  line-height: 1.45;
}

.compact-hp__event-date {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 5px;
  color: #30397F;
}

.compact-hp__event-date-ico {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  background: url("../web_images/ico_event-date-white.svg") center left no-repeat;
  background-size: contain;
}
.content-wrapper--blue .compact-hp__event-date-ico {
  background-image: url("../web_images/ico_event-date-white.svg");
}

.compact-hp__event-date-text {
  padding-top: 2px;
  line-height: 18px;
  font-size: 16px;
  color: #30397F;
}

.compact-hp__title {
  font-weight: 500;
  color: #30397F;
}
.content-wrapper--blue .compact-hp__title {
  color: #fff;
}

.compact-hp__btn {
  font-size: 16px;
  font-weight: 400;
  color: #30397F;
  text-decoration: underline;
  -moz-transition: text-decoration ease-in-out 0.3s;
  -o-transition: text-decoration ease-in-out 0.3s;
  -webkit-transition: text-decoration ease-in-out 0.3s;
  transition: text-decoration ease-in-out 0.3s;
}
.compact-hp__link:hover .compact-hp__btn {
  text-decoration: underline transparent;
}
.content-wrapper--blue .compact-hp__btn {
  color: #fff;
}

.btn-more-news {
  margin: 0;
  height: 55px;
  color: #fff;
  background-color: #115387;
  white-space: nowrap;
  font-weight: 700;
}
.btn-more-news:hover {
  color: #115387;
  background-color: #fff;
}

@media screen and (min-width: 1081px) {
  .compact-hp__heading {
    padding-right: 35px;
    width: 15%;
  }
  .compact-hp {
    width: 50%;
    padding-right: 35px;
  }
  .compact-hp__title {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 1080px) {
  .compact-hp__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 0;
  }
  .compact-hp__heading br {
    display: none;
  }
  .compact-hp-list {
    margin: 35px 0;
  }
}
@media screen and (min-width: 769px) {
  .compact-hp-list {
    display: flex;
  }
  .compact-hp {
    width: 50%;
    padding-right: 35px;
  }
}
@media screen and (max-width: 768px) {
  .compact-hp {
    width: 100%;
  }
  .compact-hp + .compact-hp {
    margin-top: 20px;
  }
}
@media screen and (max-width: 425px) {
  .compact-hp-list {
    margin: 30px 0;
  }
}
.content-wrapper--dark.bottom-banner {
  background-color: #ffce00;
}
.content-wrapper--dark.bottom-banner .bottom-banner__heading {
  color: #30397F;
}
.content-wrapper--dark.bottom-banner .bottom-banner__btn.more-btn {
  color: #fff;
  background-color: #30397F;
}
.content-wrapper--dark.bottom-banner .bottom-banner__btn.more-btn:hover {
  background-color: #22285a;
}

.slides-outer-wrapper--blue .bottom-banner {
  background-color: #30397F;
}
.slides-outer-wrapper--blue .bottom-banner .bottom-banner__heading {
  color: #fff;
}
.slides-outer-wrapper--blue .bottom-banner .bottom-banner__btn.more-btn {
  color: #30397F;
  background-color: #ffce00;
}
.slides-outer-wrapper--blue .bottom-banner .bottom-banner__btn.more-btn:hover {
  background-color: #e6b900;
}

/* Zapati */
.footer-bg {
  padding-top: 42vw;
}

/* Menu polozky */
.footer {
  background: #1C2252;
}
.footer strong {
  font-weight: 700;
}

.footer__content--logos {
  max-width: 1024px;
  padding-top: 0;
  padding-bottom: 0;
}

.footer__inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .footer__inner-wrapper {
    grid-gap: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__inner-wrapper {
    grid-gap: 50px;
  }
}
@media screen and (max-width: 900px) {
  .footer__inner-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
}

.footer__heading-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.footer__heading {
  color: #fff;
}

.footer-contact {
  flex-shrink: 0;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .footer-contact {
    max-width: 400px;
  }
}

.footer-contact__heading {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.footer-contact__para {
  padding: 5px 0;
  line-height: 1.65;
}
.footer-contact__para--bold {
  font-weight: 700;
}

.footer-contact__link {
  text-decoration: underline;
}
.footer-contact__link:hover {
  color: #ffce00;
}
.footer-contact__link--submenu {
  display: block;
}
.footer-contact__link--no-underline {
  text-decoration: none;
}

.footer-contact__text {
  line-height: 1.4;
  font-size: 18px;
  color: #fff;
}

.footer-contact__text {
  margin-top: 12px;
}

/* Loga */
.footer__logos-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
}
@media screen and (max-width: 1280px) {
  .footer__logos-wrapper {
    gap: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logos-wrapper {
    gap: 60px;
  }
}
@media screen and (max-width: 900px) {
  .footer__logos-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .footer__logos-wrapper {
    flex-direction: column;
    gap: 25px;
  }
}

.footer__logo {
  width: auto;
  height: 50px;
}

/* Copyright */
.copyright__content {
  padding-bottom: 60px;
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .copyright__content {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 801px) {
  .copyright__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 800px) {
  .copyright__content {
    padding-bottom: 40px;
  }
}

.copyright__links {
  color: #fff;
}
@media screen and (max-width: 1350px) {
  .copyright__links {
    line-height: 1.25;
  }
}
@media screen and (max-width: 800px) {
  .copyright__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.copyright__contact-link {
  font-weight: 700;
}
@media screen and (max-width: 1350px) {
  .copyright__contact-link {
    display: block;
  }
}
.copyright__contact-link:hover {
  color: #ffce00;
}

@media screen and (max-width: 1350px) {
  .copyright__link {
    display: block;
  }
}
.copyright__link:hover {
  color: #ffce00;
}
@media screen and (min-width: 1351px) {
  .copyright__link + .copyright__link {
    margin-left: 25px;
  }
}

.footer-menu__link:hover,
.footer-menu__submenu__link:hover {
  color: #ffce00;
}

.copyright__logos-wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1350px) {
  .copyright__logo-link {
    line-height: 1.25;
  }
}
@media screen and (max-width: 800px) {
  .copyright__logo-link {
    margin-top: 25px;
  }
}
.copyright__logo-link + .copyright__logo-link {
  margin-left: 60px;
}
@media screen and (max-width: 1024px) {
  .copyright__logo-link + .copyright__logo-link {
    margin-left: 40px;
  }
}
@media screen and (max-width: 900px) {
  .copyright__logo-link + .copyright__logo-link {
    margin-left: 20px;
  }
}

.copyright__logo {
  margin-left: 20px;
  height: 40px;
}
@media screen and (max-width: 800px) {
  .copyright__logo {
    margin-left: 0;
    height: 35px;
  }
}

/* Slick js */
.slick-track {
  display: flex;
  margin: 0 auto;
}

.slick-slider {
  z-index: 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: none;
}

.slick-list {
  overflow: hidden;
}

.slick-prev,
.slick-next {
  z-index: 1;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 77px;
  font-size: 0;
  background-color: #ccc;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url("../web_images/ico_arrow_slideshow.svg") center no-repeat;
  background-size: contain;
}
.content-wrapper--blue .slick-prev,
.content-wrapper--blue .slick-next {
  background-image: url("../web_images/ico_arrow_slideshow_w.svg");
}
@media screen and (max-width: 1024px) {
  .slick-prev,
  .slick-next {
    width: 20px;
    height: 39px;
  }
}

.slick-prev {
  left: -15px;
}
.slick-prev:not(.slick-disabled):hover {
  -webkit-transform: translate(-5px, -50%);
  -moz-transform: translate(-5px, -50%);
  -ms-transform: translate(-5px, -50%);
  -o-transform: translate(-5px, -50%);
  transform: translate(-5px, -50%);
}

.slick-next {
  right: -15px;
  -webkit-transform: rotate(180deg) translate(0, -50%);
  -moz-transform: rotate(180deg) translate(0, -50%);
  -ms-transform: rotate(180deg) translate(0, -50%);
  -o-transform: rotate(180deg) translate(0, -50%);
  transform: rotate(180deg) translate(0, -50%);
}
.slick-next:not(.slick-disabled):hover {
  -webkit-transform: rotate(180deg) translate(-5px, -50%);
  -moz-transform: rotate(180deg) translate(-5px, -50%);
  -ms-transform: rotate(180deg) translate(-5px, -50%);
  -o-transform: rotate(180deg) translate(-5px, -50%);
  transform: rotate(180deg) translate(-5px, -50%);
}

.slick-disabled {
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.slick-slide {
  outline: none;
  padding: 0 45px;
}
@media screen and (max-width: 1024px) {
  .slick-slide {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .slick-slide {
    padding: 0 35px;
  }
}
@media screen and (max-width: 425px) {
  .slick-slide {
    padding: 0 30px;
  }
}
@media screen and (max-width: 375px) {
  .slick-slide {
    padding: 0 25px;
  }
}

.quotations.slick-slide {
  outline: none;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .quotations.slick-slide {
    padding: 0 40px;
  }
}
@media screen and (max-width: 425px) {
  .quotations.slick-slide {
    padding: 0 20px;
  }
}

/* Stranky 404 a 403 */
.error__content {
  position: relative;
  max-width: 525px;
}

.error__para + .error__para {
  margin-top: 15px;
}
@media screen and (max-width: 425px) {
  .error__para {
    font-size: 16px;
  }
}

/* Google reCAPTCHA */
.grecaptcha-badge {
  visibility: hidden;
}

/* Uprava builderu */
.builders-wrapper {
  display: block !important;
}

/********************* Tippy - tooltipy ********************/
.tippy-tooltip.default-theme {
  font-size: 14px;
  font-family: "atyp-bl-variable", "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 7px 11px 8px;
}

.theme-switcher--1 {
  background-color: #fff !important;
}

.theme-switcher--2 {
  background-color: #F1F1F1 !important;
}

.theme-switcher--3 {
  background-color: #22285a !important;
}

/**** COMBOBOX ****/
.ui-front {
  z-index: 800 !important;
}

.custom-combobox {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 42px;
}
@media screen and (max-width: 600px) {
  .custom-combobox {
    width: 200px;
  }
}

.custom-combobox-toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  padding: 0;
  right: -54px;
  width: 42px;
  background: #f5f5f5 url(../web_images/arrow_show.png) center center no-repeat !important;
  border-radius: 0 3px 3px 0;
  border: 1px solid #cccccc;
}
.custom-combobox-toggle:hover {
  cursor: pointer;
}

.custom-combobox-input {
  margin: 0;
  height: 100%;
  padding-left: 20px;
  border: 1px solid #cccccc;
  padding-right: 143px;
}
@media screen and (max-width: 600px) {
  .custom-combobox-input {
    padding-right: 60px;
  }
}

.ui-menu .ui-menu-item {
  font-size: 15px !important;
  padding-left: 5px !important;
  font-weight: 300 !important;
}

.ui-menu .ui-menu-item + .ui-menu-item {
  margin-top: 5px;
}

.ui-widget {
  font-family: inherit !important;
}

.ui-autocomplete {
  max-height: 200px;
  max-width: 333px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
  padding: 10px 20px;
  line-height: 1.7;
  border: 1px solid #cccccc;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .ui-autocomplete {
    max-width: 253px;
  }
}

.ui-menu-item:hover {
  cursor: pointer;
}
.ui-menu-item:hover .ui-menu-item-wrapper {
  font-weight: bold;
}

/****************************/
/** listovani mezi widgety **/
/****************************/
.listing-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 768px;
  margin: 0 auto;
  margin-top: 100px;
}

.listing-wrapper .listing-btn {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.listing-wrapper .nonactive {
  visibility: hidden;
}

.listing-wrapper .prev {
  text-align: left;
  padding-left: 35px;
}

.listing-wrapper .next {
  margin-left: auto;
  text-align: right;
  padding-right: 35px;
}

.listing-wrapper .title {
  display: block;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.listing-wrapper .prev:after,
.listing-wrapper .next:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.listing-wrapper .prev:after {
  left: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.listing-wrapper .next:hover:after {
  right: -5px;
}

.listing-wrapper .prev:hover:after {
  left: -5px;
}

@media screen and (max-width: 900px) {
  .listing-wrapper .listing-btn {
    font-size: 18px;
  }
  .listing-wrapper .prev:after,
  .listing-wrapper .next:after {
    width: 26px;
    height: 26px;
  }
  .listing-wrapper .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .listing-wrapper {
    margin-top: 85px;
  }
}
@media screen and (max-width: 600px) {
  .listing-wrapper {
    margin-top: 75px;
  }
  .listing-wrapper .listing-btn {
    font-size: 16px;
  }
  .listing-wrapper .prev {
    padding-left: 25px;
  }
  .listing-wrapper .next {
    padding-right: 25px;
  }
  .listing-wrapper .prev:after,
  .listing-wrapper .next:after {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .listing-wrapper .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 425px) {
  .listing-wrapper {
    margin-top: 65px;
  }
  .listing-wrapper .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .listing-wrapper .listing-btn {
    max-width: 33%;
  }
  .listing-wrapper .prev {
    padding-left: 30px;
  }
  .listing-wrapper .next {
    padding-right: 30px;
  }
  .listing-wrapper .prev:after,
  .listing-wrapper .next:after {
    top: 6px;
    width: 25px;
    height: 25px;
  }
  .listing-wrapper .title {
    display: none;
  }
}
.hp-contact-text {
  max-width: 400px;
  text-align: center;
  margin: 0 auto 60px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1050px) {
  .hp-contact-text {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 680px) {
  .hp-contact-text {
    margin-bottom: 40px;
  }
}

.set {
  position: relative;
}

.link {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
  text-align: center;
  text-decoration: underline;
}
.link:hover {
  color: #e91320;
}
@media screen and (max-width: 1280px) {
  .link {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .link {
    margin-top: 50px;
  }
}
