/* All Variables should be declared here which makes it easier to update if something changes globally */
/*---------------------------------------------------------
  ANIMATION MIXINS
---------------------------------------------------------*/
/*---------------------------------------------------------
  LAYOUT MIXINS
---------------------------------------------------------*/
/*---------------------------------------------------------
  MISC MIXINS
---------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: inherit;
}

html, body {
  min-height: 100%;
  margin: 0;
}

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
  box-sizing: border-box;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
label,
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 0;
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * 1. Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; /* 1 */
  height: auto;
  vertical-align: middle;
  max-width: 100%;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

textarea {
  resize: vertical;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

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

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

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

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

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/**
100    Extra Light or Ultra Light
200    Light or Thin
300    Book or Demi
400    Normal or Regular
500    Medium
600    Semibold, Demibold
700    Bold
800    Black, Extra Bold or Heavy
900    Extra Black, Fat, Poster or Ultra Black
**/
body {
  color: #1A1A1A;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 1260px) {
  body {
    font-size: 1.125rem;
    line-height: 1.555;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  font-weight: normal;
}
h1:first-child, .h1:first-child, h2:first-child, .h2:first-child, h3:first-child, .h3:first-child, h4:first-child, .h4:first-child, h5:first-child, .h5:first-child, h6:first-child, .h6:first-child {
  margin-top: 0;
}
h1:last-child, .h1:last-child, h2:last-child, .h2:last-child, h3:last-child, .h3:last-child, h4:last-child, .h4:last-child, h5:last-child, .h5:last-child, h6:last-child, .h6:last-child {
  margin-bottom: 0;
}

h1, .h1 {
  font-family: "Montserrat", sans-serif;
  position: relative;
  color: #2D2C6F;
  font-size: 1.75rem;
  line-height: 1.43;
  font-weight: 800;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
@media (min-width: 1260px) {
  h1, .h1 {
    font-size: 3.4375rem;
    line-height: 1.27;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
h1:after, .h1:after {
  content: "";
  height: 2px;
  width: 70px;
  background: #FFC10E;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 1260px) {
  h1:after, .h1:after {
    width: 94px;
  }
}

h2, .h2 {
  font-family: "Montserrat", sans-serif;
  position: relative;
  color: #2D2C6F;
  font-size: 1.5625rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 800;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
@media (min-width: 1600px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 1.375;
    padding-bottom: 20px;
    margin-bottom: 35px;
  }
}
h2:after, .h2:after {
  content: "";
  height: 2px;
  width: 70px;
  background: #FFC10E;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 1600px) {
  h2:after, .h2:after {
    width: 94px;
  }
}
h2.center, .h2.center {
  text-align: center;
}
h2.center:after, .h2.center:after {
  left: 50%;
  transform: translateX(-50%);
}

h3, .h3 {
  font-family: "Montserrat", sans-serif;
  position: relative;
  color: #2D2C6F;
  font-size: 1.125rem;
  line-height: 1.56;
  font-weight: 800;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
@media (min-width: 1260px) {
  h3, .h3 {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}

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

p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  padding: 0 0 0 15px;
  margin: 0;
  border-left: 5px solid #2D2C6F;
  font-style: italic;
}
@media (min-width: 768px) {
  blockquote {
    border-left-width: 10px;
    padding: 0 0 0 28px;
  }
}
@media (min-width: 1600px) {
  blockquote {
    padding: 0 0 0 50px;
  }
}
blockquote.bg {
  background-color: #F6F6FF;
  padding: 30px;
}
@media (min-width: 768px) {
  blockquote.bg {
    padding: 40px 40px 40px 26px;
  }
}
@media (min-width: 1600px) {
  blockquote.bg {
    padding: 50px;
  }
}

address {
  font-style: normal;
}

.wysiwyg a:not(.btn) {
  text-transform: uppercase;
  font-weight: 700;
  color: #EB1C23;
}
.wysiwyg a:not(.btn):hover {
  text-decoration: underline;
}
.wysiwyg ul {
  list-style-type: none;
  padding: 0 0 0 38px;
  margin: 0;
}
.wysiwyg ul li {
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .wysiwyg ul li {
    margin-bottom: 20px;
  }
}
.wysiwyg ul li:before {
  content: "+";
  color: #EB1C23;
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -38px;
}

.lnk {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-right: 26px;
  text-decoration: underline;
}
@media (min-width: 1260px) {
  .lnk {
    margin-top: 20px;
  }
}
.lnk:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 11px;
  padding-top: 4px;
}
.lnk--download:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.36' height='15.259' viewBox='0 0 12.36 15.259'%3E%3Cg transform='translate(0.706 0.5)'%3E%3Crect width='10.91' height='1.338' transform='translate(0 13.42)' fill='%23eb1c23'/%3E%3Cpath d='M0,6.121l.981-.913L4.8,9.324V0H6.143V9.321L9.967,5.209l.98.913L5.473,12.008Z' fill='%23eb1c23' stroke='rgba(0,0,0,0)' stroke-miterlimit='10' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.lnkBlue {
  color: #2D2C6F;
}

.pretitle {
  text-align: center;
  color: #2D2C6F;
}

input,
textarea,
select {
  border: 1px solid #2D2C6F;
  padding: 0 20px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  background: transparent;
  height: 52px;
  color: #2D2C6F;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #2D2C6F;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #2D2C6F;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #2D2C6F;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #2D2C6F;
}
input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: #EB1C23;
}
input.wpcf7-not-valid::-webkit-input-placeholder,
textarea.wpcf7-not-valid::-webkit-input-placeholder,
select.wpcf7-not-valid::-webkit-input-placeholder {
  color: #EB1C23;
}
input.wpcf7-not-valid:-moz-placeholder,
textarea.wpcf7-not-valid:-moz-placeholder,
select.wpcf7-not-valid:-moz-placeholder {
  color: #EB1C23;
}
input.wpcf7-not-valid::-moz-placeholder,
textarea.wpcf7-not-valid::-moz-placeholder,
select.wpcf7-not-valid::-moz-placeholder {
  color: #EB1C23;
}
input.wpcf7-not-valid:-ms-input-placeholder,
textarea.wpcf7-not-valid:-ms-input-placeholder,
select.wpcf7-not-valid:-ms-input-placeholder {
  color: #EB1C23;
}

select {
  background: url("data:image/svg+xml,%3Csvg fill='%232D2C6F' xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12'%3E%3Cpath d='M7,0l7,12H0Z' transform='translate(14 12) rotate(180)'/%3E%3C/svg%3E ") no-repeat right 20px center;
}

textarea {
  display: block;
  padding: 15px 20px;
  height: 160px;
}

input[type=checkbox],
input[type=radio] {
  width: 30px;
  height: 30px;
  border: initial;
  appearance: auto;
}

::-webkit-input-placeholder {
  color: #2D2C6F;
  font-style: italic;
}

:-moz-placeholder {
  color: #2D2C6F;
  font-style: italic;
}

::-moz-placeholder {
  color: #2D2C6F;
  font-style: italic;
}

:-ms-input-placeholder {
  color: #2D2C6F;
  font-style: italic;
}

@media (min-width: 768px) {
  .fieldsRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .fieldsRow .fieldBlock {
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) {
  .fieldsRow .fieldBlock--70 {
    width: calc(70% - 20px);
  }
}
@media (min-width: 768px) {
  .fieldsRow .fieldBlock--30 {
    width: calc(30% - 20px);
  }
}

.fieldBlock {
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .fieldBlock {
    margin-bottom: 20px;
  }
}
.fieldBlock__label {
  display: block;
  color: #2D2C6F;
  margin-bottom: 10px;
  font-weight: 700;
  cursor: pointer;
}
.fieldBlock__label .required {
  color: #EB1C23;
}
.fieldBlock label.error {
  display: block;
  color: #EB1C23;
  font-size: 16px;
}
.fieldBlock__options {
  display: flex;
  flex-wrap: wrap;
}
.fieldBlock__options > * {
  margin-right: 50px;
}
.fieldBlock__options > *:last-child {
  margin-right: 0;
}
.fieldBlock__option {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 50px;
  line-height: 30px;
  margin-bottom: 10px;
}
.fieldBlock__optionPseudo {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #2D2C6F;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fieldBlock input[type=radio],
.fieldBlock input[type=checkbox] {
  display: none;
}
.fieldBlock input[type=radio]:checked + span:after,
.fieldBlock input[type=checkbox]:checked + span:after {
  content: "";
  width: 18px;
  height: 18px;
  background: #2D2C6F;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fieldBlock input[type=radio] + span {
  border-radius: 100%;
}
.fieldBlock input[type=radio]:checked + span:after {
  border-radius: 100%;
}

.fieldsContainer .fieldBlock:last-child {
  margin-bottom: 0;
}

.buttonsRow {
  position: relative;
}
@media (min-width: 768px) {
  .buttonsRow {
    margin-top: 40px;
  }
}
.buttonsRow .btn {
  width: 100%;
}
@media (min-width: 768px) {
  .buttonsRow .btn {
    width: auto;
  }
}
.buttonsRow input[type=submit] {
  display: none;
}
.buttonsRow .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: #EB1C23;
  border: 2px solid #EB1C23;
  color: #ffffff;
  outline: none;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  margin-right: 30px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media (min-width: 1260px) {
  .btn {
    padding: 15px 40px;
    min-height: 64px;
  }
}
.btn__icon {
  margin-left: 10px;
}
.btn:last-child {
  margin-right: 0;
}
@media (hover: hover) {
  .btn:hover {
    background-color: transparent;
    color: #EB1C23;
  }
}
.btn--borderRed {
  background-color: #ffffff;
  border-color: #EB1C23;
  color: #EB1C23;
}
@media (hover: hover) {
  .btn--borderRed:hover {
    background: #EB1C23;
    color: #ffffff;
  }
}
@media (hover: hover) {
  .btn--borderWhite:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.btn--white {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
@media (hover: hover) {
  .btn--white:hover {
    background: #ffffff;
    color: #EB1C23;
  }
}

table {
  width: 100%;
  max-width: 100%;
  margin: 32px 0;
}
table:first-child {
  margin-top: 0;
}
table:last-child {
  margin-bottom: 0;
}
table th,
table td {
  vertical-align: top;
}
table thead th {
  vertical-align: bottom;
}

.accordionTable {
  border-collapse: collapse;
  border: 1px solid #E3E3E3;
}
.accordionTable thead {
  display: none;
}
@media (min-width: 768px) {
  .accordionTable thead {
    display: table-header-group;
  }
}
.accordionTable th, .accordionTable td {
  padding: 10px;
}
.accordionTable th {
  background: #E3E3E3;
  border: 1px solid #E3E3E3;
  text-align: left;
}
.accordionTable th:not(:last-child) {
  border-right-color: #FFFFFF;
}
.accordionTable td {
  display: block;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .accordionTable td {
    display: table-cell;
    border: 1px solid #E3E3E3;
    padding: 10px;
  }
}
.accordionTable td:before {
  content: attr(data-column-title) ": ";
  font-weight: bold;
}
@media (min-width: 768px) {
  .accordionTable td:before {
    display: none;
  }
}
.accordionTable td:first-child {
  white-space: nowrap;
}
.accordionTable tbody tr {
  display: block;
  border: 1px solid #E3E3E3;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .accordionTable tbody tr {
    display: table-row;
    padding: 0;
  }
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
}

.accordion__item {
  padding-top: 20px;
}
.accordion__item:first-child {
  padding-top: 0;
}
.accordion__header {
  position: relative;
  background: #F6F6FF;
  padding: 10px 60px 10px 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  cursor: pointer;
  outline: none;
}
@media (min-width: 768px) {
  .accordion__header {
    padding: 15px 80px 15px 40px;
    min-height: 70px;
  }
}
.accordion__header .ui-accordion-header-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #2D2C6F;
}
@media (min-width: 768px) {
  .accordion__header .ui-accordion-header-icon {
    right: 40px;
    width: 22px;
    height: 22px;
  }
}
.accordion__header .ui-accordion-header-icon:before, .accordion__header .ui-accordion-header-icon:after {
  content: "";
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, background-color 0.3s;
}
.accordion__header .ui-accordion-header-icon:before {
  height: 16px;
  width: 2px;
}
@media (min-width: 768px) {
  .accordion__header .ui-accordion-header-icon:before {
    height: 22px;
  }
}
.accordion__header .ui-accordion-header-icon:after {
  width: 16px;
  height: 2px;
}
@media (min-width: 768px) {
  .accordion__header .ui-accordion-header-icon:after {
    width: 22px;
  }
}
.accordion__header:hover {
  background-color: #E8E8FF;
}
.accordion__header:hover .ui-accordion-header-icon {
  color: currentColor;
}
.accordion__header.ui-state-active {
  background-color: #E8E8FF;
}
.accordion__header.ui-state-active .ui-accordion-header-icon {
  color: currentColor;
}
.accordion__header.ui-state-active .ui-accordion-header-icon:before {
  opacity: 0;
}
.accordion__content {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 0 40px;
  }
}
.accordion__inner {
  margin: 30px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid #FFC20E;
}
@media (min-width: 768px) {
  .accordion__inner {
    margin: 40px 0;
    padding: 0 0 0 38px;
  }
}

.fancybox-slide--html {
  padding: 0;
}
.fancybox-slide--html .fancybox-close-small {
  padding: 20px;
  top: 0;
  right: 0;
  opacity: 1;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .fancybox-slide--html .fancybox-close-small {
    padding: 40px;
  }
}
.fancybox-slide--html .fancybox-close-small svg {
  width: 28px;
  height: 28px;
}
@media (min-width: 768px) {
  .fancybox-slide--html .fancybox-close-small svg {
    width: 34px;
    height: 34px;
  }
}

.fancybox-content {
  width: 100%;
  max-width: 600px;
  padding: 60px 20px 40px;
  background: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .fancybox-content {
    padding: 114px 84px 60px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  color: #2D2C6F;
  padding: 0 50px 0 20px;
  font-style: italic;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 1px solid #2D2C6F;
  background-color: transparent;
  height: 52px;
  margin: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  width: 54px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #2D2C6F transparent transparent transparent;
  border-width: 12px 7px 0 7px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #2D2C6F;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #2D2C6F transparent;
  border-width: 0 7px 12px 7px;
}

.select2-dropdown {
  border-color: #2D2C6F;
  border-top: none;
  border-radius: 0;
  color: #2D2C6F;
}

.select2-results__option {
  padding: 10px 20px;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
  background: #ffffff;
  color: #2D2C6F;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #F6F6FF;
  color: #2D2C6F;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  min-height: 52px;
  border-radius: 0;
  border-color: #2D2C6F;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 50px 0 20px;
}

.select2-container--default .select2-search--inline .select2-search__field {
  height: 50px;
  padding: 0 50px 0 20px;
}

.select2-container--default .select2-selection--multiple {
  min-height: 52px;
  border-radius: 0;
  border-color: #2D2C6F;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin: 10px 10px 0 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-search {
  margin: 0;
  float: none;
}

.select2-container .select2-selection--multiple:after {
  content: "";
  border-color: #2D2C6F transparent transparent transparent;
  border-width: 12px 7px 0 7px;
  margin: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  height: 0;
  right: 15px;
  border-style: solid;
}

.select2-container--open .select2-selection--multiple:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 form span.wpcf7-not-valid-tip {
  position: relative;
  color: #EB1C23;
  margin-top: 10px;
  padding-left: 34px;
  margin-bottom: 20px;
}
.wpcf7 form span.wpcf7-not-valid-tip:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M24.563,12.562a12,12,0,1,1-12-12A12,12,0,0,1,24.563,12.562Zm-12,2.419a2.226,2.226,0,1,0,2.226,2.226A2.226,2.226,0,0,0,12.562,14.982Zm-2.113-8,.359,6.581a.581.581,0,0,0,.58.549h2.349a.581.581,0,0,0,.58-.549l.359-6.581a.581.581,0,0,0-.58-.612H11.029A.581.581,0,0,0,10.449,6.981Z' transform='translate(-0.563 -0.563)' fill='%23FFC20E'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  height: 24px;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
  margin: 20px 0;
  padding: 10px 20px;
}
.wpcf7 form div.wpcf7-validation-errors,
.wpcf7 form div.wpcf7-mail-sent-ok {
  border: none;
}
.wpcf7 form div.wpcf7-validation-errors {
  color: red;
}
.wpcf7 form .btnWrap {
  position: relative;
}
.wpcf7 form .btnWrap .ajax-loader {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  margin: 0;
}

.wpcf7-not-valid + .select2-container--default .select2-selection--single {
  border-color: yellow;
}
.wpcf7-not-valid + .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #FFC20E;
}
.wpcf7-not-valid + .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #FFC20E;
}
.wpcf7-not-valid + .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #FFC20E transparent transparent transparent;
}

.woocommerce form .form-row label {
  color: #2D2C6F;
  font-weight: 700;
}

.woocommerce form .form-row {
  padding: 0;
  margin: 0 0 10px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  margin-bottom: 30px;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.my-account.bewpi-generate-global-invoice input[type=submit],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: #EB1C23;
  border: 2px solid #EB1C23;
  color: #ffffff;
  outline: none;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  margin: 30px 30px 0 0;
  border-radius: 0;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media (min-width: 1260px) {
  .woocommerce #respond input#submit.alt,
  .woocommerce a.button.alt,
  .woocommerce button.button.alt,
  .woocommerce input.button.alt,
  .my-account.bewpi-generate-global-invoice input[type=submit],
  .woocommerce #respond input#submit,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    padding: 15px 40px;
    min-height: 64px;
  }
}
@media (min-width: 1260px) {
  .woocommerce #respond input#submit.alt:hover,
  .woocommerce a.button.alt:hover,
  .woocommerce button.button.alt:hover,
  .woocommerce input.button.alt:hover,
  .my-account.bewpi-generate-global-invoice input[type=submit]:hover,
  .woocommerce #respond input#submit:hover,
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover {
    background-color: transparent;
    color: #EB1C23;
  }
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background: #EB1C23;
  border: 2px solid #EB1C23;
  opacity: 0.4;
}

.my-account.bewpi-generate-global-invoice input[type=submit] {
  margin: 30px 30px 0 0 !important;
}

.woocommerce-PaymentMethod--actions a.button,
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  margin: 0;
}

@media (min-width: 1260px) {
  .woocommerce-account .woocommerce {
    display: flex;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 1260px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    width: 300px;
    margin-right: 10%;
    margin-bottom: 0;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #F6F6FF;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  color: #2D2C6F;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  min-height: 50px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:hover, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
  background: #2D2C6F;
  color: #ffffff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}
@media (min-width: 1260px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    flex: 1;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content a:not(.btn):not(.button) {
  font-weight: 700;
  color: #EB1C23;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content a:not(.btn):not(.button):hover {
  text-decoration: underline;
}

body {
  min-width: 360px;
  position: relative;
  padding: 0;
}

#main {
  padding-top: 100px;
  overflow: hidden;
}
@media (min-width: 1260px) {
  #main {
    padding-top: 147px;
    transition: padding-top 0.3s;
  }
}
@media (min-width: 1260px) {
  #main.sticky {
    padding-top: 120px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1640px;
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1260px) {
  .container {
    padding: 0 50px;
  }
}
@media (min-width: 1600px) {
  .container {
    padding: 0 100px;
  }
}
.container--wide {
  max-width: 1840px;
}

.siteHeader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  z-index: 2000;
  transition: border-bottom-color 0.3s;
}
.siteHeader__inner {
  position: relative;
  padding: 0;
  height: 100px;
}
@media (min-width: 1260px) {
  .siteHeader__inner {
    height: 147px;
    transition: height 0.3s;
  }
}
.siteHeader__logo {
  display: block;
  width: 115px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s;
}
@media (min-width: 1260px) {
  .siteHeader__logo {
    width: 152px;
  }
}
@media (min-width: 1260px) {
  .siteHeader.sticky {
    border-bottom: 1px solid #2D2C6F;
  }
}
@media (min-width: 1260px) {
  .siteHeader.sticky .siteHeader__inner {
    height: 120px;
  }
}
@media (min-width: 1260px) {
  .siteHeader.sticky .siteHeader__logo {
    width: 120px;
  }
}

.btnMenu {
  display: block;
  height: 84px;
  width: 84px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  outline: none;
  background: transparent;
}
@media (min-width: 1260px) {
  .btnMenu {
    display: none;
  }
}
.btnMenu span {
  display: block;
  width: 44px;
  height: 5px;
  background: #2D2C6F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.btnMenu span:nth-child(1) {
  margin-top: -10px;
}
.btnMenu span:nth-child(3) {
  margin-top: 10px;
}
.btnMenu.close span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btnMenu.close span:nth-child(2) {
  background: transparent;
}
.btnMenu.close span:nth-child(3) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 1260px) {
  .headerSocials {
    margin-left: 40px;
  }
}
@media (min-width: 1600px) {
  .headerSocials {
    display: none;
  }
}
.headerSocials__title {
  display: none;
}
@media (min-width: 1600px) {
  .headerSocials__title {
    display: block;
    color: #1A1A1A;
    white-space: nowrap;
    margin-bottom: 3px;
  }
}
.headerSocials__line {
  display: none;
}
@media (min-width: 1600px) {
  .headerSocials__line {
    display: block;
    width: 97px;
    background: #FFC20E;
    height: 2px;
    margin: 0 40px;
  }
}
.headerSocials__list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 30px 0 0;
  justify-content: flex-start;
  align-items: center;
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .headerSocials__list {
    margin: 0;
  }
}
.headerSocials__list li {
  margin: 0 30px 0 0;
}
@media (min-width: 1600px) {
  .headerSocials__list li {
    margin: 0 20px 0 0;
  }
}
.headerSocials__list li:last-child {
  margin: 0;
}
.headerSocials__list li a {
  transition: color 0.3s;
}
@media (min-width: 1600px) {
  .headerSocials__list li a {
    display: block;
    transform: rotate(-90deg);
  }
}
@media (min-width: 1260px) {
  .headerSocials__list li a:hover {
    color: #EB1C23;
  }
}
@media (min-width: 768px) {
  .headerSocials__list li svg {
    height: 19px;
  }
}
@media (min-width: 1260px) {
  .headerSocials__list li svg {
    display: block;
  }
}

.heroSocials {
  display: none;
}
@media (min-width: 1600px) {
  .heroSocials {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translate(50%, -50%) rotate(90deg);
    margin: 0;
  }
}
.heroSocials__title {
  display: none;
}
@media (min-width: 1600px) {
  .heroSocials__title {
    display: block;
    color: #1A1A1A;
    white-space: nowrap;
    margin-bottom: 3px;
  }
}
.heroSocials__line {
  display: none;
}
@media (min-width: 1600px) {
  .heroSocials__line {
    display: block;
    width: 97px;
    background: #FFC20E;
    height: 2px;
    margin: 0 40px;
  }
}
.heroSocials__list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 30px 0 0;
  justify-content: flex-start;
  align-items: center;
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .heroSocials__list {
    margin: 0;
  }
}
.heroSocials__list li {
  margin: 0 30px 0 0;
}
@media (min-width: 1600px) {
  .heroSocials__list li {
    margin: 0 20px 0 0;
  }
}
.heroSocials__list li:last-child {
  margin: 0;
}
.heroSocials__list li a {
  transition: color 0.3s;
}
@media (min-width: 1600px) {
  .heroSocials__list li a {
    display: block;
    transform: rotate(-90deg);
  }
}
@media (min-width: 1260px) {
  .heroSocials__list li a:hover {
    color: #EB1C23;
  }
}
@media (min-width: 768px) {
  .heroSocials__list li svg {
    height: 19px;
  }
}
@media (min-width: 1260px) {
  .heroSocials__list li svg {
    display: block;
  }
}

.siteFooter__row1 a {
  color: #E8E8FF;
  transition: color 0.3s;
}
@media (min-width: 1260px) {
  .siteFooter__row1 a:hover {
    color: #ffffff;
  }
}
@media (min-width: 1260px) {
  .siteFooter .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
  }
}
.siteFooter__cols {
  position: relative;
  color: #ffffff;
  background: #2D2C6F;
  padding: 70px 20px;
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .siteFooter__cols {
    padding: 75px 80px 55px;
    margin: 0 -40px;
  }
}
@media (min-width: 1260px) {
  .siteFooter__cols {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 -50px;
  }
}
@media (min-width: 1600px) {
  .siteFooter__cols {
    padding: 70px 100px 75px;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .siteFooter__cols:before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background: #EB1C23;
  }
}
@media (min-width: 1260px) {
  .siteFooter__col1 {
    width: calc(40% - 25px);
  }
}
@media (min-width: 1600px) {
  .siteFooter__col1 {
    width: calc(50% - 50px);
  }
}
@media (min-width: 1260px) {
  .siteFooter__col2 {
    width: calc(60% - 25px);
  }
}
@media (min-width: 1600px) {
  .siteFooter__col2 {
    width: calc(50% - 50px);
  }
}
@media (min-width: 768px) {
  .siteFooter__subcols {
    display: flex;
    justify-content: space-between;
  }
}
.siteFooter__subcol1 {
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .siteFooter__subcol1 {
    text-align: left;
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
}
@media (min-width: 1260px) {
  .siteFooter__subcol1 {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .siteFooter__subcol1 {
    max-width: 260px;
  }
}
.siteFooter__subcol2 {
  text-align: center;
}
@media (min-width: 768px) {
  .siteFooter__subcol2 {
    text-align: left;
    width: calc(50% - 20px);
  }
}
@media (min-width: 1260px) {
  .siteFooter__subcol2 {
    width: calc(50% - 25px);
    max-width: 250px;
  }
}
.siteFooter__logoContainer {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .siteFooter__logoContainer {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .siteFooter__logoContainer {
    margin-top: -28px;
    margin-bottom: 40px;
  }
}
.siteFooter__address {
  margin-bottom: 10px;
}
.siteFooter__ctaContainer {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .siteFooter__ctaContainer {
    text-align: left;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 1600px) {
  .siteFooter__ctaContainer {
    font-size: 1.5625rem;
    line-height: 35px;
    margin-top: 35px;
  }
}
.siteFooter__ctaContainer a {
  color: #FFC20E;
}
@media (min-width: 1260px) {
  .siteFooter__ctaContainer a:hover {
    color: #FFC20E;
    text-decoration: underline;
  }
}
.siteFooter__row2 {
  padding: 12px 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 26px;
}
@media (min-width: 1600px) {
  .siteFooter__row2 {
    font-size: 1rem;
  }
}
.siteFooter__row2 a {
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .siteFooter__row2 a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 768px) {
  .siteFooter__row2 .container {
    display: flex;
    justify-content: space-between;
  }
}
.siteFooter__row2Links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .siteFooter__row2Links {
    width: calc(50% - 20px);
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.siteFooter__row2Links a {
  display: block;
  margin: 0 15px;
}
@media (min-width: 768px) {
  .siteFooter__row2Links a {
    margin: 0 45px 0 0;
  }
}
@media (min-width: 768px) {
  .siteFooter__row2Text {
    width: calc(50% - 20px);
    text-align: right;
  }
}
@media (min-width: 1260px) {
  .siteFooter__row2Text {
    position: relative;
  }
}
@media (min-width: 1260px) {
  .siteFooter__copyright {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
  }
}

.contactForm {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .contactForm {
    margin-bottom: 60px;
  }
}
@media (min-width: 1260px) {
  .contactForm {
    margin-bottom: 0;
  }
}
.contactForm__text {
  text-align: center;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .contactForm__text {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .contactForm__text {
    margin-bottom: 40px;
  }
}
.contactForm__text h2 {
  color: currentColor;
  margin-bottom: 25px;
}
@media (min-width: 1600px) {
  .contactForm__text h2 {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .contactForm__text h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .contactForm .fieldsRow .fieldBlock {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1260px) {
  .contactForm .fieldsRow .fieldBlock {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .contactForm .fieldsRow .fieldBlock {
    width: calc(50% - 10px);
  }
}
.contactForm input,
.contactForm textarea,
.contactForm select {
  border-color: currentColor;
  color: #E8E8FF;
}
.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder,
.contactForm select::-webkit-input-placeholder {
  color: #BFBFD3;
}
.contactForm input:-moz-placeholder,
.contactForm textarea:-moz-placeholder,
.contactForm select:-moz-placeholder {
  color: #BFBFD3;
}
.contactForm input::-moz-placeholder,
.contactForm textarea::-moz-placeholder,
.contactForm select::-moz-placeholder {
  color: #BFBFD3;
}
.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder,
.contactForm select:-ms-input-placeholder {
  color: #BFBFD3;
}
.contactForm input.wpcf7-not-valid,
.contactForm textarea.wpcf7-not-valid,
.contactForm select.wpcf7-not-valid {
  border-color: #FFC20E;
}
.contactForm input.wpcf7-not-valid::-webkit-input-placeholder,
.contactForm textarea.wpcf7-not-valid::-webkit-input-placeholder,
.contactForm select.wpcf7-not-valid::-webkit-input-placeholder {
  color: #FFC20E;
}
.contactForm input.wpcf7-not-valid:-moz-placeholder,
.contactForm textarea.wpcf7-not-valid:-moz-placeholder,
.contactForm select.wpcf7-not-valid:-moz-placeholder {
  color: #FFC20E;
}
.contactForm input.wpcf7-not-valid::-moz-placeholder,
.contactForm textarea.wpcf7-not-valid::-moz-placeholder,
.contactForm select.wpcf7-not-valid::-moz-placeholder {
  color: #FFC20E;
}
.contactForm input.wpcf7-not-valid:-ms-input-placeholder,
.contactForm textarea.wpcf7-not-valid:-ms-input-placeholder,
.contactForm select.wpcf7-not-valid:-ms-input-placeholder {
  color: #FFC20E;
}
.contactForm select {
  background: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12'%3E%3Cpath d='M7,0l7,12H0Z' transform='translate(14 12) rotate(180)'/%3E%3C/svg%3E ") no-repeat right 20px center;
}
.contactForm .wpcf7 span.wpcf7-not-valid-tip {
  color: #FFC20E;
}
.contactForm .wpcf7 span.wpcf7-not-valid-tip a {
  color: #ffffff;
}
.contactForm .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #E8E8FF;
}
.contactForm .select2-container--default .select2-selection--single {
  border-color: #E8E8FF;
}
.contactForm .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #E8E8FF transparent transparent transparent;
}
.contactForm .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #BFBFD3;
}
.contactForm .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #E8E8FF transparent;
}
.contactForm .select2-dropdown {
  border: none;
}
.contactForm .select2-container--default .select2-results__option--highlighted[aria-selected],
.contactForm .select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #E8E8FF;
}
.contactForm .btn {
  margin-right: 0;
}

@media (min-width: 1600px) {
  .footerSocials {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateX(50%) rotate(90deg);
  }
}
.footerSocials__title {
  display: none;
}
@media (min-width: 1600px) {
  .footerSocials__title {
    display: block;
    color: #1A1A1A;
    white-space: nowrap;
    margin-bottom: 3px;
  }
}
.footerSocials__line {
  display: none;
}
@media (min-width: 1600px) {
  .footerSocials__line {
    display: block;
    width: 97px;
    background: #FFC20E;
    height: 2px;
    margin: 0 40px;
  }
}
.footerSocials__list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 13px 0 0;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footerSocials__list {
    justify-content: flex-start;
  }
}
@media (min-width: 1600px) {
  .footerSocials__list {
    margin: 0;
  }
}
.footerSocials__list li {
  margin: 0 15px;
}
@media (min-width: 768px) {
  .footerSocials__list li {
    margin: 0 30px 0 0;
  }
}
@media (min-width: 1600px) {
  .footerSocials__list li {
    margin: 0 20px 0 0;
  }
}
.footerSocials__list li a {
  transition: color 0.3s;
}
@media (min-width: 1600px) {
  .footerSocials__list li a {
    display: block;
    color: #2D2C6F;
    transform: rotate(-90deg);
  }
}
@media (min-width: 1260px) {
  .footerSocials__list li a:hover {
    color: #EB1C23;
  }
}
@media (min-width: 768px) {
  .footerSocials__list li svg {
    height: 19px;
  }
}

@media (min-width: 1600px) {
  .footerNav {
    line-height: 1.39;
  }
}
.footerNav__title {
  margin-bottom: 10px;
}
.footerNav__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footerNav__list li {
  margin: 0 auto 11px;
  max-width: 220px;
}
@media (min-width: 768px) {
  .footerNav__list li {
    max-width: none;
  }
}
@media (min-width: 1600px) {
  .footerNav__list li {
    margin-bottom: 15px;
  }
}
.footerNav__list li:last-child {
  margin-bottom: 0;
}

.nav {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 58px 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, top 0.3s;
  z-index: 1500;
  box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.75);
  background: #ffffff;
  height: calc(100vh - 100px);
  overflow: scroll;
}
@media (min-width: 768px) {
  .nav {
    padding: 58px 40px;
  }
}
@media (min-width: 1260px) {
  .nav {
    padding: 0;
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: 147px;
    right: 0;
    left: auto;
    box-shadow: none;
    z-index: 3000;
    background: transparent;
    height: auto;
    overflow: visible;
  }
}
@media (min-width: 1260px) {
  .nav__inner {
    position: relative;
  }
}
@media (min-width: 1260px) {
  .nav__group {
    display: flex;
    align-items: center;
    position: absolute;
    top: -123px;
    right: 0;
    transition: top 0.3s;
  }
}
@media (min-width: 1260px) {
  .nav__group .btn {
    margin-left: 40px;
    margin-right: 0;
  }
}
@media (min-width: 1600px) {
  .nav__group .btn {
    margin-left: 60px;
  }
}
.nav.visible {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1260px) {
  .nav.sticky {
    top: 120px;
  }
}
@media (min-width: 1260px) {
  .nav.sticky .nav__group {
    top: -110px;
  }
}

.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1260px) {
  .menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}
.menu > li {
  margin-bottom: 26px;
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .menu > li {
    margin: 0 0 0 35px;
  }
}
@media (min-width: 1600px) {
  .menu > li {
    margin: 0 0 0 54px;
  }
}
.menu > li > a {
  display: flex;
  align-items: center;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s;
}
@media (min-width: 1260px) {
  .menu > li > a {
    min-height: 72px;
  }
}
.menu > li > a br {
  display: none;
}
@media (min-width: 1260px) {
  .menu > li > a br {
    display: block;
  }
}
.menu > li > a svg {
  margin-right: 8px;
}
.menu > li.open {
  color: #EB1C23;
}
@media (min-width: 1260px) {
  .menu > li.open {
    color: #2D2C6F;
  }
}
.menu > li > ul {
  display: none;
  list-style-type: none;
  padding: 0 0 0 30px;
  margin: 0 0 -10px;
}
@media (min-width: 1260px) {
  .menu > li > ul {
    display: block !important;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    min-width: 240px;
    border: 1px solid #2D2C6F;
  }
}
@media (min-width: 1600px) {
  .menu > li > ul {
    min-width: 280px;
  }
}
.menu > li > ul > li {
  margin-top: 16px;
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .menu > li > ul > li {
    margin: 0;
  }
}
.menu > li > ul > li > a {
  display: inline-flex;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 1260px) {
  .menu > li > ul > li > a {
    display: flex;
    padding: 15px 30px;
    transition: background-color 0.3s;
  }
}
.menu > li > ul > li > a svg {
  margin-right: 8px;
}
@media (min-width: 1260px) {
  .menu > li > ul > li:hover > a {
    background: #F6F6FF;
  }
}
.menu > li.menu-item-has-children {
  position: relative;
}
.menu > li.menu-item-has-children > a {
  padding-right: 18px;
}
.menu > li.menu-item-has-children > a:after {
  content: "";
  border: solid transparent;
  border-width: 5px 4px 0 4px;
  border-top-color: #2D2C6F;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transform-origin: 25% 50%;
  transition: color 0.3s, transform 0.3s;
}
.menu > li.menu-item-has-children.open > a {
  color: #EB1C23;
}
.menu > li.menu-item-has-children.open > a:after {
  border-top-color: #EB1C23;
  transform: rotate(-90deg);
}
@media (min-width: 1260px) {
  .menu > li.menu-item-has-children.open > a:after {
    transform: none;
  }
}
.menu > li.menu-item-has-children:hover > ul {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1260px) {
  .menu > li.current-menu-item, .menu > li.current-menu-ancestor, .menu > li:hover {
    color: #EB1C23;
  }
}
@media (min-width: 1260px) {
  .menu > li.current-menu-item > a:after, .menu > li.current-menu-ancestor > a:after, .menu > li:hover > a:after {
    border-top-color: #EB1C23;
  }
}
@media (min-width: 1260px) {
  .menu > li:last-child > ul {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1260px) {
  .primaryMenu {
    position: absolute;
    right: 0;
    top: -72px;
    width: auto;
    margin-left: 170px;
  }
}

.secondaryMenu {
  border-top: 2px solid #FFC20E;
  padding-top: 27px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .secondaryMenu {
    padding-top: 25px;
    padding-bottom: 4px;
    margin-top: 32px;
  }
}
@media (min-width: 1260px) {
  .secondaryMenu {
    border: none;
    padding: 0;
    margin: 0 0 0 40px;
  }
}
@media (min-width: 1600px) {
  .secondaryMenu {
    margin: 0 0 0 60px;
  }
}
.secondaryMenu > li {
  margin-bottom: 23px;
}
@media (min-width: 1260px) {
  .secondaryMenu > li {
    margin: 0 0 0 40px;
  }
}
@media (min-width: 1600px) {
  .secondaryMenu > li {
    margin: 0 0 0 60px;
  }
}
.secondaryMenu > li > a {
  text-transform: none;
  font-size: 1rem;
  line-height: 19px;
  white-space: nowrap;
  transition: opacity 0.3s;
  color: #2D2C6F;
}
@media (min-width: 1260px) {
  .secondaryMenu > li > a {
    min-height: 40px;
  }
}
@media (min-width: 1260px) {
  .secondaryMenu > li > a:hover {
    opacity: 0.7;
    color: #2D2C6F;
  }
}
.secondaryMenu > li > ul > li > a {
  text-transform: none;
  font-size: 1rem;
  line-height: 19px;
}
.secondaryMenu > li:first-child {
  margin-left: 0;
}

.publicNav .btn {
  min-height: 36px;
  padding: 0 25px;
  white-space: nowrap;
}
@media (min-width: 1260px) {
  .publicNav .btn {
    padding: 0 20px;
    order: 999;
  }
}

.comments ul {
  list-style-type: none;
}

.section-comment-form .comment-form .form-group label {
  display: block;
  padding: 0;
  margin: 0;
}
.section-comment-form .comment-form .btn {
  margin: 0;
  border: none;
  padding: 0;
}
.section-comments-list {
  padding: 0;
}
.section-comments-list .comments-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.section-comments-list .comments-list .comment {
  margin: 0;
}
.section-comments-list .comments-list .comment:last-of-type {
  margin-bottom: 0;
}
.section-comments-list .comments-list .comment .comment-wrap {
  margin: 0;
}
.section-comments-list .comments-list .comment .comment-wrap .comment-header {
  margin: 0;
}
.section-comments-list .comments-list .comment .comment-wrap .comment-header .comment-author {
  margin: 0;
}
.section {
  margin: 70px 0;
}
@media (min-width: 768px) {
  .section {
    margin: 80px 0;
  }
}

.heroSection {
  position: relative;
  margin: 0;
  padding: 0;
}
.heroSection__inner {
  position: relative;
  background: #000000;
  height: 215px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -20px;
  border-bottom: 15px solid #EB1C23;
}
@media (min-width: 768px) {
  .heroSection__inner {
    height: 450px;
    border-bottom: none;
    margin: 0 -40px;
    border-bottom-width: 30px;
  }
}
@media (min-width: 1260px) {
  .heroSection__inner {
    margin: 0 -50px;
  }
}
@media (min-width: 1600px) {
  .heroSection__inner {
    border: none;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .heroSection__inner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100vw;
    background: #EB1C23;
  }
}
.heroSection__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSection__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  z-index: 10;
}
.heroSection__textContainer {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .heroSection__textContainer {
    padding: 0 40px;
  }
}
@media (min-width: 1260px) {
  .heroSection__textContainer {
    padding: 0 50px;
  }
}
@media (min-width: 1600px) {
  .heroSection__textContainer {
    padding: 0 100px;
  }
}
.heroSection__breadcrumbs {
  display: flex;
  font-family: "Montserrat", sans-serif;
}
.heroSection__breadcrumbs span {
  position: relative;
  width: 7px;
  margin: 0 12px;
}
.heroSection__breadcrumbs span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid transparent;
  border-width: 3.5px 0 3.5px 6px;
  border-left-color: #ffffff;
}
.heroSection__title {
  color: #ffffff;
}

@media (min-width: 1260px) {
  .twoColsTextSection__inner {
    display: flex;
    justify-content: space-between;
  }
}
.twoColsTextSection__left {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .twoColsTextSection__left {
    margin-bottom: 40px;
  }
}
@media (min-width: 1260px) {
  .twoColsTextSection__left {
    width: calc(50% - 25px);
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .twoColsTextSection__left {
    width: calc(50% - 50px);
  }
}
@media (min-width: 1260px) {
  .twoColsTextSection__right {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .twoColsTextSection__right {
    width: calc(50% - 50px);
  }
}

@media (min-width: 1260px) {
  .imageTextBlock {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.imageTextBlock--reverse {
  flex-direction: row-reverse;
}
.imageTextBlock__imageWrapper {
  position: relative;
  z-index: 20;
}
@media (min-width: 1260px) {
  .imageTextBlock__imageWrapper {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .imageTextBlock__imageWrapper {
    width: calc(50% - 50px);
  }
}
.imageTextBlock__imageContainer {
  position: relative;
  padding-bottom: 67%;
  margin-bottom: 30px;
  z-index: 20;
}
@media (min-width: 768px) {
  .imageTextBlock__imageContainer {
    padding-bottom: 61%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock__imageContainer {
    padding-bottom: 77.5%;
    margin-bottom: 0;
  }
}
.imageTextBlock__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imageTextBlock__textWrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 1260px) {
  .imageTextBlock__textWrapper {
    padding: 0 50px 0 0;
    width: calc(50% + 25px);
    max-width: 770px;
    margin-left: auto;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock__textWrapper {
    width: calc(50% + 50px);
    padding: 0 100px 0 0;
  }
}
.imageTextBlock__textWrapper--fullWidth {
  width: auto;
  flex: 1;
  max-width: none;
}
@media (min-width: 1260px) {
  .imageTextBlock__textWrapper--right {
    padding: 0 0 0 50px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock__textWrapper--right {
    padding: 0 0 0 100px;
  }
}
.imageTextBlock__textContainer {
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .imageTextBlock__textContainer {
    padding: 0;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock__textContainer {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .imageTextBlock__textContainer blockquote {
    margin: 0 -40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock__textContainer blockquote {
    margin: 0;
  }
}
.imageTextBlock--imageBg {
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .imageTextBlock--imageBg {
    margin-bottom: 120px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--imageBg {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--imageBg {
    margin-bottom: 160px;
  }
}
.imageTextBlock--imageBg .imageTextBlock__imageWrapper {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper {
    margin-bottom: 70px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper {
    margin-bottom: 0;
  }
}
.imageTextBlock--imageBg .imageTextBlock__imageWrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: -20px;
  background: #FFC20E;
  width: 100vw;
  min-width: 360px;
}
@media (min-width: 768px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper:after {
    top: 40px;
    bottom: -40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper:after {
    top: 50px;
    bottom: -50px;
  }
}
.imageTextBlock--imageBg .imageTextBlock__imageWrapper--left:after {
  right: 20px;
}
@media (min-width: 768px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--left:after {
    right: 40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--left:after {
    right: 50px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--left:after {
    right: 140px;
  }
}
.imageTextBlock--imageBg .imageTextBlock__imageWrapper--right:after {
  left: 20px;
}
@media (min-width: 768px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--right:after {
    left: 40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--right:after {
    left: 50px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--imageBg .imageTextBlock__imageWrapper--right:after {
    left: 140px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--textBg {
    margin: 110px 0;
  }
}
.imageTextBlock--textBg .imageTextBlock__textWrapper {
  position: relative;
  margin-bottom: 100px;
}
@media (min-width: 1260px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper {
    margin: 50px 0;
    padding: 0 50px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper {
    margin: 100px 0;
    padding: 0 100px;
  }
}
.imageTextBlock--textBg .imageTextBlock__textWrapper:after {
  content: "";
  background: #F6F6FF;
  position: absolute;
  top: calc((-100vw + 40px) * 0.67 / 2 - 30px);
  bottom: -30px;
  z-index: 10;
}
@media (min-width: 768px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper:after {
    left: -40px;
    top: calc((-100vw + 80px) * 0.61 / 2 - 40px);
    bottom: -40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper:after {
    top: -50px;
    bottom: -50px;
  }
}
@media (min-width: 1600px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper:after {
    top: -100px;
    bottom: -100px;
  }
}
.imageTextBlock--textBg .imageTextBlock__textWrapper--left:after {
  left: -20px;
  right: -20px;
}
@media (min-width: 768px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper--left:after {
    left: -40px;
    right: -40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper--left:after {
    left: 0;
    right: -190px;
  }
}
.imageTextBlock--textBg .imageTextBlock__textWrapper--right:after {
  left: -20px;
  right: -20px;
}
@media (min-width: 768px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper--right:after {
    left: -40px;
    right: -40px;
  }
}
@media (min-width: 1260px) {
  .imageTextBlock--textBg .imageTextBlock__textWrapper--right:after {
    right: 0;
    left: -190px;
  }
}

@media (min-width: 1260px) {
  .ctaSection {
    display: flex;
  }
}
@media (min-width: 1600px) {
  .ctaSection {
    margin: 110px 0;
  }
}
.ctaSection__left {
  position: relative;
  padding: 50px 0;
  background: #2D2C6F url("../images/icon-search.svg") no-repeat right 20px center;
  background-size: 195px auto;
}
@media (min-width: 768px) {
  .ctaSection__left {
    background-size: 228px auto;
    background-position: right 80px center;
  }
}
@media (min-width: 1260px) {
  .ctaSection__left {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    background-size: 195px auto;
    background-position: right 50px center;
  }
}
@media (min-width: 1600px) {
  .ctaSection__left {
    background-position: right 115px center;
    background-size: 228px auto;
  }
}
.ctaSection__leftContainer {
  padding: 0 100px 0 20px;
}
@media (min-width: 768px) {
  .ctaSection__leftContainer {
    padding-left: 80px;
  }
}
@media (min-width: 1260px) {
  .ctaSection__leftContainer {
    width: 100%;
    max-width: 870px;
    padding: 0 50px 0 50px;
  }
}
.ctaSection__leftContainer h2 {
  color: #ffffff;
  max-width: 220px;
}
@media (min-width: 768px) {
  .ctaSection__leftContainer h2 {
    max-width: 280px;
  }
}
@media (min-width: 1600px) {
  .ctaSection__leftContainer h2 {
    max-width: 520px;
  }
}
.ctaSection__right {
  position: relative;
  padding: 50px 0;
  background: #FFC20E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='417.918' height='328' viewBox='0 0 417.918 328'%3E%3Cpath d='M251.792,20.061H417.918l-251.792,328H0Z' transform='translate(417.918 348.061) rotate(180)' fill='%23ffd455'/%3E%3C/svg%3E%0A") no-repeat right -115px center;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  .ctaSection__right {
    background-position: right 40px center;
  }
}
@media (min-width: 1260px) {
  .ctaSection__right {
    width: 50%;
    background-position: right -115px center;
  }
}
@media (min-width: 1600px) {
  .ctaSection__right {
    background-position: right center;
  }
}
@media (min-width: 768px) {
  .ctaSection__right h2 {
    max-width: 400px;
  }
}
@media (min-width: 1600px) {
  .ctaSection__right h2 {
    max-width: 520px;
  }
}
.ctaSection__right h2:after {
  background: #EB1C23;
}
.ctaSection__rightContainer {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .ctaSection__rightContainer {
    padding: 0 80px;
  }
}
@media (min-width: 1260px) {
  .ctaSection__rightContainer {
    max-width: 870px;
    padding: 0 50px 0 50px;
  }
}

@media (min-width: 768px) {
  .twoImagesSection__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.twoImagesSection__imageWrapper {
  position: relative;
  z-index: 20;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .twoImagesSection__imageWrapper {
    margin-bottom: 0;
    width: calc(50% - 20px);
  }
}
@media (min-width: 1260px) {
  .twoImagesSection__imageWrapper {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .twoImagesSection__imageWrapper {
    width: calc(50% - 50px);
  }
}
.twoImagesSection__imageContainer {
  position: relative;
  padding-bottom: 67%;
  z-index: 20;
}
@media (min-width: 768px) {
  .twoImagesSection__imageContainer {
    padding-bottom: 64.8%;
  }
}
@media (min-width: 1260px) {
  .twoImagesSection__imageContainer {
    padding-bottom: 77.5%;
  }
}
.twoImagesSection__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imageBlock__imageWrapper {
  position: relative;
  z-index: 20;
}
.imageBlock__imageContainer {
  position: relative;
  padding-bottom: 51.5%;
  z-index: 20;
}
@media (min-width: 768px) {
  .imageBlock__imageContainer {
    padding-bottom: 30.5%;
  }
}
@media (min-width: 1600px) {
  .imageBlock__imageContainer {
    padding-bottom: 27%;
  }
}
.imageBlock__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imageBlock--bg {
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .imageBlock--bg {
    margin-bottom: 120px;
  }
}
@media (min-width: 1260px) {
  .imageBlock--bg {
    margin-bottom: 130px;
  }
}
@media (min-width: 1600px) {
  .imageBlock--bg {
    margin-bottom: 160px;
  }
}
.imageBlock--bg .imageBlock__imageWrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: -20px;
  background: #FFC20E;
  width: 100vw;
}
@media (min-width: 768px) {
  .imageBlock--bg .imageBlock__imageWrapper:after {
    top: 40px;
    right: 40px;
    bottom: -40px;
  }
}
@media (min-width: 1260px) {
  .imageBlock--bg .imageBlock__imageWrapper:after {
    top: 50px;
    right: 50px;
    bottom: -50px;
  }
}
@media (min-width: 1600px) {
  .imageBlock--bg .imageBlock__imageWrapper:after {
    right: 140px;
  }
}

@media (min-width: 1260px) {
  .textBlocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.textBlocks__block {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .textBlocks__block {
    margin-top: 40px;
  }
}
@media (min-width: 1260px) {
  .textBlocks__block {
    width: calc(50% - 50px);
    margin-top: 80px;
  }
}
.textBlocks__block:first-child {
  margin-top: 0;
}
@media (min-width: 1260px) {
  .textBlocks__block:nth-child(-n+2) {
    margin-top: 0;
  }
}
.textBlocks__blockHeader {
  position: relative;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #2D2C6F;
  margin-bottom: 15px;
}
@media (min-width: 1260px) {
  .textBlocks__blockHeader {
    margin-bottom: 20px;
  }
}
.textBlocks__blockHeader:after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #2D2C6F;
}
@media (min-width: 1260px) {
  .textBlocks__blockHeader:after {
    width: 14px;
    height: 14px;
    bottom: -8px;
  }
}

.ctaEvent {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .ctaEvent {
    margin-bottom: 40px;
  }
}
@media (min-width: 1260px) {
  .ctaEvent {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.ctaEvent__imageWrapper {
  position: relative;
  z-index: 20;
}
@media (min-width: 1260px) {
  .ctaEvent__imageWrapper {
    width: 50%;
  }
}
.ctaEvent__imageWrapper--bg {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .ctaEvent__imageWrapper--bg {
    margin-bottom: 43px;
  }
}
.ctaEvent__imageWrapper--bg:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: -20px;
  background: #FFC20E;
  width: 100vw;
}
@media (min-width: 768px) {
  .ctaEvent__imageWrapper--bg:after {
    top: 40px;
    left: 40px;
    bottom: -40px;
  }
}
@media (min-width: 1260px) {
  .ctaEvent__imageWrapper--bg:after {
    top: 43px;
    left: 43px;
    bottom: -43px;
  }
}
@media (min-width: 1600px) {
  .ctaEvent__imageWrapper--bg:after {
    left: 140px;
  }
}
.ctaEvent__imageContainer {
  position: relative;
  padding-bottom: 67%;
  z-index: 20;
}
@media (min-width: 768px) {
  .ctaEvent__imageContainer {
    padding-bottom: 61%;
  }
}
@media (min-width: 1260px) {
  .ctaEvent__imageContainer {
    padding-bottom: 53.6%;
    height: 100%;
  }
}
.ctaEvent__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctaEvent__textWrapper {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #2D2C6F;
}
@media (min-width: 768px) {
  .ctaEvent__textWrapper {
    padding: 40px;
  }
}
@media (min-width: 1260px) {
  .ctaEvent__textWrapper {
    padding: 40px 50px;
    width: 50%;
    margin-bottom: 43px;
  }
}
@media (min-width: 1600px) {
  .ctaEvent__textWrapper {
    padding: 40px 100px;
  }
}
.ctaEvent__textContainer {
  position: relative;
  z-index: 20;
  color: #ffffff;
}
.ctaEvent__textContainer h2 {
  color: #ffffff;
}
.ctaEvent__meta {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 37px;
}
.ctaEvent__meta svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ctaEvent .btn {
  margin-top: 14px;
}
@media (min-width: 1260px) {
  .ctaEvent .btn {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  .infoCards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.infoCards__card {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .infoCards__card {
    width: calc((100% - 40px) / 2);
    margin-top: 40px;
  }
}
@media (min-width: 1260px) {
  .infoCards__card {
    width: calc((100% - 100px) / 4);
  }
}
@media (min-width: 768px) {
  .infoCards__card:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media (min-width: 1260px) {
  .infoCards__card:nth-child(-n+4) {
    margin-top: 0;
  }
}
.infoCards__cardImageContainer {
  position: relative;
  padding-bottom: 100%;
}
.infoCards__cardImage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infoCards__cardTextContainer {
  margin-top: 15px;
  border-top: 2px solid #FFC20E;
  padding-top: 15px;
}
@media (min-width: 1260px) {
  .infoCards__cardTextContainer {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.infoCards__cardTextContainer h3 {
  color: currentColor;
  margin-bottom: 10px;
}
@media (min-width: 1260px) {
  .infoCards__cardTextContainer h3 {
    margin-bottom: 15px;
  }
}

.carousel {
  margin-bottom: 130px;
}
@media (min-width: 768px) {
  .carousel {
    margin-bottom: 155px;
  }
}
.carousel__imageContainer {
  position: relative;
  padding-bottom: 80.5%;
  overflow: hidden;
}
.carousel__image {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  object-fit: cover;
  transform: translateY(-50%);
}
.carousel .owl-nav {
  color: #EB1C23;
}
.carousel .owl-prev,
.carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s;
}
.carousel .owl-prev svg,
.carousel .owl-next svg {
  display: block;
  height: 40px;
}
@media (min-width: 1600px) {
  .carousel .owl-prev svg,
  .carousel .owl-next svg {
    height: auto;
  }
}
.carousel .owl-prev.disabled,
.carousel .owl-next.disabled {
  color: #FFD9DB;
}
@media (min-width: 1260px) {
  .carousel .owl-prev {
    left: -25px;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1600px) {
  .carousel .owl-prev {
    left: -50px;
  }
}
@media (min-width: 1840px) {
  .carousel .owl-prev {
    left: -90px;
  }
}
@media (min-width: 1260px) {
  .carousel .owl-next {
    right: -25px;
    transform: translate(50%, -50%);
  }
}
@media (min-width: 1600px) {
  .carousel .owl-next {
    right: -50px;
  }
}
@media (min-width: 1840px) {
  .carousel .owl-next {
    right: -90px;
  }
}
.carousel .owl-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .carousel .owl-dots {
    bottom: -75px;
  }
}
.carousel .owl-dot {
  width: 15px;
  height: 15px;
  border: 1px solid #2D2C6F;
  border-radius: 100%;
  margin: 0 10px;
}
.carousel .owl-dot.active {
  background: #2D2C6F;
}

.categoriesFilter {
  display: flex;
  align-items: center;
}
.categoriesFilter__container {
  position: relative;
  flex: 1;
}
.categoriesFilter__container:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #2D2C6F;
  position: absolute;
  right: 50px;
  top: 0;
}
@media (min-width: 1024px) {
  .categoriesFilter__container:after {
    display: none;
  }
}
@media (min-width: 1024px) {
  .categoriesFilter__selectWrapper {
    display: none;
  }
}
.categoriesFilter__select {
  position: relative;
  height: 46px;
  border: 1px solid #2D2C6F;
  border-radius: 4px;
  padding: 0 60px 0 17px;
  z-index: 10;
  background: url("../images/select-arrow.svg") no-repeat right 11px top 15px;
  font-size: 1.25rem;
}
.categoriesFilter__list {
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .categoriesFilter__list {
    display: flex;
  }
}
.categoriesFilter__list li {
  margin: 0 10px 10px 0;
}
@media (min-width: 1024px) {
  .categoriesFilter__list li {
    margin: 0 20px 26px 0;
  }
}
.categoriesFilter__label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  min-height: 40px;
  padding: 5px 15px;
  background: #F6F6FF;
  color: #2D2C6F;
  border: none;
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 1024px) {
  .categoriesFilter__label {
    min-height: 64px;
    font-size: 1.125rem;
    padding: 10px 40px;
  }
}
@media (min-width: 1260px) {
  .categoriesFilter__label:hover {
    color: #ffffff;
    background-color: #2D2C6F;
  }
}
.categoriesFilter__label.active {
  color: #ffffff;
  background-color: #2D2C6F;
  font-weight: 700;
}

.postsListing {
  margin-top: 25px;
}
@media (min-width: 1260px) {
  .postsListing {
    margin-top: 45px;
  }
}
.postsListing__filters {
  border-bottom: 2px solid #FFC20E;
  padding-bottom: 21px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .postsListing__filters {
    margin-bottom: 60px;
  }
}
@media (min-width: 1260px) {
  .postsListing__filters {
    margin-bottom: 80px;
  }
}
.postsListing__teasers {
  overflow: hidden;
}
@media (min-width: 768px) {
  .postsListing__teasers {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -20px;
  }
}
@media (min-width: 1260px) {
  .postsListing__teasers {
    margin: 0 -25px;
  }
}
@media (min-width: 1600px) {
  .postsListing__teasers {
    margin: 0 -30px;
  }
}
.postsListing__sizer {
  width: 100%;
}
@media (min-width: 768px) {
  .postsListing__sizer {
    width: calc((100% - 80px) / 2);
  }
}
@media (min-width: 1260px) {
  .postsListing__sizer {
    width: calc((100% - 150px) / 3);
  }
}
@media (min-width: 1600px) {
  .postsListing__sizer {
    width: calc((100% - 180px) / 3);
  }
}
@media (min-width: 768px) {
  .postsListing__gutter {
    width: 40px;
  }
}
@media (min-width: 1260px) {
  .postsListing__gutter {
    width: 50px;
  }
}
@media (min-width: 1600px) {
  .postsListing__gutter {
    width: 60px;
  }
}
.postsListing__pagination {
  display: flex;
  justify-content: center;
}
.postsListing__nothingFound {
  text-align: center;
}

.postTeaser {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .postTeaser {
    width: calc((100% - 80px) / 2);
    margin: 0 20px 70px;
  }
}
@media (min-width: 1260px) {
  .postTeaser {
    width: calc((100% - 150px) / 3);
    margin: 0 25px 90px;
  }
}
@media (min-width: 1600px) {
  .postTeaser {
    width: calc((100% - 180px) / 3);
    margin: 0 30px 110px;
  }
}
.postTeaser__imageContainer {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .postTeaser__imageContainer {
    margin-bottom: 20px;
  }
}
@media (min-width: 1260px) {
  .postTeaser__imageContainer {
    padding-bottom: 101%;
    margin-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .postTeaser__imageContainer {
    margin-bottom: 40px;
  }
}
.postTeaser__imageContainer:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(26, 26, 26, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 10;
}
.postTeaser__arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0;
  color: #FFC20E;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 20;
}
.postTeaser__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.postTeaser__date {
  color: #2D2C6F;
  display: flex;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .postTeaser__date {
    margin-bottom: 20px;
  }
}
.postTeaser__date span {
  position: relative;
  display: block;
  padding-right: 20px;
}
.postTeaser__date span:after {
  content: "";
  display: block;
  width: 100vw;
  height: 2px;
  background: #FFC20E;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.postTeaser__categories {
  display: flex;
  flex-wrap: wrap;
}
.postTeaser__category {
  display: block;
  background: #F6F6FF;
  padding: 0 10px;
  line-height: 31px;
  margin: 0 10px 10px 0;
  color: #2D2C6F;
}
@media (min-width: 768px) {
  .postTeaser__category {
    margin-bottom: 20px;
  }
}
.postTeaser__title {
  margin-bottom: 15px;
}
.postTeaser__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 42px;
}
.postTeaser__meta svg {
  margin-right: 15px;
  position: absolute;
  left: 14px;
  top: 45%;
  transform: translate(-50%, -50%);
  color: #EB1C23;
}
.postTeaser__lnkMore {
  display: inline-block;
  text-transform: uppercase;
  color: #EB1C23;
  margin-top: 15px;
  font-weight: 700;
}
.postTeaser__lnkOverlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.postTeaser.hidden {
  display: none;
}
@media (min-width: 1260px) {
  .postTeaser:hover .postTeaser__imageContainer:before {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1260px) {
  .postTeaser:hover .postTeaser__arrow {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1260px) {
  .postTeaser:hover .postTeaser__lnkMore {
    text-decoration: underline;
  }
}

@media (min-width: 768px) {
  .twoColumnsBlock {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .twoColumnsBlock__column {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1260px) {
  .twoColumnsBlock__column {
    width: calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .twoColumnsBlock__column {
    width: calc(50% - 50px);
  }
}
.twoColumnsBlock table tr td {
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .twoColumnsBlock table tr td {
    padding: 15px 15px;
  }
}
@media (min-width: 1260px) {
  .twoColumnsBlock table tr td {
    padding: 23px 40px;
  }
}
.twoColumnsBlock table tr td:nth-child(2) {
  font-weight: 700;
}
.twoColumnsBlock table tr:nth-child(2n+1) {
  background-color: #F6F6FF;
}

.popup {
  text-align: left;
  overflow: hidden;
}
.popup a {
  color: #EB1C23;
}
@media (min-width: 1260px) {
  .popup a:hover {
    text-decoration: underline;
  }
}
.popup__title {
  text-align: center;
}
.popup__title:after {
  left: 50%;
  transform: translateX(-50%);
}
.popup__text {
  margin: 40px 0;
  text-align: center;
}
.popup .fieldsContainer {
  margin-bottom: 10px;
}
.popup .buttonsRow {
  margin-top: 40px;
}
.popup .buttonsRow .btn {
  width: 100%;
  margin-bottom: 20px;
}
.popup .buttonsRow .btn:last-child {
  margin-bottom: 0;
}
.popup__footerLinks {
  text-align: center;
  margin-top: 40px;
  color: #2D2C6F;
}

body.single-annual_symposium .buttonsRow .btn {
  margin-bottom: 20px;
}
body.single-annual_symposium .twoColsTextSection .container {
  background: #F6F6FF;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1260px) {
  body.single-annual_symposium .twoColsTextSection .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.symposiumRegistration {
  margin: 0 auto;
}
.symposiumRegistration__description {
  margin-bottom: 30px;
}

.metaBlock__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 42px;
}
.metaBlock__meta svg {
  margin-right: 15px;
  position: absolute;
  left: 14px;
  top: 45%;
  transform: translate(-50%, -50%);
  color: #EB1C23;
}

.sponsorsBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sponsorsBlock__category {
  margin-bottom: 60px;
  width: 100%;
}
.sponsorsBlock__categoryTitle:after {
  display: none;
}
.sponsorsBlock__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.sponsorsBlock__logoContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sponsorsBlock__logoContainer {
    align-items: flex-start;
    margin-right: 50px;
  }
}
.sponsorsBlock__logoContainer:last-child {
  margin-right: 0;
}
.sponsorsBlock__logoContainer img {
  max-width: 250px;
  max-height: 140px;
}

body.single-news .imageTextBlock__imageContainer {
  padding: 0;
}
body.single-news .imageTextBlock__imageWrapper {
  align-self: flex-start;
}
body.single-news .imageTextBlock__image {
  position: static;
}
body.single-news .categories {
  margin-bottom: 10px;
}
body.single-news .metaBlock {
  margin-bottom: 40px;
}

body.single-events .imageTextBlock__imageContainer {
  padding: 0;
}
body.single-events .imageTextBlock__imageWrapper {
  align-self: flex-start;
}
body.single-events .imageTextBlock__image {
  position: static;
}
body.single-events .categories {
  margin-bottom: 10px;
}
body.single-events .metaBlock {
  margin-bottom: 40px;
}

@media (min-width: 1600px) {
  body.page-template-template-home .headerSocials {
    top: 26.5vw;
  }
}
body.page-template-template-home .heroSection__inner {
  height: auto;
}
body.page-template-template-home .heroSection__btnScroll {
  display: none;
}
@media (min-width: 1260px) {
  body.page-template-template-home .heroSection__btnScroll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
body.page-template-template-home .imageTextBlock p:first-child {
  color: #2D2C6F;
}

.heroCarousel__slide {
  position: relative;
  height: calc(100vh - 100px - 15px);
  min-height: 500px;
}
@media (min-width: 768px) {
  .heroCarousel__slide {
    height: calc(100vh - 100px - 30px);
  }
}
@media (min-width: 1260px) {
  .heroCarousel__slide {
    padding: 0;
    height: calc(100vh - 147px - 120px);
    min-height: 590px;
  }
}
.heroCarousel__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroCarousel__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10;
  display: flex;
  align-items: center;
}
.heroCarousel__content {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .heroCarousel__content {
    width: calc(50% + 50px);
    text-align: left;
    margin-bottom: 85px;
  }
}
.heroCarousel__content h1 {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 1260px) {
  .heroCarousel__content h1 {
    font-size: 2.625rem;
  }
}
.heroCarousel__content h1:after {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .heroCarousel__content h1:after {
    left: 0;
    transform: none;
  }
}
.heroCarousel__content .btn {
  margin-top: 15px;
}
@media (min-width: 1260px) {
  .heroCarousel__content .btn {
    margin-top: 20px;
  }
}
.heroCarousel .owl-nav {
  position: absolute;
  right: 20px;
  bottom: 30px;
  transform: translateY(50%);
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
}
@media (min-width: 768px) {
  .heroCarousel .owl-nav {
    right: calc(50% + 80px);
    bottom: 25px;
  }
}
@media (min-width: 1260px) {
  .heroCarousel .owl-nav {
    right: auto;
    bottom: 20px;
    left: 190px;
  }
}
.heroCarousel .owl-prev svg,
.heroCarousel .owl-next svg {
  display: block;
}
.heroCarousel .owl-prev.disabled,
.heroCarousel .owl-next.disabled {
  opacity: 0.15;
}
.heroCarousel .owl-dots {
  position: absolute;
  left: 20px;
  bottom: 30px;
  transform: translateY(50%);
  z-index: 300;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .heroCarousel .owl-dots {
    left: 80px;
  }
}
@media (min-width: 1260px) {
  .heroCarousel .owl-dots {
    bottom: 20px;
    left: 100px;
  }
}
.heroCarousel .owl-dot {
  display: none;
}
.heroCarousel .owl-dot.active {
  display: block;
}
.heroCarousel:after {
  content: "";
  width: 100vw;
  height: 60px;
  right: 0;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  padding: 0 20px;
  z-index: 100;
}
@media (min-width: 768px) {
  .heroCarousel:after {
    width: 50%;
    left: 0;
    right: auto;
  }
}
@media (min-width: 1260px) {
  .heroCarousel:after {
    height: 100px;
    padding: 0 100px;
    bottom: -30px;
    left: auto;
    right: calc(100% - 400px);
  }
}

body.page-template-resource-directory h2:after {
  width: 100%;
}
body.page-template-resource-directory input[name=search] {
  background: url("../images/icon-search.svg") no-repeat right 20px center;
  background-size: 25px auto;
  max-width: 670px;
}
@media (min-width: 1024px) {
  body.page-template-resource-directory .resourcesBlock__categories {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  body.page-template-resource-directory .resourcesBlock__categories h2 {
    margin-bottom: 20px;
  }
}
body.page-template-resource-directory .categoriesFilter__container:after {
  display: none;
}
body.page-template-resource-directory .categoriesFilter__list {
  display: flex;
}
@media (min-width: 1024px) {
  body.page-template-resource-directory .categoriesFilter__list li {
    margin: 0 10px 10px 0;
  }
}
@media (min-width: 1024px) {
  body.page-template-resource-directory .categoriesFilter__label {
    min-height: 44px;
    padding: 10px 20px;
  }
}

.resourcesBlock__categories {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .resourcesBlock__categories {
    margin-bottom: 30px;
  }
}
@media (min-width: 1260px) {
  .resourcesBlock__categories {
    margin-bottom: 60px;
  }
}
.resourcesBlock__subcategories {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .resourcesBlock__subcategories {
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .resourcesBlock__subcategories {
    margin-bottom: 30px;
  }
}
.resourcesBlock__results {
  position: relative;
}
@media (min-width: 1024px) {
  .resourcesBlock__results {
    margin-top: 60px;
  }
}
.resourcesBlock__search {
  margin-top: 45px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .resourcesBlock__search {
    margin: 0;
    position: absolute;
    top: -5px;
    right: 0;
    width: 50%;
    max-width: 670px;
    z-index: 10;
  }
}
@media (min-width: 1600px) {
  .resourcesBlock__search {
    top: 0;
  }
}

.resourceTeaser {
  position: relative;
  padding: 18px 85px 18px 20px;
  background: #F6F6FF;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .resourceTeaser {
    padding-left: 40px;
    padding-right: 125px;
  }
}
@media (min-width: 1260px) {
  .resourceTeaser {
    padding-right: 170px;
  }
}
.resourceTeaser__iconContainer {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 10;
}
@media (min-width: 768px) {
  .resourceTeaser__iconContainer {
    width: 126px;
  }
}
.resourceTeaser__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
}
@media (min-width: 768px) {
  .resourceTeaser__icon {
    transform: translate(-50%, -50%) scale(1);
  }
}
.resourceTeaser__title {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .resourceTeaser__title {
    margin-bottom: 10px;
  }
}
@media (min-width: 1260px) {
  .resourceTeaser__title {
    margin-bottom: 0;
  }
}
.resourceTeaser__overlay {
  color: #ffffff;
  background: rgba(45, 44, 111, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5625rem;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 20;
}
@media (min-width: 1260px) {
  .resourceTeaser:hover .resourceTeaser__overlay {
    opacity: 1;
  }
}

.becomeMemberForm__stepsNav {
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .becomeMemberForm__stepsNav {
    margin-bottom: 110px;
  }
}
@media (min-width: 1260px) {
  .becomeMemberForm__stepsNav {
    margin-bottom: 155px;
  }
}
.becomeMemberForm__stepsNav:after {
  content: "";
  height: 1px;
  background: #EB1C23;
  left: 20px;
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.becomeMemberForm__stepsNav li {
  position: relative;
}
.becomeMemberForm__stepsNav li.ui-state-active .becomeMemberForm__stepNumber {
  background: #EB1C23;
  color: #ffffff;
}
.becomeMemberForm__stepNumber {
  width: 43px;
  height: 43px;
  border-radius: 100%;
  border: 1px solid #EB1C23;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 25px;
  color: #EB1C23;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .becomeMemberForm__stepNumber {
    width: 74px;
    height: 74px;
    font-size: 40px;
  }
}
.becomeMemberForm__stepTitle {
  display: none;
}
@media (min-width: 768px) {
  .becomeMemberForm__stepTitle {
    display: block;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
.becomeMemberForm__stepContent {
  max-width: 670px;
  margin: 0 auto;
}
.becomeMemberForm__stepContent h2 {
  text-align: center;
}
.becomeMemberForm__stepContent h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.becomeMemberForm__stepButtons {
  display: flex;
  margin-top: 30px;
}
.becomeMemberForm__btnPrev {
  margin-right: auto;
}
.becomeMemberForm__btnNext {
  margin-left: auto;
}

.directoryTableBlock__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

table.directoryTable {
  margin-top: 20px;
}
@media (min-width: 1260px) {
  table.directoryTable {
    margin-top: 40px;
  }
}
table.directoryTable thead {
  display: none;
}
@media (min-width: 1260px) {
  table.directoryTable thead {
    display: table-header-group;
  }
}
table.directoryTable tbody {
  display: block;
}
@media (min-width: 1260px) {
  table.directoryTable tbody {
    display: table-row-group;
  }
}
table.directoryTable tbody tr {
  display: block;
  padding: 20px 0;
}
@media (min-width: 1260px) {
  table.directoryTable tbody tr {
    display: table-row;
  }
}
table.directoryTable th {
  text-align: left;
  color: #2D2C6F;
}
table.directoryTable td {
  display: block;
}
@media (min-width: 1260px) {
  table.directoryTable td {
    display: table-cell;
  }
}
table.directoryTable td:last-child a {
  color: #2D2C6F;
  font-weight: 700;
}
@media (min-width: 1260px) {
  table.directoryTable .odd {
    background-color: #F6F6FF;
  }
}
table.directoryTable ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.directoryForm .buttonsRow {
  margin-top: 20px;
}

table.dataTable thead th,
table.dataTable thead td {
  border-bottom: 2px solid #2D2C6F;
  padding: 20px 20px;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 10px 10px;
}
@media (min-width: 1260px) {
  table.dataTable tbody th,
  table.dataTable tbody td {
    padding: 20px 20px;
  }
}
table.dataTable tbody th:nth-child(n+1),
table.dataTable tbody td:nth-child(n+1) {
  padding-left: 51%;
  position: relative;
}
@media (min-width: 1260px) {
  table.dataTable tbody th:nth-child(n+1),
  table.dataTable tbody td:nth-child(n+1) {
    padding-left: 20px;
  }
}
table.dataTable tbody th:nth-child(n+1):before,
table.dataTable tbody td:nth-child(n+1):before {
  content: attr(data-title);
  font-style: italic;
  width: 49%;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #1A1A1A;
  opacity: 0.56;
}
@media (min-width: 1260px) {
  table.dataTable tbody th:nth-child(n+1):before,
  table.dataTable tbody td:nth-child(n+1):before {
    display: none;
  }
}
table.dataTable tbody th:first-child,
table.dataTable tbody td:first-child {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1260px) {
  table.dataTable tbody th:first-child,
  table.dataTable tbody td:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}
table.dataTable tbody th:nth-child(2n),
table.dataTable tbody td:nth-child(2n) {
  background-color: #F6F6FF;
}
@media (min-width: 1260px) {
  table.dataTable tbody th:nth-child(2n),
  table.dataTable tbody td:nth-child(2n) {
    background: transparent;
  }
}

.dataTables_wrapper .dataTables_info {
  float: none;
  padding: 0;
  margin-top: 30px;
}
@media (min-width: 1260px) {
  .dataTables_wrapper .dataTables_info {
    margin-top: 0;
  }
}
.dataTables_wrapper .dataTables_length label {
  display: flex;
  align-items: center;
}
.dataTables_wrapper .dataTables_length label select {
  margin: 0 10px;
  width: 100px;
}
.dataTables_wrapper .dataTables_filter {
  float: none;
  margin-right: auto;
  width: 100%;
  margin-top: 0;
}
@media (min-width: 1260px) {
  .dataTables_wrapper .dataTables_filter {
    width: calc(50% - 20px);
  }
}
.dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
}
.dataTables_wrapper .dataTables_filter label input {
  margin: 0;
  width: 100%;
  background: url("../images/icon-search.svg") no-repeat right 20px center;
  background-size: 25px auto;
  padding-right: 65px;
}
.dataTables_wrapper .dataTables_paginate {
  float: none;
  display: flex;
  justify-content: center;
  margin: 40px -20px 0;
}
@media (min-width: 1260px) {
  .dataTables_wrapper .dataTables_paginate {
    margin: 80px 0 0;
  }
}
.dataTables_wrapper .dataTables_paginate span {
  display: flex;
  align-items: center;
  margin: 0 10px;
}
@media (min-width: 1260px) {
  .dataTables_wrapper .dataTables_paginate span {
    margin: 0;
  }
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  width: 31px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  color: #2D2C6F;
  padding: 0;
  font-weight: 700;
  border: none;
  border-radius: 0;
}
@media (min-width: 1260px) {
  .dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 10px;
  }
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #2D2C6F;
  color: #ffffff !important;
  border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #2D2C6F;
  color: #ffffff !important;
  border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
}

.findDoctorBlock {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .findDoctorBlock {
    margin: 0 -40px;
  }
}
@media (min-width: 1260px) {
  .findDoctorBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: calc(100% - 630px);
    height: 890px;
    margin: 0;
  }
}
.findDoctorBlock__mapContainer {
  position: relative;
  height: 534px;
}
@media (min-width: 1260px) {
  .findDoctorBlock__mapContainer {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 630px);
    height: 100%;
  }
}
.findDoctorBlock__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.findDoctorFilters__header {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #2D2C6F;
  border-bottom: 2px solid #2D2C6F;
  cursor: pointer;
  outline: none;
  background: transparent;
}
.findDoctorFilters__header svg {
  margin-right: 10px;
}
.findDoctorFilters__content {
  padding: 20px;
}
@media (min-width: 768px) {
  .findDoctorFilters .buttonsRow {
    margin-top: 25px;
  }
}

.findDoctorResults {
  position: relative;
  height: 1350px;
}
@media (min-width: 1260px) {
  .findDoctorResults {
    flex: 1;
    height: auto;
  }
}
.findDoctorResults__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.doctorBlock {
  padding: 20px;
  color: #2D2C6F;
  cursor: pointer;
  border-bottom: 1px solid #E8E8FF;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .doctorBlock {
    padding: 20px 40px;
  }
}
@media (min-width: 1260px) {
  .doctorBlock {
    padding: 20px;
  }
}
.doctorBlock__distance {
  margin-bottom: 10px;
}
.doctorBlock__name {
  margin-bottom: 12px;
}
.doctorBlock__diploma {
  font-size: 0.875rem;
  margin-top: -12px;
  margin-bottom: 12px;
}
.doctorBlock__categories {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.doctorBlock__categories li {
  display: block;
  background: #E8E8FF;
  padding: 0 10px;
  line-height: 33px;
  margin: 0 15px 15px 0;
  color: #2D2C6F;
}
@media (min-width: 768px) {
  .doctorBlock__categories li {
    margin-bottom: 20px;
  }
}
.doctorBlock__contacts {
  font-weight: 700;
}
.doctorBlock__contacts > * {
  position: relative;
  padding-left: 35px;
  line-height: 24px;
  margin-top: 15px;
}
.doctorBlock__contacts > * svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.doctorBlock__contacts a {
  transition: color 0.3s;
}
@media (min-width: 1260px) {
  .doctorBlock__contacts a:hover {
    color: #EB1C23;
  }
}
.doctorBlock.active {
  background: #F6F6FF;
}

.doctorInfobox {
  position: relative;
  display: none;
  border: 1px solid #2D2C6F;
  width: 260px;
  color: #2D2C6F;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
}
.doctorInfobox__inner {
  position: relative;
  background: #F6F6FF;
  padding: 20px;
  z-index: 20;
}
.doctorInfobox__name {
  margin-bottom: 10px;
}
.doctorInfobox__directions {
  position: relative;
  padding-left: 35px;
  line-height: 24px;
  margin-top: 15px;
  font-weight: 700;
}
.doctorInfobox__directions svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.doctorInfobox:after {
  content: "";
  background: no-repeat center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='25' viewBox='0 0 29 25'%3E%3Cg transform='translate(29 25) rotate(180)' fill='%23f6f6ff'%3E%3Cpath d='M 28.13198089599609 24.5 L 0.8680188059806824 24.5 L 14.5 0.9965841174125671 L 28.13198089599609 24.5 Z' stroke='none'/%3E%3Cpath d='M 14.5 1.99315071105957 L 1.736026763916016 24 L 27.26397323608398 24 L 14.5 1.99315071105957 M 14.5 0 L 29 25 L 0 25 L 14.5 0 Z' stroke='none' fill='%232d2c6f'/%3E%3C/g%3E%3C/svg%3E");
  width: 29px;
  height: 25px;
  position: absolute;
  left: 50%;
  bottom: -12px;
  z-index: 10;
  transform: translateX(-50%);
}

.infoBox .doctorInfobox {
  display: block;
}

.page-template-template-landing .siteHeader,
.page-id-44537 .siteHeader {
  background: transparent;
}
.page-template-template-landing #main,
.page-id-44537 #main {
  padding: 0;
}

.landingSection {
  margin: 0;
}

.landingBlock {
  position: relative;
}
.landingBlock__image, .landingBlock__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landingBlock__overlay {
  position: relative;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
}
@media (min-width: 1260px) {
  .landingBlock__overlay {
    padding-top: 147px;
  }
}
@media (orientation: portrait) {
  .landingBlock__overlay {
    min-height: 100vh;
  }
}
@media (orientation: landscape) {
  .landingBlock__overlay {
    min-height: max(42.8571428571vw, 100vh);
  }
}
.landingBlock__overlay .container {
  height: 100%;
}
.landingBlock__overlay h1 {
  color: #ffffff;
}
.landingBlock__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 50px 0;
  height: 100%;
}
@media (min-width: 768px) {
  .landingBlock__content {
    padding: 85px 0;
    justify-content: space-between;
    flex-direction: row;
  }
}
.landingBlock__contentLeft {
  position: relative;
}
@media (min-width: 768px) {
  .landingBlock__contentLeft {
    width: 50%;
  }
}
@media (min-width: 1260px) {
  .landingBlock__contentLeft:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    right: calc(100% + 30px);
    width: 100vw;
    background: #EB1C23;
  }
}
@media (min-width: 1600px) {
  .landingBlock__contentLeft:before {
    right: calc(100% + 70px);
  }
}
.landingBlock__contentRight {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  width: 100%;
}
@media (min-width: 768px) {
  .landingBlock__contentRight {
    max-width: 45%;
    margin-top: 0;
    width: auto;
  }
}
.landingBlock__buttons {
  margin-top: 10px;
}
@media (min-width: 1260px) {
  .landingBlock__buttons {
    margin-top: 20px;
  }
}
.landingBlock__buttons .btn {
  margin-top: 20px;
}
.landingBlock__buttons .btn:last-child {
  margin-bottom: 0;
}
.landingBlock__ctaLink {
  position: relative;
  display: block;
  padding-right: 60px;
  font-weight: 800;
  margin-top: 20px;
  max-width: 260px;
}
@media (min-width: 1260px) {
  .landingBlock__ctaLink {
    font-size: 1.5625rem;
    line-height: 1.4;
    margin-top: 40px;
    padding-right: 65px;
    max-width: 390px;
  }
}
.landingBlock__ctaLink:after {
  content: "";
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.447' height='44.519' viewBox='0 0 25.447 44.519'%3E%3Cg transform='translate(91.252 44.429) rotate(-90)'%3E%3Cg transform='translate(1.948 -89.051)'%3E%3Cpath d='M40.8.354,20.115,19.51.353,1.21' transform='translate(-0.353 -0.354)' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  width: 20px;
  height: 41px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1260px) {
  .landingBlock__ctaLink:after {
    width: 26px;
    height: 45px;
  }
}
.landingBlock__ctaLink:first-child {
  max-width: 220px;
}
@media (min-width: 1260px) {
  .landingBlock__ctaLink:first-child {
    max-width: 320px;
  }
}
.landingBlock__eventMeta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 42px;
}
.landingBlock__eventMeta svg {
  margin-right: 15px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dashboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dashboard__lnk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F6F6FF;
  color: #2D2C6F;
  min-height: 190px;
  padding: 15px 10px;
  font-weight: 800;
  text-align: center;
  font-size: 1.125rem;
  line-height: 28px;
  width: 48%;
  margin-bottom: 4%;
}
@media (min-width: 768px) {
  .dashboard__lnk {
    font-size: 1.25rem;
    line-height: 30px;
    width: 30%;
    margin-bottom: 5%;
    padding: 20px 30px;
    min-height: 290px;
  }
}
@media (min-width: 1260px) {
  .dashboard__lnk {
    font-size: 1.5625rem;
    line-height: 35px;
    padding: 30px 60px;
    transition: color 0.3s, background-color 0.3s;
  }
}
.dashboard__lnk svg {
  margin-bottom: 10px;
  max-width: 60px;
  max-height: 60px;
}
@media (min-width: 768px) {
  .dashboard__lnk svg {
    margin-bottom: 27px;
  }
}
@media (min-width: 1260px) {
  .dashboard__lnk svg {
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1260px) {
  .dashboard__lnk:hover {
    background: #2D2C6F;
    color: #ffffff;
  }
}

/*# sourceMappingURL=main.css.map */
