/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels
The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
*/

.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.m-t-150 {
  margin-top: 150px !important;
}

.p-t-150 {
  padding-top: 150px !important;
}

.m-b-150 {
  margin-bottom: 150px !important;
}

.p-b-150 {
  padding-bottom: 150px !important;
}

.m-l-150 {
  margin-left: 150px !important;
}

.p-l-150 {
  padding-left: 150px !important;
}

.m-r-150 {
  margin-right: 150px !important;
}

.p-r-150 {
  padding-right: 150px !important;
}

.m-t-250 {
  margin-top: 250px !important;
}

.p-t-250 {
  padding-top: 250px !important;
}

.m-b-250 {
  margin-bottom: 250px !important;
}

.p-b-250 {
  padding-bottom: 250px !important;
}

.m-l-250 {
  margin-left: 250px !important;
}

.p-l-250 {
  padding-left: 250px !important;
}

.m-r-250 {
  margin-right: 250px !important;
}

.p-r-250 {
  padding-right: 250px !important;
}

.color-white-1 {
  color: #fff !important;
}

.bg-white-1 {
  background-color: #fff !important;
}

.color-black-1 {
  color: #000 !important;
}

.bg-black-1 {
  background-color: #000 !important;
}

.color-black-2 {
  color: #322d2d !important;
}

.bg-black-2 {
  background-color: #322d2d !important;
}

.color-gray-1 {
  color: #6b6868 !important;
}

.bg-gray-1 {
  background-color: #6b6868 !important;
}

.color-blue-1 {
  color: #2b4763 !important;
}

.bg-blue-1 {
  background-color: #2b4763 !important;
}

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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
   ========================================================================== */

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

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

b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * 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
   ========================================================================== */

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

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

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

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

button,
input {
  /* 1 */
  overflow: visible;
}

button:focus,
button:active,
input:focus,
input:active {
  outline: none;
  box-shadow: none;
}

/**
 * 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 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;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

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 in Chrome and Safari on macOS.
 */

[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 Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}

/* Remove the stupid outer glow in Webkit */

input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */

input,
textarea {
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */

button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */

::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */

::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/

textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/

select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

* {
  box-sizing: border-box;
}

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

@media only screen and (min-width: 992px) {
  html {
    scroll-behavior: smooth;
  }
}

html {
  font-size: 18px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 766px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Mulish", sans-serif;
  color: #000;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 961px) {
  body.modal-opened {
    height: 100vh;
    overflow-y: hidden;
    padding-right: 15px;
  }
}

p {
  margin-bottom: 1em;
  font-weight: 400;
  width: 100%;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  margin: 0;
  font-weight: 100;
  line-height: 1.15;
}

h1,
.h1 {
  font-size: 52px;
}

@media only screen and (max-width: 959px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

h2,
.h2 {
  font-size: 42px;
  color: #322d2d;
}

@media only screen and (max-width: 959px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}

.text__sm {
  font-size: 15px !important;
  line-height: 25px;
}

.text__xs {
  font-size: 13px !important;
}

.text__center {
  text-align: center;
}

.bg-cover {
  background-size: cover;
  background-position: 0 !important;
}

.d-flex {
  display: flex;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.position-static {
  position: static !important;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-LightItalic.woff2?ec3c6aa85f97bd926ee031f1781ab1d8) format("woff2"), url(/fonts/RobotoCondensed-LightItalic.woff?9b1e188caa6bff9a22458ec0d63b4c7f) format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-BoldItalic.woff2?4166166cee69f4734d941851e8659776) format("woff2"), url(/fonts/RobotoCondensed-BoldItalic.woff?bfcb7656f758a5e9b2e3a5f5003644a0) format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-Italic.woff2?85cb834b10818511e069d4cf38e1025a) format("woff2"), url(/fonts/RobotoCondensed-Italic.woff?133763a1689550dc4f330cacfd3f1ed0) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-Bold.woff2?08988e980f0dc729efcfeb0da46074a4) format("woff2"), url(/fonts/RobotoCondensed-Bold.woff?e0903222d7d2424e25bf0a04124982a8) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-Light.woff2?7f03860e41908b26fa664db525728563) format("woff2"), url(/fonts/RobotoCondensed-Light.woff?690b7692f7418c4cbd46bcd03ef9cb9c) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(/fonts/RobotoCondensed-Regular.woff2?c8bde939f4823cf1d13619290782e58b) format("woff2"), url(/fonts/RobotoCondensed-Regular.woff?335f3dc8bea64e9e89b551d46e2e151d) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Rage Italic Com';
  src: url(/fonts/RageItalicCom.woff2?5514067a0e48fca3b327729b50031ee0) format("woff2"), url(/fonts/RageItalicCom.woff?56d5c94627ce6251dd2e1583e63349be) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'IntroLight';
  src: url(/fonts/Intro-Light.woff2?81201e4037ae0b0a8f3ad0d90a1f5a16) format("woff2"), url(/fonts/Intro-Light.woff?eb3522886aa1a46f174ea0d2515920e3) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Intro';
  src: url(/fonts/Intro-Regular.woff2?5c6f068770c739f1399de580bf7c7a2b) format("woff2"), url(/fonts/Intro-Regular.woff?051e6a5ee079f4fa19665fbc65d7005f) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'Intro';
  src: url(/fonts/Intro-Bold.woff2?88f2e0be106df829bf59a23789644b68) format("woff2"), url(/fonts/Intro-Bold.woff?b2fd81669234fd77872536bc2c82f4d1) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: AstoriaRoman;
  src: url(/fonts/Cochin.woff2?8008a8fa5fb512d4fb179abc2a816045) format("woff2"), url(/fonts/Cochin.woff?3dcc42e2bec871331c065e28da9bdbd3) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: AstoriaRoman;
  src: url(/fonts/AstoriaRoman.ttf?ed20db94aa2e578dbe9260ff99f40f7c) format("truetype"), url(/fonts/AstoriaRoman.ttf?ed20db94aa2e578dbe9260ff99f40f7c) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

.container {
  position: relative;
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 600px) {
  .container {
    max-width: 600px;
  }
}

@media (min-width: 767px) {
  .container {
    max-width: 780px;
  }
}

@media (min-width: 960px) {
  .container {
    max-width: 960px;
  }
}

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

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxs-1,
.col-xxs-2,
.col-xxs-3,
.col-xxs-4,
.col-xxs-5,
.col-xxs-6,
.col-xxs-7,
.col-xxs-8,
.col-xxs-9,
.col-xxs-10,
.col-xxs-11,
.col-xxs-12,
.col-xxs,
.col-xxs-auto,
.col-xms-1,
.col-xms-2,
.col-xms-3,
.col-xms-4,
.col-xms-5,
.col-xms-6,
.col-xms-7,
.col-xms-8,
.col-xms-9,
.col-xms-10,
.col-xms-11,
.col-xms-12,
.col-xms,
.col-xms-auto,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs,
.col-xs-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xlg-1,
.col-xlg-2,
.col-xlg-3,
.col-xlg-4,
.col-xlg-5,
.col-xlg-6,
.col-xlg-7,
.col-xlg-8,
.col-xlg-9,
.col-xlg-10,
.col-xlg-11,
.col-xlg-12,
.col-xlg,
.col-xlg-auto {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 400px) {
  .col-xxs {
    max-width: 100%;
  }

  .col-xxs-auto {
    width: auto;
    max-width: none;
  }

  .col-xxs-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xxs-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xxs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxs-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xxs-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xxs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxs-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xxs-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xxs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxs-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xxs-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xxs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xxs-0 {
    margin-left: 0;
  }

  .offset-xxs-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxs-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxs-3 {
    margin-left: 25%;
  }

  .offset-xxs-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxs-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxs-6 {
    margin-left: 50%;
  }

  .offset-xxs-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxs-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxs-9 {
    margin-left: 75%;
  }

  .offset-xxs-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxs-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 428px) {
  .col-xms {
    max-width: 100%;
  }

  .col-xms-auto {
    width: auto;
    max-width: none;
  }

  .col-xms-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xms-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xms-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xms-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xms-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xms-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xms-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xms-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xms-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xms-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xms-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xms-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xms-0 {
    margin-left: 0;
  }

  .offset-xms-1 {
    margin-left: 8.33333333%;
  }

  .offset-xms-2 {
    margin-left: 16.66666667%;
  }

  .offset-xms-3 {
    margin-left: 25%;
  }

  .offset-xms-4 {
    margin-left: 33.33333333%;
  }

  .offset-xms-5 {
    margin-left: 41.66666667%;
  }

  .offset-xms-6 {
    margin-left: 50%;
  }

  .offset-xms-7 {
    margin-left: 58.33333333%;
  }

  .offset-xms-8 {
    margin-left: 66.66666667%;
  }

  .offset-xms-9 {
    margin-left: 75%;
  }

  .offset-xms-10 {
    margin-left: 83.33333333%;
  }

  .offset-xms-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 600px) {
  .col-xs {
    max-width: 100%;
  }

  .col-xs-auto {
    width: auto;
    max-width: none;
  }

  .col-xs-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xs-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xs-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xs-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xs-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xs-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xs-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xs-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xs-0 {
    margin-left: 0;
  }

  .offset-xs-1 {
    margin-left: 8.33333333%;
  }

  .offset-xs-2 {
    margin-left: 16.66666667%;
  }

  .offset-xs-3 {
    margin-left: 25%;
  }

  .offset-xs-4 {
    margin-left: 33.33333333%;
  }

  .offset-xs-5 {
    margin-left: 41.66666667%;
  }

  .offset-xs-6 {
    margin-left: 50%;
  }

  .offset-xs-7 {
    margin-left: 58.33333333%;
  }

  .offset-xs-8 {
    margin-left: 66.66666667%;
  }

  .offset-xs-9 {
    margin-left: 75%;
  }

  .offset-xs-10 {
    margin-left: 83.33333333%;
  }

  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 767px) {
  .col-sm {
    max-width: 100%;
  }

  .col-sm-auto {
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 960px) {
  .col-md {
    max-width: 100%;
  }

  .col-md-auto {
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-lg {
    max-width: 100%;
  }

  .col-lg-auto {
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1400px) {
  .col-xlg {
    max-width: 100%;
  }

  .col-xlg-auto {
    width: auto;
    max-width: none;
  }

  .col-xlg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xlg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xlg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xlg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xlg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xlg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xlg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xlg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xlg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xlg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xlg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xlg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xlg-0 {
    margin-left: 0;
  }

  .offset-xlg-1 {
    margin-left: 8.33333333%;
  }

  .offset-xlg-2 {
    margin-left: 16.66666667%;
  }

  .offset-xlg-3 {
    margin-left: 25%;
  }

  .offset-xlg-4 {
    margin-left: 33.33333333%;
  }

  .offset-xlg-5 {
    margin-left: 41.66666667%;
  }

  .offset-xlg-6 {
    margin-left: 50%;
  }

  .offset-xlg-7 {
    margin-left: 58.33333333%;
  }

  .offset-xlg-8 {
    margin-left: 66.66666667%;
  }

  .offset-xlg-9 {
    margin-left: 75%;
  }

  .offset-xlg-10 {
    margin-left: 83.33333333%;
  }

  .offset-xlg-11 {
    margin-left: 91.66666667%;
  }
}

[class*="__container"] {
  width: 100%;
  padding-right: false/1;
  padding-left: false/1;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 600px) {
  [class*="__container"] {
    max-width: 600px;
  }
}

@media (min-width: 767px) {
  [class*="__container"] {
    max-width: 780px;
  }
}

@media (min-width: 960px) {
  [class*="__container"] {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  [class*="__container"] {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  [class*="__container"] {
    max-width: 1400px;
  }
}

.mastheader {
  background: #ECF2F6;
  padding-top: 40px;
  font-family: 'Intro';
  font-style: normal;
  position: relative;
}

.mastheader:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1333px;
  height: 406px;
  background: url(/images/top-frame.png?07d8fc5fccf7f8cf0ea61f79b585d06b) top left;
  background-size: contain;
}

@media screen and (max-width: 959px) {
  .mastheader {
    padding-top: 117px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
  }

  .mastheader:before {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
}

.mastheader__top {
  position: relative;
}

.mastheader__top:before {
  content: "";
  width: 50%;
  max-width: 50%;
  height: 100%;
  right: 0;
  background: #002638;
  position: absolute;
}

.mastheader__top--menu {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 959px) {
  .mastheader__top--menu {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 9;
    margin-left: 25px;
  }

  .mastheader__top--menu:before {
    width: 0 !important;
  }
}

.mastheader__top--menu:before {
  content: '';
  position: absolute;
  width: 103px;
  background: inherit;
  height: 100%;
  left: -102px;
  top: 0;
}

.mastheader__top--menu .menu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mastheader__top--menu .menu__social {
  background: #fff;
  display: flex;
  padding-right: 10px;
  align-items: flex-end;
}

.mastheader__top--menu .menu__social img {
  margin-bottom: 3px;
}

.mastheader__top--menu .menu__link {
  display: flex;
  align-items: center;
  background: #002638;
}

.mastheader__top--menu .menu__link a {
  position: relative;
  font-size: 12px;
  line-height: 12px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFF;
  padding: 10px 30px;
  transition: 0.3s background ease;
}

@media screen and (max-width: 766px) {
  .mastheader__top--menu .menu__link a {
    padding: 10px;
  }
}

.mastheader__top--menu .menu__link a:hover {
  background: #B58756;
  transition: 0.3s background ease;
}

.mastheader__top--menu .menu__link a:hover:first-of-type:after {
  content: none;
}

.mastheader__top--menu .menu__link a:first-of-type:after {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  top: 5px;
  right: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}

.mastheader__top--menu .menu__link a img {
  margin-right: 5px;
  margin-top: -3px;
}

.mastheader__top--menu .menu__lang {
  display: flex;
  align-items: center;
  background: #002638;
}

.mastheader__top--menu .menu__lang a {
  font-size: 12px;
  line-height: 12px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFF;
  padding: 10px;
}

.mastheader__top--menu .menu__lang a.active {
  background: #B58756;
}

.mastheader__main {
  position: relative;
}

.mastheader__main:before {
  content: "";
  width: 100%;
  max-width: 50%;
  height: 100%;
  right: 0;
  background: #FFF;
  position: absolute;
}

.mastheader__main:after {
  content: '';
  display: block;
  width: 95%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #7F939D;
  z-index: 5;
}

@media screen and (max-width: 959px) {
  .mastheader__main:after {
    width: 100%;
  }
}

.mastheader__main--wrapper {
  background: #FFFFFF;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 35px 0 0px 96px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .mastheader__main--wrapper {
    padding: 30px 0 20px 30px;
  }
}

@media screen and (max-width: 959px) {
  .mastheader__main--wrapper {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 5px 20px;
    align-items: center;
    margin-left: 25px;
  }

  .mastheader__main--wrapper::before {
    width: 0 !important;
  }
}

@media screen and (max-width: 399px) {
  .mastheader__main--wrapper {
    padding: 5px;
  }
}

.mastheader__main--wrapper:before {
  content: '';
  position: absolute;
  width: 103px;
  background: inherit;
  height: 100%;
  left: -102px;
  top: 0;
}

.mastheader__main--logo {
  max-width: 245px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .mastheader__main--logo {
    max-width: 180px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 959px) {
  .mastheader__main--logo {
    max-width: 120px;
  }
}

.mastheader__main--menu {
  height: 59px;
}

@media screen and (max-width: 959px) {
  .mastheader__main--menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    background: #fff;
    right: 0;
    transform: translate(-100%);
    transition: 0.3s all ease;
    top: 117px;
    border-top: 2px solid #b58756;
    height: 100%;
  }
}

.mastheader__main--menu.active {
  transform: translate(0%);
  transition: 0.3s all ease;
}

@media screen and (max-width: 1199px) {
  .mastheader__main--menu {
    height: 39px;
  }
}

@media screen and (max-width: 959px) {
  .mastheader__main--menu {
    height: 178px;
  }
}

.mastheader__main--menu a {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: bold;
  color: #002638;
  padding: 41px 15px;
  margin: 0 25px;
  position: relative;
}

.mastheader__main--menu a.active {
  transition: 0.3s background ease;
  background-image: linear-gradient(180deg, #B58756 0%, #E1AB72 100%);
  color: #FFFFFF;
}

.mastheader__main--menu a:hover {
  transition: 0.3s background ease;
  background-image: linear-gradient(180deg, #037392 0%, #00516A 100%);
  color: #FFFFFF;
}

@media screen and (max-width: 1399px) {
  .mastheader__main--menu a {
    margin: 0 5px;
  }
}

@media screen and (max-width: 1199px) {
  .mastheader__main--menu a {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .mastheader__main--menu a {
    margin: 0;
    padding: 15px;
    text-align: center;
  }
}

#hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
}

@media screen and (max-width: 959px) {
  #hamburger {
    display: flex;
  }
}

#hamburger .line {
  fill: none;
  stroke: #B58756;
  stroke-width: 2;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#hamburger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

#hamburger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

#hamburger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

#hamburger.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

#hamburger.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

#hamburger.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mastfooter {
  padding: 64px 0 74px;
  background: #002638;
}

@media screen and (max-width: 766px) {
  .mastfooter {
    padding: 30px 0;
  }
}

@media screen and (max-width: 959px) {
  .mastfooter .desktop {
    display: none !important;
  }
}

.mastfooter .menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.mastfooter .menu a {
  padding: 13px 0;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 14px;
  align-items: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
}

.mastfooter .menu a:last-of-type {
  padding-bottom: 0;
}

@media screen and (max-width: 766px) {
  .mastfooter .menu a:last-of-type {
    padding-bottom: 15px;
  }
}

.mastfooter .menu a.linkedin {
  text-transform: inherit;
  font-size: 14px;
  line-height: 14px;
}

@media screen and (max-width: 766px) {
  .mastfooter .menu a.linkedin {
    padding-bottom: 30px;
  }
}

.mastfooter .menu a.linkedin img {
  margin-right: 10px;
}

.mastfooter .menu a:hover {
  color: #E1AB72;
}

.mastfooter .newsletter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.mastfooter .newsletter > div {
  width: 100%;
}

.mastfooter .newsletter .input-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 959px) {
  .mastfooter .newsletter .input-wrapper {
    margin-bottom: 30px;
  }
}

.mastfooter .newsletter .input-wrapper input {
  background: #00546B;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  color: #FFF;
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
  border-radius: 5px 0 0 5px;
}

.mastfooter .newsletter .input-wrapper button {
  border: 0;
  background: #FFF;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #002638;
  width: 55px;
  height: 40px;
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
  border-radius: 0 5px 5px 0;
}

.mastfooter .newsletter h3 {
  font-size: 14px;
  line-height: 14px;
  align-items: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
  margin-bottom: 20px;
  padding-top: 15px;
}

@media screen and (max-width: 959px) {
  .mastfooter .newsletter h3 {
    text-align: center;
  }
}

.mastfooter .newsletter a {
  padding: 13px 0;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 14px;
  align-items: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
  margin: auto;
  display: none;
}

@media screen and (max-width: 959px) {
  .mastfooter .newsletter a {
    display: block;
  }
}

.mastfooter .newsletter .copyright {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-style: normal;
  padding-top: 30px;
}

@media screen and (max-width: 959px) {
  .mastfooter .newsletter .copyright {
    text-align: center;
  }
}

.hero {
  background: #ffffff;
  position: relative;
}

.hero--404 .hero__wrapper {
  min-height: 630px;
  width: calc(100% - 17px);
}

@media screen and (max-width: 766px) {
  .hero--404 .hero__wrapper {
    min-height: 400px;
  }
}

.hero--404 .hero__bg {
  width: 1426px;
  background-position: 0 0;
}

@media screen and (max-width: 766px) {
  .hero .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}

.hero__wrapper {
  min-height: 460px;
  border-top: 1px solid #7F939D;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
}

@media screen and (max-width: 1199px) {
  .hero__wrapper {
    min-height: 360px;
  }
}

@media screen and (max-width: 959px) {
  .hero__wrapper {
    min-height: 280px;
  }
}

@media screen and (max-width: 766px) {
  .hero__wrapper {
    position: relative;
    display: block;
    padding: 0;
  }
}

@media screen and (max-width: 599px) {
  .hero__wrapper {
    position: relative;
    display: block;
    padding: 0;
  }
}

.hero__wrapper nav {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 6;
}

@media screen and (max-width: 599px) {
  .hero__wrapper nav {
    right: auto;
    left: 20px;
  }
}

.hero__wrapper nav .breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.hero__wrapper nav .breadcrumb li,
.hero__wrapper nav .breadcrumb li a {
  font-family: 'Intro';
  font-size: 19px;
  line-height: 24px;
  color: #002638;
}

.hero__wrapper nav .breadcrumb li {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.hero__wrapper nav .breadcrumb li + li:before {
  display: inline-block;
  width: 9px;
  height: 18px;
  padding-right: 1rem;
  padding-left: 1rem;
  color: #6c757d;
  content: "";
  background: url(/images/breadcrumb-arrow.svg?5f09ea409f63fdc4168d0c2021e0ad78) center no-repeat;
  background-size: 9px 18px;
}

.hero__wrapper nav .breadcrumb li a {
  font-weight: 400;
}

.hero__wrapper nav .breadcrumb li a:hover {
  font-weight: 700;
}

.hero__wrapper .content {
  text-align: right;
  padding: 100px 0 40px 0;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 766px) {
  .hero__wrapper .content.news-hero {
    margin-top: -130px;
  }
}

@media screen and (max-width: 959px) {
  .hero__wrapper .content {
    max-width: 350px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 766px) {
  .hero__wrapper .content {
    padding: 0 20px;
    max-width: 100%;
  }
}

.hero__wrapper .content h3 {
  font-family: 'Rage Italic Com';
  font-weight: normal;
  font-style: italic;
  font-size: 60px;
  line-height: 75px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #002638;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .hero__wrapper .content h3 {
    font-size: 50px;
    line-height: 55px;
  }
}

@media screen and (max-width: 766px) {
  .hero__wrapper .content h3 {
    font-size: 60px;
    line-height: 75px;
    display: block;
    text-align: center;
    margin-top: -90px;
  }
}

@media screen and (max-width: 399px) {
  .hero__wrapper .content h3.home-title {
    margin-top: -160px;
  }
}

.hero__wrapper .content__info {
  max-width: 474px;
  text-align: left;
  position: relative;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .hero__wrapper .content__info {
    margin-right: 0;
  }
}

@media screen and (max-width: 766px) {
  .hero__wrapper .content__info {
    margin: auto;
    text-align: center;
  }

  .hero__wrapper .content__info:after {
    width: 0 !important;
    height: 0 !important;
  }
}

.hero__wrapper .content__info:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 34px;
  height: calc(100% + 115px);
  top: -100px;
  left: -15px;
  z-index: 0;
}

.hero__wrapper .content__info.s-h:after {
  top: 0px;
  height: calc(100% + 15px);
}

.hero__wrapper .content__info.contact-us {
  margin-right: auto;
}

.hero__wrapper .content__info h4 {
  font-size: 29px;
  line-height: 34px;
  letter-spacing: 0.02em;
  color: #00546B;
  font-family: 'Roboto Condensed';
  font-weight: normal;
  font-style: normal;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero__wrapper .content__info p {
  margin: 0;
  font-size: 19px;
  line-height: 24px;
  color: #002638;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-style: normal;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .hero__wrapper .content__info p {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 766px) {
  .hero__wrapper .content__info p {
    font-size: 19px;
    line-height: 24px;
  }
}

.hero__wrapper .layout {
  position: absolute;
  left: -363px;
  max-height: 414px;
  top: 0;
  border-top: 1px solid #7F939D;
  z-index: 4;
}

@media only screen and (min-width: 1635px) {
  .hero__wrapper .layout {
    left: -307px;
    top: 0;
    width: 349px;
  }
}

@media only screen and (min-width: 1829px) {
  .hero__wrapper .layout {
    left: -328px;
    top: 0;
    width: 379px;
    border: none;
  }
}

@media screen and (max-width: 959px) {
  .hero__wrapper .layout {
    width: 230px;
    left: -155px;
  }
}

.hero__bg {
  position: absolute;
  width: 1125px;
  height: 100%;
  top: 1px;
  left: -73px;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 959px) {
  .hero__bg {
    background-position-x: -330px;
  }
}

@media screen and (max-width: 766px) {
  .hero__bg {
    background-position-x: -445px;
  }
}

@media screen and (max-width: 399px) {
  .hero__bg.active-equity {
    background-position-y: 61px !important;
    background-position-x: -124px !important;
  }
}

@media screen and (max-width: 766px) {
  .hero__bg .bg_overlay {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(transparent, transparent, rgba(255, 255, 255, 0.5));
  }
}

@media screen and (max-width: 1399px) {
  .hero__bg {
    background-position: -250px 0%;
  }
}

@media screen and (max-width: 1199px) {
  .hero__bg {
    background-position: -360px 0%;
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .hero__bg {
    background-position: -460px 0%;
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .hero__bg {
    left: 0;
  }
}

@media screen and (max-width: 766px) {
  .hero__bg {
    left: 0;
    background-position: top;
    position: relative;
    width: 100%;
    height: 400px;
  }
}

.hero--active-equity .hero__wrapper .content {
  padding-top: 211px;
}

@media screen and (max-width: 1399px) {
  .hero--active-equity .hero__wrapper .content {
    padding-top: 330px;
  }
}

@media screen and (max-width: 766px) {
  .hero--active-equity .hero__wrapper .content {
    padding-top: 300px;
  }
}

.hero--active-equity .hero__wrapper .content__info:after {
  content: none;
}

.hero--active-equity .hero__wrapper .hero__bg {
  background-position: top 0 center;
}

@media screen and (max-width: 1399px) {
  .hero--active-equity .hero__wrapper .hero__bg {
    background-position: top center;
  }
}

@media screen and (max-width: 959px) {
  .hero--active-equity .hero__wrapper .hero__bg {
    background-position-x: -330px;
  }
}

@media screen and (max-width: 766px) {
  .hero--active-equity .hero__wrapper .hero__bg {
    background-position-x: -445px !important;
    background-size: contain;
    height: 300px;
    background-position: center;
  }
}

.hero-single {
  padding: 124px 0 65px;
  min-height: 414px;
  background: #fff;
}

@media screen and (max-width: 959px) {
  .hero-single {
    padding: 90px 0 65px;
  }
}

.hero-single h1 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: 300;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B58756;
  max-width: 854px;
  width: 100%;
  margin: 0 auto 73px;
}

.hero-single h1 strong {
  font-weight: 400;
}

.hero-single .date {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  padding: 9px 5px 8px;
  text-align: center;
  border-top: 1px solid #002638;
  border-bottom: 1px solid #002638;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002638;
}

.news-teaser {
  background: #ECF2F6;
  position: relative;
  padding-bottom: 43px;
}

.news-teaser:before {
  content: "";
  width: 25%;
  height: 40px;
  left: 0;
  background: #00546B;
  position: absolute;
}

.news-teaser .shape {
  position: absolute;
  right: 0;
  max-width: 414px;
  height: 83px;
  top: -40px;
}

@media screen and (max-width: 1199px) {
  .news-teaser .shape {
    max-width: 300px;
    height: 60px;
    top: -30px;
  }
}

.news-teaser .title {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed';
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: #00546B;
}

.news-teaser .col-xs-12:not(:first-child) .card p {
  max-width: 273px;
}

@media screen and (max-width: 766px) {
  .news-teaser .col-xs-12:not(:first-child) .card p {
    max-width: 100%;
  }
}

.news-teaser .card {
  margin-bottom: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-teaser .card:hover .img::before {
  opacity: 1;
}

.news-teaser .card:hover h3,
.news-teaser .card:hover h2 {
  padding-left: 25px;
}

.news-teaser .card .img {
  width: 100%;
  height: 185px;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-teaser .card .img::after {
  position: absolute;
  content: '';
  height: 8px;
  width: 100%;
  bottom: 0;
}

.news-teaser .card .img.normal-article::after {
  background-color: #DAEAE1;
}

.news-teaser .card .img.normal-article::before {
  background-color: #DAEAE1;
}

.news-teaser .card .img.research-article::after {
  background-color: #B58756;
}

.news-teaser .card .img.research-article::before {
  background-color: #B58756;
}

.news-teaser .card .img.insights-article::after {
  background-color: #002638;
}

.news-teaser .card .img.insights-article::before {
  background-color: #002638;
}

.news-teaser .card .img.review-article::after {
  background-color: #00546B;
}

.news-teaser .card .img.review-article::before {
  background-color: #00546B;
}

.news-teaser .card .img::before {
  position: absolute;
  content: '';
  height: 60px;
  width: 5px;
  bottom: -25px;
  left: 15px;
  opacity: 0;
  transition: opacity .4s;
}

@media screen and (max-width: 1399px) {
  .news-teaser .card .img {
    height: 152px;
  }
}

@media screen and (max-width: 1199px) {
  .news-teaser .card .img {
    height: 116px;
  }
}

@media screen and (max-width: 959px) {
  .news-teaser .card .img {
    height: 212px;
  }
}

@media only screen and (max-width: 414px) {
  .news-teaser .card .img {
    height: 227px;
  }
}

@media only screen and (max-width: 375px) {
  .news-teaser .card .img {
    height: 203px;
  }
}

@media only screen and (max-width: 320px) {
  .news-teaser .card .img {
    height: 172px;
  }
}

.news-teaser .card h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  transition: all .4s;
}

.news-teaser .card h2.review {
  color: #00546B;
}

.news-teaser .card h2.research {
  color: #B58756;
}

.news-teaser .card h2.insights {
  color: #002638;
}

.news-teaser .card h3 {
  font-family: 'Intro';
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 1;
  transition: all .4s;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-teaser .card .article-title {
  margin-top: 13px;
  height: 120px;
  padding-bottom: 40px;
  border-bottom: 1px solid #7F939D;
  transition: all .4s;
}

.news-teaser .card span {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #B58756;
  padding-left: 10px;
  text-align: right;
}

.news-teaser .card .btn {
  margin: 10px 0 10px 8px;
}

.news-teaser button {
  border: 1px solid #00546B;
  display: flex;
  padding: 6px 100px;
  margin: auto;
  position: relative;
  cursor: pointer;
}

.news-teaser button span {
  font-family: 'IntroLight';
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00546B;
  margin: auto;
}

.news-teaser button img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.info {
  padding: 80px 0 60px 0;
}

@media screen and (max-width: 766px) {
  .info {
    padding: 30px 0 30px 0;
  }
}

.info .title {
  font-family: 'Rage Italic Com';
  font-weight: normal;
  font-style: italic;
  margin: 0;
  margin-bottom: 3px;
  text-align: right;
  font-size: 40px;
  line-height: 50px;
  align-items: center;
  letter-spacing: -0.03em;
  color: #002638;
  display: block;
}

@media screen and (max-width: 959px) {
  .info .title {
    text-align: left;
  }
}

.info p {
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-style: normal;
  margin: 0;
  font-size: 17px;
  line-height: 24px;
  text-align: right;
  color: #002638;
  margin-bottom: 5px;
  max-width: 540px;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .info p {
    text-align: left;
    max-width: 100%;
  }
}

.info p strong {
  font-weight: 400;
  line-height: 24px;
}

.info p:last-of-type {
  font-size: 19px;
  line-height: 35px;
}

.info p a {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-size: 19px;
  text-align: right;
  color: #002638;
  position: relative;
}

.info p a:after,
.info p a:before {
  content: '';
  width: 0;
  height: 1px;
  background: #002638;
  position: absolute;
  left: 0;
}

.info p a:after {
  bottom: -5px;
}

.info p a:before {
  top: -5px;
}

.info p a:hover {
  color: #B58756;
  transition: 0.3s all ease;
}

.info p a:hover:after,
.info p a:hover:before {
  background: #B58756;
  width: 100%;
}

.info .col-md-6:nth-child(2) {
  display: flex;
}

.info .img-wrapper {
  position: relative;
}

@media screen and (max-width: 1199px) {
  .info .img-wrapper {
    display: flex;
  }
}

.info .img-wrapper:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 84px;
  top: -39px;
  left: 173px;
  background: #E3F1E9;
}

@media screen and (max-width: 1199px) {
  .info .img-wrapper:before {
    top: 35px;
  }
}

@media screen and (max-width: 959px) {
  .info .img-wrapper:before {
    display: none;
  }
}

.info .img-wrapper a {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}

.info img {
  width: 100%;
  height: auto;
  margin-top: 17px;
}

@media screen and (max-width: 766px) {
  .info img {
    margin-top: 20px;
  }
}

.offer {
  padding: 103px 0 41px 0;
  background: #F7F0E8;
}

@media screen and (max-width: 766px) {
  .offer {
    padding: 30px 0;
  }
}

.offer .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B58756;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  justify-content: center;
  text-align: center;
  position: relative;
  top: -163px;
  margin-bottom: -100px;
}

@media screen and (max-width: 766px) {
  .offer .title h3 {
    top: 0px;
    margin-bottom: 0px;
  }
}

.offer .card {
  position: relative;
  margin-bottom: 49px;
  min-height: 255px;
}

.offer .card:after {
  content: "";
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 0;
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.offer .card p {
  font-family: 'Rage Italic Com';
  font-weight: normal;
  font-style: italic;
  margin: 0 auto;
  font-size: 32px;
  line-height: 34px;
  text-align: center;
  color: #B58756;
  position: relative;
  z-index: 1;
  max-width: 350px;
}

.offer img {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offer h3 {
  margin-top: 25px;
  margin-bottom: 5px;
  font-family: 'Roboto Condensed';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #002638;
}

.offer p {
  font-family: AstoriaRoman;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #002638;
  width: 100%;
  margin: 0 auto;
  max-width: 338px;
}

@media screen and (max-width: 1199px) {
  .offer p {
    width: 250px;
  }
}

@media screen and (max-width: 959px) {
  .offer p {
    margin-bottom: 50px;
    width: 300px;
  }
}

.link {
  font-family: 'Intro';
  font-weight: bold;
  font-style: normal;
  padding: 35px 0 70px 0;
}

@media screen and (max-width: 959px) {
  .link {
    padding: 25px 0 70px 0;
  }
}

.link a {
  height: 172px;
  border-bottom: 2px solid rgba(0, 84, 107, 0.3);
  font-size: 26px;
  line-height: 26px;
  letter-spacing: 0.15em;
  color: #002638;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s all ease;
}

@media screen and (max-width: 959px) {
  .link a {
    height: 75px;
  }
}

.link a span {
  color: #002638;
  font-size: 17px;
  line-height: 17px;
  display: inline-block;
}

.link a.active {
  color: #B58756;
  border-bottom: 2px solid #B58756;
}

.link a.active span {
  color: #B58756;
}

.link a:hover {
  color: #B58756;
  border-bottom: 2px solid #B58756;
}

.link a:hover span {
  color: #B58756;
}

.error-page {
  padding: 75px 0;
}

.error-page .row {
  align-items: flex-end;
}

@media screen and (max-width: 766px) {
  .error-page {
    padding: 30px 0;
  }
}

.error-page h1 {
  font-size: 40px;
  line-height: 47px;
  display: flex;
  align-items: center;
  color: #002638;
  font-family: 'Rage Italic Com';
  font-weight: normal;
  font-style: italic;
  text-align: right;
  width: 100%;
  justify-content: flex-end;
  margin-bottom: 3px;
}

.error-page p {
  font-size: 19px;
  line-height: 24px;
  font-family: 'Roboto Condensed';
  font-weight: normal;
  font-style: normal;
  text-align: right;
  color: #002638;
  font-weight: 300;
  margin: 0;
}

.error-page .btn--bordered {
  width: 100%;
  max-width: 447px;
  padding: 10px 50px 7px;
}

.vtabs {
  padding: 62px 0 97px 0;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .vtabs {
    padding: 30px 0;
  }
}

.vtabs.vtabs--solutions .title h3 {
  margin-left: 8px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .vtabs.vtabs--solutions .title h3 {
    margin: auto;
  }
}

.vtabs.vtabs--solutions .vtabs__wrapper .tabs .content p:first-child {
  position: relative;
  z-index: 0;
}

.vtabs.vtabs--solutions .vtabs__wrapper .tabs .content p:first-child:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: -12px;
  background: #fff;
  z-index: -1;
  top: -9px;
}

.vtabs .title {
  margin-bottom: -7px;
  display: flex;
}

@media screen and (max-width: 959px) {
  .vtabs .title {
    margin-bottom: 0;
  }
}

.vtabs .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  margin-left: 151px;
}

@media screen and (max-width: 1199px) {
  .vtabs .title h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 959px) {
  .vtabs .title h3 {
    margin-left: 0;
    margin: auto;
  }
}

.vtabs__wrapper {
  display: flex;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper {
    flex-direction: column;
  }
}

.vtabs__wrapper nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  color: #6C5D5D;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
  width: 341px;
  margin-top: 42px;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper nav {
    width: 100%;
  }
}

.vtabs__wrapper nav a {
  position: relative;
  width: 100%;
  cursor: pointer;
  color: #002638;
  padding: 10px 0;
  text-align: left;
  font-family: 'Intro';
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.vtabs__wrapper nav a:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper nav a {
    text-align: center;
    padding-left: 10px;
  }
}

.vtabs__wrapper nav a:after {
  content: "";
  width: 0;
  height: 100%;
  background: #ecf2f6;
  position: absolute;
  left: -100%;
  top: 0;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper nav a:after {
    content: none;
  }
}

.vtabs__wrapper nav a:hover,
.vtabs__wrapper nav a.selected {
  background: #ECF2F6;
  position: relative;
  font-weight: 700;
}

.vtabs__wrapper nav a:hover:after,
.vtabs__wrapper nav a.selected:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ecf2f6;
  position: absolute;
  left: -100%;
  top: 0;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper nav a:hover:after,
  .vtabs__wrapper nav a.selected:after {
    content: none;
  }
}

.vtabs__wrapper .tabs {
  width: 100%;
  background: #ECF2F6;
  position: relative;
}

.vtabs__wrapper .tabs:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ecf2f6;
  position: absolute;
  right: -100%;
  top: 0;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper .tabs:after {
    content: none;
  }
}

.vtabs__wrapper .tabs.solutions .content > div {
  padding: 35px 15px 15px 35px;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper .tabs.solutions .content > div {
    padding: 15px;
  }
}

.vtabs__wrapper .tabs .content {
  color: #002638;
  transition: opacity 0.1s linear 0s;
  display: flex;
  width: 100%;
  position: relative;
}

.vtabs__wrapper .tabs .content h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.vtabs__wrapper .tabs .content h3:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  left: -11px;
  background: #fff;
  z-index: -1;
  top: -7px;
}

.vtabs__wrapper .tabs .content p {
  font-size: 18px;
  line-height: 19px;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
  color: #002638;
}

.vtabs__wrapper .tabs .content img {
  max-width: 305px;
  margin-left: 25px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 47px;
}

@media screen and (max-width: 1199px) {
  .vtabs__wrapper .tabs .content img {
    margin-left: 0;
    width: 100%;
    margin: 0 auto;
  }
}

.vtabs__wrapper .tabs .content > div {
  padding: 47px 15px 15px 35px;
}

@media screen and (max-width: 959px) {
  .vtabs__wrapper .tabs .content > div {
    padding: 15px;
  }
}

.vtabs__wrapper .tabs .content div > ul.last-list > li {
  padding-left: 31px;
}

.vtabs__wrapper .tabs .content div > ul.last-list > li strong {
  margin-left: -28px;
}

.vtabs__wrapper .tabs .content div > ul > li {
  padding-left: 39px;
}

@media screen and (max-width: 599px) {
  .vtabs__wrapper .tabs .content div > ul > li {
    padding-left: 30px;
  }
}

.vtabs__wrapper .tabs .content div > ul:first-child > li:first-child {
  z-index: 1;
}

.vtabs__wrapper .tabs .content div > ul:first-child > li:first-child:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: -12px;
  background: #fff;
  z-index: -1;
  top: -9px;
}

.vtabs__wrapper .tabs .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vtabs__wrapper .tabs .content ul li {
  font-family: AstoriaRoman;
  font-size: 18px;
  line-height: 19px;
  font-weight: normal;
  font-style: normal;
  color: #002638;
  margin-bottom: 18px;
  position: relative;
}

.vtabs__wrapper .tabs .content ul li:before {
  content: '';
  min-width: 25px;
  width: 25px;
  height: 1px;
  background: #B58756;
  display: block;
  position: absolute;
  left: 3px;
  top: 9px;
}

@media screen and (max-width: 599px) {
  .vtabs__wrapper .tabs .content ul li:before {
    width: 16px;
    min-width: 16px;
  }
}

.vtabs__wrapper .tabs .content ul li ul {
  width: 100%;
  padding-top: 19px;
}

.vtabs__wrapper .tabs .content ul li ul li {
  padding-left: 36px;
}

@media screen and (max-width: 599px) {
  .vtabs__wrapper .tabs .content ul li ul li {
    padding-left: 25px;
  }
}

.vtabs__wrapper .tabs .content ul li ul li:before {
  background: #B58756;
  left: 0;
}

.vtabs__wrapper .tabs .content ul.last-list > li {
  padding-left: 28px;
}

.vtabs__wrapper .tabs .content ul.last-list > li:before {
  background: transparent;
  width: 0;
  height: 0;
}

.vtabs__wrapper .tabs .content.visible {
  display: flex !important;
}

@media screen and (max-width: 1199px) {
  .vtabs__wrapper .tabs .content.visible {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    width: 100%;
    flex-direction: column;
  }

  .vtabs__wrapper .tabs .content.visible img {
    margin: auto !important;
  }
}

@media screen and (max-width: 766px) {
  .vtabs__wrapper .tabs .content.visible img {
    width: 100%;
    height: auto;
  }
}

.vtabs.green {
  margin-bottom: 50px;
}

.vtabs.green .vtabs__wrapper nav a:hover,
.vtabs.green .vtabs__wrapper nav a.selected {
  font-weight: 400;
}

.vtabs.green .vtabs__wrapper nav a:not(:last-child) {
  margin-bottom: 20px;
}

.vtabs.green .vtabs__wrapper .tabs .content img {
  margin-left: 37px;
}

.vtabs.green .title h3 {
  color: #88B7AB;
}

.vtabs.green .vtabs__wrapper nav a:hover,
.vtabs.green .vtabs__wrapper nav a.selected {
  background: #E3F1E9;
}

.vtabs.green .vtabs__wrapper nav a:hover,
.vtabs.green .vtabs__wrapper nav a.selected:after {
  background: #E3F1E9;
}

.vtabs.green .vtabs__wrapper nav a:hover,
.vtabs.green .vtabs__wrapper nav a:hover:after {
  background: #E3F1E9;
}

.vtabs.green .vtabs__wrapper .tabs {
  background: #E3F1E9;
}

.vtabs.green .vtabs__wrapper .tabs:after {
  background: #E3F1E9;
}

.vtabs.green .vtabs__wrapper nav a {
  padding: 8px 0 2px;
}

.t1 {
  background: #F5EBDE;
  padding-top: 30px;
}

.t1 .img {
  width: 100%;
  height: auto;
}

.t1 .about-us-img {
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .t1.about-us .row .col-md-6 {
    display: flex;
  }

  .t1.about-us .row .col-md-6 img {
    height: auto;
    margin: auto;
  }

  .t1.about-us .row .col-md-6 .content {
    margin: auto;
  }
}

.t1.t1--solutions {
  margin-top: 148px;
}

@media screen and (max-width: 959px) {
  .t1.t1--solutions .col-md-6 img {
    margin: auto;
  }

  .t1.t1--solutions .col-md-6 .content {
    margin: auto;
  }
}

.t1.t1--solutions .title {
  top: -65px;
}

@media screen and (max-width: 1399px) {
  .t1.t1--solutions .title {
    top: -73px;
  }
}

@media screen and (max-width: 1199px) {
  .t1.t1--solutions .title {
    top: -142px;
  }
}

@media screen and (max-width: 959px) {
  .t1.t1--solutions .title {
    top: -59px;
  }
}

@media screen and (max-width: 766px) {
  .t1.t1--solutions .title {
    top: -76px;
  }
}

.t1.t1--solutions .title + img {
  margin-top: 18px;
}

.t1.t1--active-equity {
  margin-top: 143px;
  margin-bottom: 100px;
  background: #E3F1E9;
  position: relative;
}

@media screen and (max-width: 959px) {
  .t1.t1--active-equity .container .row img {
    margin: auto;
  }

  .t1.t1--active-equity .container .row .content {
    margin: auto;
    text-align: center;
  }
}

.t1.t1--active-equity .container .row {
  padding-bottom: 0;
}

@media screen and (max-width: 959px) {
  .t1.t1--active-equity .container .row {
    padding-bottom: 30px;
  }
}

.t1.t1--active-equity .title {
  width: 100%;
}

.t1.t1--active-equity .title h3 {
  color: #88B7AB;
}

.t1.t1--active-equity .content {
  width: 100%;
  max-width: 583px;
}

.t1.t1--active-equity .content p:first-child {
  position: relative;
  z-index: 1;
}

.t1.t1--active-equity .content p:first-child:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  left: -8px;
  background: #fff;
  z-index: -1;
  top: -8px;
}

.t1.t1--active-equity .superposed-container {
  position: absolute;
  background-color: #88B7AB;
  padding: 30px 60px;
  max-width: 650px;
  bottom: -55px;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 1399px) {
  .t1.t1--active-equity .superposed-container {
    bottom: -115px;
  }
}

@media screen and (max-width: 1199px) {
  .t1.t1--active-equity .superposed-container {
    bottom: -155px;
  }
}

@media screen and (max-width: 959px) {
  .t1.t1--active-equity .superposed-container {
    width: 75%;
    padding: 20px 30px;
    bottom: -140px;
  }
}

@media screen and (max-width: 599px) {
  .t1.t1--active-equity .superposed-container {
    width: 90%;
  }
}

@media screen and (max-width: 427px) {
  .t1.t1--active-equity .superposed-container {
    bottom: -162px;
  }
}

@media screen and (max-width: 399px) {
  .t1.t1--active-equity .superposed-container {
    width: 90%;
    bottom: -185px;
  }
}

.t1.t1--active-equity .superposed-container p {
  font-family: AstoriaRoman;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
  position: relative;
}

.t1.t1--active-equity .superposed-container p::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 40px;
  background-color: #FFFFFF;
  top: 10px;
  left: -85px;
}

@media screen and (max-width: 959px) {
  .t1.t1--active-equity .superposed-container p::before {
    height: 40px;
    width: 2px;
    background-color: #FFFFFF;
    top: -65px;
    left: 50%;
  }
}

.t1.t1--single {
  padding-top: 49px;
  background: #ECF2F6;
}

.t1.t1--single .content h3 {
  color: #002638;
}

.t1.t1--single .content p {
  font-family: AstoriaRoman;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  color: #002638;
}

.t1.t1--single .content p:first-child {
  position: relative;
  z-index: 1;
}

.t1.t1--single .content p:first-child:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: -9px;
  background: #fff;
  z-index: -1;
  top: -8px;
}

.t1 .title {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 9px;
}

@media screen and (max-width: 959px) {
  .t1 .title {
    top: 20px;
  }
}

@media screen and (max-width: 959px) {
  .t1 .title.about-us {
    width: 300px;
    top: -41px;
  }
}

.t1 .title.tr {
  top: -65px;
}

@media screen and (max-width: 1199px) {
  .t1 .title.tr.short-h {
    top: -49px;
  }
}

@media screen and (max-width: 1199px) {
  .t1 .title.tr h3 {
    min-width: 900px;
  }
}

@media screen and (max-width: 959px) {
  .t1 .title.tr h3 {
    min-width: unset;
    width: unset;
    font-size: 38px;
  }
}

@media screen and (max-width: 766px) {
  .t1 .title.tr h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 766px) {
  .t1 .title.tr h3 {
    width: 350px;
    margin: auto;
    font-size: 22px;
    line-height: 25px;
  }
}

.t1 .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B58756;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  text-align: center;
  justify-content: center;
  min-width: 600px;
}

@media screen and (max-width: 1199px) {
  .t1 .title h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 959px) {
  .t1 .title h3 {
    min-width: unset;
  }
}

@media screen and (max-width: 766px) {
  .t1 .title h3 {
    min-width: inherit;
  }
}

.t1 .content {
  padding-top: 20px;
  max-width: 637px;
}

.t1 .content h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #B58756;
  margin-bottom: 10px;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 766px) {
  .t1 .content h3 {
    margin-top: 15px;
  }
}

.t1 .content h3:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  left: -11px;
  background: #fff;
  z-index: -1;
  top: -5px;
}

.t1 .content p {
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 19px;
  color: #002638;
  font-family: AstoriaRoman;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 766px) {
  .t1 .content p {
    margin-top: 40px;
  }
}

.t1 .content p:first-child {
  position: relative;
  z-index: 1;
}

.t1 .content p:first-child:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: -6px;
  background: #fff;
  z-index: -1;
  top: -10px;
}

.t2 {
  background: #FFFFFF;
  padding-top: 55px;
  padding-bottom: 11px;
}

.t2--solutions {
  padding-top: 8px;
}

@media screen and (max-width: 1199px) {
  .t2--solutions h2 {
    margin-bottom: 10px !important;
  }

  .t2--solutions .content {
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 959px) {
  .t2--solutions .col-md-3 {
    width: 50%;
  }
}

@media screen and (max-width: 766px) {
  .t2--solutions .col-md-3 {
    width: 100%;
  }
}

.t2 .img {
  width: 100%;
  height: auto;
}

.t2 .row {
  margin-bottom: 54px;
}

@media screen and (max-width: 959px) {
  .t2 .row img {
    margin: auto;
  }
}

@media screen and (max-width: 959px) {
  .t2 .row .content {
    margin: auto;
  }
}

@media screen and (max-width: 959px) {
  .t2 .row-offset > div:nth-child(3) {
    order: 1;
  }

  .t2 .row-offset > div:nth-child(2) {
    order: 2;
  }

  .t2 .row-offset > div:nth-child(1) {
    order: 3;
  }
}

@media screen and (max-width: 959px) {
  .t2 .row-offset img {
    margin: auto;
  }
}

.t2 .row-offset .content {
  padding-top: 124px;
}

@media screen and (max-width: 959px) {
  .t2 .row-offset .content {
    margin: auto;
  }
}

@media only screen and (max-width: 779px) {
  .t2 .row-offset .content {
    padding-top: 25px;
  }
}

.t2 h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #88B7AB;
  margin-bottom: -6px;
}

@media screen and (max-width: 1199px) {
  .t2 h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 779px) {
  .t2 h2 {
    margin-bottom: 54px;
  }
}

.t2 .content {
  width: 100%;
  max-width: 255px;
  padding-top: 5px;
}

@media only screen and (max-width: 779px) {
  .t2 .content {
    max-width: 100%;
    padding-top: 25px;
    margin-bottom: 24px;
  }
}

.t2 .content h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  margin-bottom: 10px;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.t2 .content h3:after {
  width: 29px;
  height: 29px;
  content: "";
  position: absolute;
  left: -8px;
  background: #E3F1E9;
  z-index: -1;
  top: -4px;
}

.t2 .content p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
}

.t3 {
  background: #ECF2F6;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 178px 0 132px;
}

@media screen and (max-width: 959px) {
  .t3 {
    min-height: inherit;
    padding: 30px 0;
  }
}

.t3 img {
  height: auto;
  margin: 0 auto;
}

.t3 .open-row {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 10%;
}

@media screen and (max-width: 959px) {
  .t3 .open-row {
    grid-template-columns: unset;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .t3 .open-row .col-md-6:first-child {
    padding: 50px 0;
  }
}

.t3 .open-row .col-md-6 {
  max-width: 100%;
}

.t3 .content {
  max-width: 583px;
}

.t3 .content .open-content {
  margin-bottom: 35px;
}

.t3 .content h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  margin-bottom: 10px;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.t3 .content h3:after {
  content: "";
  width: 31px;
  height: 31px;
  position: absolute;
  left: -8px;
  background: #fff;
  z-index: -1;
  top: -4px;
}

.t3 .content p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
}

.t4 {
  background: #FFF;
  margin-bottom: 50px;
  min-height: 381px;
  display: flex;
  align-items: center;
  padding: 79px 0 0;
}

@media screen and (max-width: 959px) {
  .t4 {
    min-height: inherit;
    padding: 30px 0;
  }
}

.t4.t4--news {
  padding-top: 57px;
  margin-bottom: 96px;
}

@media screen and (max-width: 766px) {
  .t4.t4--news {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 959px) {
  .t4.t4--news .row {
    flex-direction: column-reverse;
  }

  .t4.t4--news .row .col-md-6:nth-child(2) {
    margin-bottom: 30px;
  }
}

.t4.t4--news .content h3,
.t4.t4--news .content p {
  max-width: 440px;
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 959px) {
  .t4.t4--news .content h3,
  .t4.t4--news .content p {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }
}

.t4.t4--news .content h3 {
  margin-bottom: 9px;
}

.t4.t4--news .content p {
  margin-top: 0;
}

.t4.t4--news .youtube {
  width: 100%;
  height: 426px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .t4.t4--news .youtube {
    height: 350px;
  }
}

@media screen and (max-width: 959px) {
  .t4.t4--news .youtube {
    height: 400px;
  }
}

@media screen and (max-width: 766px) {
  .t4.t4--news .youtube {
    height: 370px;
  }
}

@media screen and (max-width: 599px) {
  .t4.t4--news .youtube {
    height: 350px;
  }
}

.t4.t4--news .youtube .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  cursor: pointer;
}

.t4.t4--news .youtube .play-button:hover svg {
  opacity: .9;
}

.t4.t4--news .youtube .play-button svg {
  opacity: 1;
  transition: .3s;
}

@media screen and (max-width: 1199px) {
  .t4.t4--news .youtube .play-button svg {
    width: 120px;
    height: 120px;
  }
}

.t4.t4--news .youtube img {
  position: absolute;
  width: 115%;
  max-width: 115%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1199px) {
  .t4.t4--news .youtube img {
    width: 150%;
    max-width: 150%;
  }
}

@media screen and (max-width: 766px) {
  .t4.t4--news .youtube img {
    width: 170%;
    max-width: 170%;
  }
}

.t4.t4--news .youtube iframe {
  width: 100%;
  height: 100%;
}

.t4 img {
  height: auto;
  margin: 0 auto;
}

.t4 .content {
  padding-top: 27px;
}

.t4 .content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #002638;
  margin-bottom: 10px;
  font-family: 'Rage Italic Com';
  font-weight: normal;
  font-style: italic;
  text-align: right;
  position: relative;
  z-index: 1;
}

.t4 .content p {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  color: #002638;
  font-family: 'Roboto Condensed';
  font-style: normal;
  text-align: right;
}

.t5 {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 71px 0 66px;
}

@media screen and (max-width: 959px) {
  .t5 {
    min-height: inherit;
    padding: 30px 0;
  }
}

.t5 h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 41px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B58756;
  text-align: center;
  margin-bottom: 56px;
}

@media screen and (max-width: 1199px) {
  .t5 h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

.t5 h3 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #B58756;
  margin-bottom: 10px;
}

.t5 .content p,
.t5 .content ul li,
.t5 table p,
.t5 table ul li {
  font-family: AstoriaRoman;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  font-weight: normal;
  font-style: normal;
}

.t5 .content p,
.t5 table p {
  margin-bottom: 24px;
}

.t5 .content ul,
.t5 table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t5 .content ul li,
.t5 table ul li {
  margin-bottom: 19px;
  position: relative;
  display: flex;
}

.t5 .content ul li:before,
.t5 table ul li:before {
  content: '';
  width: 25px;
  min-width: 25px;
  height: 1px;
  background: #B58756;
  margin-top: 9px;
  margin-right: 11px;
}

.t5 table {
  margin-bottom: 40px;
  margin-left: -5px;
  margin-right: -5px;
}

@media screen and (max-width: 959px) {
  .t5 table {
    margin-bottom: 0;
    display: block;
  }
}

@media screen and (max-width: 959px) {
  .t5 table tr {
    display: block;
  }
}

.t5 table td {
  vertical-align: top;
  width: 50%;
}

.t5 table td:first-child {
  padding-right: 12px;
}

@media screen and (max-width: 959px) {
  .t5 table td:first-child {
    padding-right: 0;
  }
}

.t5 table td + td {
  padding-left: 12px;
}

@media screen and (max-width: 959px) {
  .t5 table td + td {
    padding-left: 0;
  }
}

@media screen and (max-width: 959px) {
  .t5 table td {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}

.t5.t1--single {
  padding-bottom: 40px;
}

.t1.t5--in--house--research {
  margin-top: 250px;
  margin-bottom: 350px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research {
    margin-top: 400px;
    margin-bottom: 450px;
  }
}

@media screen and (max-width: 959px) {
  .t1.t5--in--house--research .row.active-equity {
    display: grid;
    grid-template-rows: auto auto;
  }

  .t1.t5--in--house--research .row.active-equity .col-md-6:nth-child(1) {
    order: 2;
    margin-top: -40px;
  }

  .t1.t5--in--house--research .row.active-equity .col-md-6:nth-child(2) {
    order: 1;
  }

  .t1.t5--in--house--research .row.active-equity .col-md-6 .title.tr {
    top: -63px;
    width: 100%;
  }

  .t1.t5--in--house--research .row.active-equity .col-md-6 .content {
    margin: auto;
  }
}

.t1.t5--in--house--research .col-md-6 {
  position: unset;
}

.t1.t5--in--house--research h3 {
  width: 800px;
}

.t1.t5--in--house--research ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t1.t5--in--house--research ul li {
  font-family: AstoriaRoman;
  margin-bottom: 19px;
  position: relative;
  display: flex;
  color: #002638;
}

.t1.t5--in--house--research ul li:before {
  content: '';
  width: 25px;
  min-width: 25px;
  height: 1px;
  background: #B58756;
  margin-top: 9px;
  margin-right: 11px;
}

.t1.t5--in--house--research .superposed-container {
  position: absolute;
  border: 1px solid #B58756;
  bottom: -185px;
  left: 50%;
  transform: translate(-50%);
  display: grid;
  grid-template-columns: 45% 45%;
  width: 1000px;
  -moz-column-gap: 10%;
       column-gap: 10%;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research .superposed-container {
    grid-template-columns: unset;
    width: 700px;
    gap: 0;
    bottom: -225px;
  }
}

@media screen and (max-width: 959px) {
  .t1.t5--in--house--research .superposed-container {
    width: 700px;
    bottom: -226px;
  }
}

@media screen and (max-width: 766px) {
  .t1.t5--in--house--research .superposed-container {
    width: 600px;
    bottom: -243px;
  }
}

@media screen and (max-width: 599px) {
  .t1.t5--in--house--research .superposed-container {
    width: 90%;
    bottom: -268px;
  }
}

@media screen and (max-width: 399px) {
  .t1.t5--in--house--research .superposed-container {
    width: 90%;
    bottom: -297px;
  }
}

.t1.t5--in--house--research .superposed-container p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 21px;
  color: #002638;
}

.t1.t5--in--house--research .superposed-container .left-container {
  margin-bottom: 0;
}

.t1.t5--in--house--research .superposed-container .left-container p {
  margin: 50px 0 50px 40px;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research .superposed-container .left-container p {
    margin: 0;
    padding: 20px 20px 20px 20px;
  }
}

.t1.t5--in--house--research .superposed-container .right-container {
  height: 100%;
  position: relative;
  display: flex;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research .superposed-container .right-container {
    flex-direction: column;
    justify-content: flex-end;
  }
}

.t1.t5--in--house--research .superposed-container .right-container p {
  margin: auto;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research .superposed-container .right-container p {
    margin: 0;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

.t1.t5--in--house--research .superposed-container .right-container img {
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .t1.t5--in--house--research .superposed-container .right-container img {
    position: unset;
  }
}

.research-banner {
  margin-bottom: 150px;
}

@media screen and (max-width: 599px) {
  .research-banner {
    margin-bottom: 275px;
  }
}

.research-banner .container {
  position: relative;
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .research-banner .container {
    background-image: url(/images/innovative_range-mobile.png?a7a831f03d23864a243967582bff63d4) !important;
    height: 240px;
  }
}

.research-banner .container .text-container {
  position: absolute;
  padding: 15px 50px;
  width: 760px;
  background-color: #B58756;
  top: -55px;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 959px) {
  .research-banner .container .text-container {
    width: 80%;
    bottom: -95px;
    top: unset;
  }
}

@media screen and (max-width: 599px) {
  .research-banner .container .text-container {
    padding: 15px 20px;
    bottom: -200px;
  }
}

.research-banner .container .text-container p {
  font-family: AstoriaRoman;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
}

.news {
  padding: 60px 0 120px 0;
  overflow: hidden;
  background: #ECF2F6;
  margin-top: 79px;
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .news {
    padding: 70px 0;
  }
}

.news .container {
  position: unset;
}

.news .news-row {
  display: flow-root;
}

.news .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
}

.news__wrapper {
  display: flex;
  flex-direction: column;
}

.news__wrapper nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  color: #6C5D5D;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  margin-bottom: 53px;
  width: calc( 100% - 1px);
}

@media screen and (max-width: 959px) {
  .news__wrapper nav {
    flex-direction: column;
  }

  .news__wrapper nav a {
    display: none;
    width: calc( 100% - 1px);
    height: 40px;
  }

  .news__wrapper nav a.selected {
    display: block;
    order: -1 !important;
    border: 1px solid #00546B;
    width: calc(100% + 2px);
    position: absolute;
    top: -40px;
  }

  .news__wrapper nav a.selected::after {
    content: url(/images/down-arrow.png?83f4613199c3580e6e885d53f0105a4b);
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
  }
}

.news__wrapper nav a {
  padding: 0 25px;
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.15em;
  font-family: 'Intro';
  color: rgba(0, 38, 56, 0.5);
  position: relative;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .news__wrapper nav a {
    padding: 10px 25px;
  }
}

.news__wrapper nav a:hover,
.news__wrapper nav a.selected {
  color: #002638;
  font-weight: bold;
}

.news__wrapper .tabs {
  width: 100%;
  background: #ECF2F6;
  padding: 0 25px;
}

@media screen and (max-width: 959px) {
  .news__wrapper .tabs {
    padding: 0;
  }
}

.news__wrapper .tabs:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ecf2f6;
  position: absolute;
  right: -100%;
  top: 0;
}

@media screen and (max-width: 959px) {
  .news__wrapper .tabs:after {
    content: none;
  }
}

.news__wrapper .tabs .content {
  opacity: 0;
  transform: scale(1.5);
  transition: 0.3s all ease;
  height: 0;
}

.news__wrapper .tabs .content .card {
  margin-bottom: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.news__wrapper .tabs .content .card:hover .img::before {
  opacity: 1;
}

.news__wrapper .tabs .content .card:hover h3,
.news__wrapper .tabs .content .card:hover h2 {
  padding-left: 25px;
}

.news__wrapper .tabs .content .card .img {
  width: 100%;
  height: 185px;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news__wrapper .tabs .content .card .img::after {
  position: absolute;
  content: '';
  height: 8px;
  width: 100%;
  bottom: 0;
}

.news__wrapper .tabs .content .card .img.normal-article::after {
  background-color: #DAEAE1;
}

.news__wrapper .tabs .content .card .img.normal-article::before {
  background-color: #DAEAE1;
}

.news__wrapper .tabs .content .card .img.research-article::after {
  background-color: #B58756;
}

.news__wrapper .tabs .content .card .img.research-article::before {
  background-color: #B58756;
}

.news__wrapper .tabs .content .card .img.insights-article::after {
  background-color: #002638;
}

.news__wrapper .tabs .content .card .img.insights-article::before {
  background-color: #002638;
}

.news__wrapper .tabs .content .card .img.review-article::after {
  background-color: #00546B;
}

.news__wrapper .tabs .content .card .img.review-article::before {
  background-color: #00546B;
}

.news__wrapper .tabs .content .card .img::before {
  position: absolute;
  content: '';
  height: 60px;
  width: 5px;
  bottom: -25px;
  left: 15px;
  opacity: 0;
  transition: opacity .4s;
}

@media screen and (max-width: 1399px) {
  .news__wrapper .tabs .content .card .img {
    height: 152px;
  }
}

@media screen and (max-width: 1199px) {
  .news__wrapper .tabs .content .card .img {
    height: 116px;
  }
}

@media screen and (max-width: 959px) {
  .news__wrapper .tabs .content .card .img {
    height: 212px;
  }
}

@media only screen and (max-width: 414px) {
  .news__wrapper .tabs .content .card .img {
    height: 227px;
  }
}

@media only screen and (max-width: 375px) {
  .news__wrapper .tabs .content .card .img {
    height: 203px;
  }
}

@media only screen and (max-width: 320px) {
  .news__wrapper .tabs .content .card .img {
    height: 172px;
  }
}

.news__wrapper .tabs .content .card h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  transition: all .4s;
}

.news__wrapper .tabs .content .card h2.review {
  color: #00546B;
}

.news__wrapper .tabs .content .card h2.research {
  color: #B58756;
}

.news__wrapper .tabs .content .card h2.insights {
  color: #002638;
}

.news__wrapper .tabs .content .card h3 {
  font-family: 'Intro';
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 1;
  transition: all .4s;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__wrapper .tabs .content .card .article-title {
  margin-top: 13px;
  height: 120px;
  padding-bottom: 40px;
  border-bottom: 1px solid #7F939D;
  transition: all .4s;
}

.news__wrapper .tabs .content .card span {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #B58756;
  padding-left: 10px;
  text-align: right;
}

.news__wrapper .tabs .content .card .btn {
  margin: 10px 0 10px 6px;
}

.news__wrapper .tabs .content.visible {
  opacity: 1;
  transform: scale(1);
  transition: 0.3s all ease;
  height: inherit;
}

span.pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 9999;
}

span.pagination nav ul.pagination {
  list-style: none;
  display: flex;
  padding: 0;
}

span.pagination nav ul.pagination .page-item {
  display: flex;
}

span.pagination nav ul.pagination .page-item:hover {
  cursor: pointer;
  color: #B58756;
}

span.pagination nav ul.pagination .page-item.active span {
  color: #B58756;
  font-weight: bold;
}

span.pagination nav ul.pagination .page-item span {
  font-family: 'Intro';
  margin: auto;
  width: 30px;
  font-size: 18px;
}

span.pagination nav ul.pagination .page-item span:hover {
  cursor: pointer;
  color: #B58756;
}

span.pagination nav ul.pagination .page-item a {
  margin: auto;
  width: 30px;
  letter-spacing: unset;
  padding: 0;
  font-size: 18px;
  font-weight: lighter;
  text-align: unset;
}

span.pagination nav ul.pagination .page-item a:hover {
  cursor: pointer;
  color: #B58756;
}

.rejoindre {
  margin: 80px 0;
}

@media screen and (max-width: 766px) {
  .rejoindre {
    margin-bottom: 30px 0;
  }
}

.rejoindre .title {
  margin-bottom: -6px;
}

@media screen and (max-width: 766px) {
  .rejoindre .title {
    margin-bottom: 0;
  }
}

.rejoindre .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  text-align: left;
  justify-content: flex-start;
  padding-left: 140px;
}

@media screen and (max-width: 766px) {
  .rejoindre .title h3 {
    padding-left: 0px;
    justify-content: center;
  }
}

.rejoindre .box {
  display: flex;
  position: relative;
}

.rejoindre .box:last-of-type {
  margin-bottom: 75px;
}

@media screen and (max-width: 766px) {
  .rejoindre .box:last-of-type {
    margin-bottom: 30px;
  }
}

.rejoindre .box:last-of-type .box--left,
.rejoindre .box:last-of-type .box--right {
  border-bottom: 0;
}

.rejoindre .box:last-of-type .box--left:before {
  border-bottom: 0;
}

@media screen and (max-width: 766px) {
  .rejoindre .box {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.rejoindre .box--left {
  background: #ECF2F6;
  width: 25%;
  padding: 50px 0;
  position: relative;
  border-bottom: 1px solid #00546B;
}

@media screen and (max-width: 766px) {
  .rejoindre .box--left {
    width: 100%;
    padding: 20px 0;
  }
}

.rejoindre .box--left:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ecf2f6;
  position: absolute;
  left: -100%;
  top: 0;
  border-bottom: 1px solid #00546B;
}

@media screen and (max-width: 766px) {
  .rejoindre .box--left:before {
    content: none;
    display: none;
  }
}

.rejoindre .box--left .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
}

.rejoindre .box--left .item img {
  margin-right: 15px;
}

.rejoindre .box--right {
  width: 75%;
  padding: 65px 35px;
  border-bottom: 1px solid #00546B;
}

@media screen and (max-width: 766px) {
  .rejoindre .box--right {
    border: none;
    width: 100%;
    padding: 20px 10px;
  }
}

.rejoindre .box--right h3,
.rejoindre .box--right p {
  width: 100%;
  max-width: 560px;
}

.rejoindre .box--right h3 {
  z-index: 1;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  position: relative;
  letter-spacing: 0.05em;
  color: #00546B;
}

.rejoindre .box--right h3:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  left: -5px;
  background: #ECF2F6;
  z-index: -1;
  top: -5px;
}

.rejoindre .box--right p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 21px;
  color: #002638;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
}

.team {
  background: #ECF2F6;
  padding: 75px 0 44px;
  margin-top: 107px;
}

@media screen and (max-width: 766px) {
  .team {
    margin-top: 50px;
    padding: 35px 0;
  }
}

.team .title h3 {
  font-size: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  text-align: left;
  justify-content: flex-start;
  padding-left: 206px;
  position: relative;
  top: -109px;
  margin-bottom: -50px;
}

@media screen and (max-width: 766px) {
  .team .title h3 {
    padding-left: 0px;
    justify-content: center;
    top: -30px;
    margin-bottom: -30px;
  }
}

.team .card {
  margin-bottom: 50px;
}

.team .card.m-b-50 {
  margin-bottom: 50px !important;
}

.team .card.expanded {
  background-image: url(/images/arrow-up-team.png?97d5674119827b8ba05f7d17bcd87b56);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 40px;
}

.team .card.expanded .profile-pic:after {
  opacity: 1;
}

.team .card .profile-pic {
  text-align: center;
  position: relative;
}

.team .card .profile-pic:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 156px;
  height: 156px;
  background: linear-gradient(0deg, rgba(0, 81, 106, 0.4), rgba(0, 81, 106, 0.4));
  border-radius: 50%;
  opacity: 0;
}

.team .card .profile-pic img {
  margin: 0 auto;
  width: 156px;
  height: 156px;
}

.team .card .name {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #00546B;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
}

.team .card .position {
  margin: 0;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 5px;
  text-align: center;
  color: #002638;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
}

.team .card .contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .card .linkedin {
  margin-top: 0;
}

.team .card .email {
  margin-top: 0px;
  margin-right: 10px;
}

.team .card .email:hover {
  text-decoration: underline;
}

.team .card--description {
  background: #00546B;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: 0.3s all ease;
  width: 100%;
  position: absolute;
  left: 0;
}

.team .card--description:after {
  content: "";
  position: absolute;
  left: -100vw;
  right: -100vw;
  width: 100000px;
  height: 1px;
  background: #00546B;
  top: 0;
}

.team .card--description > * {
  opacity: 0;
}

.team .card--description.active {
  padding: 75px 15px;
  height: auto;
  overflow: inherit;
  transition: 0.2s all ease;
  z-index: 1;
}

.team .card--description.active:after {
  height: 100%;
  z-index: 0;
}

.team .card--description.active > * {
  opacity: 1;
}

.team .card--description__inner {
  max-width: 731px;
  margin: 0 auto;
}

.team .card--description svg {
  position: relative;
  z-index: 1;
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}

.team .card--description .desc-title {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  z-index: 1;
  position: relative;
}

.team .card--description .desc-position {
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
  z-index: 1;
  position: relative;
}

.team .card--description .desc-desc {
  font-size: 18px;
  line-height: 19px;
  color: #FFFFFF;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
  z-index: 1;
  position: relative;
}

.team .btn--normal {
  margin-bottom: 6px;
}

.location {
  background: #00546B;
  height: 823px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .location {
    height: 500px;
  }
}

@media screen and (max-width: 766px) {
  .location {
    height: inherit;
  }
}

.location svg {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1399px) {
  .location svg {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1199px) {
  .location svg {
    width: 100%;
    height: 500px;
  }
}

@media screen and (max-width: 766px) {
  .location svg {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    right: 0px;
  }
}

.location__wrapper {
  background: #fff;
  padding: 29px 0 19px 100px;
  max-width: 665px;
}

@media screen and (max-width: 1199px) {
  .location__wrapper {
    max-width: 350px;
    padding: 15px 0 15px 30px;
  }
}

@media screen and (max-width: 766px) {
  .location__wrapper {
    max-width: 100%;
    position: relative;
    bottom: -15px;
    padding: 15px 15px 15px 15px;
    margin-top: -15px;
  }
}

.location__wrapper--item {
  padding: 17px 0 25px;
  border-bottom: 1px solid #7F939D;
}

.location__wrapper--item:last-of-type {
  border-bottom: 0;
}

.location__wrapper--item h4 {
  font-size: 24px;
  line-height: 34px;
  color: #002638;
  font-family: 'Roboto Condensed';
  font-weight: 400;
  font-style: normal;
}

.location__wrapper--item p {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-style: normal;
  color: #002638;
  margin-bottom: 1px;
}

.location__wrapper--item a {
  font-size: 20px;
  line-height: 24px;
  color: #00546B;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-style: normal;
}

.themes-wrapper {
  padding: 49px 0 14px;
  background: #ECF2F6;
}

.themes-wrapper h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  margin-bottom: 44px;
}

.themes-wrapper .card {
  margin-bottom: 69px;
}

.themes-wrapper .card .img {
  width: 100%;
  height: 185px;
  display: block;
  background-size: cover;
  background-position: center;
  margin-bottom: 17px;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper .card .img {
    height: 152px;
  }
}

@media screen and (max-width: 1199px) {
  .themes-wrapper .card .img {
    height: 116px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper .card .img {
    height: 212px;
  }
}

@media only screen and (max-width: 414px) {
  .themes-wrapper .card .img {
    height: 227px;
  }
}

@media only screen and (max-width: 375px) {
  .themes-wrapper .card .img {
    height: 203px;
  }
}

@media only screen and (max-width: 320px) {
  .themes-wrapper .card .img {
    height: 172px;
  }
}

.themes-wrapper .card h3,
.themes-wrapper .card p {
  padding-left: 6px;
}

.themes-wrapper .card h3 {
  font-family: 'Intro';
  font-weight: normal;
  font-style: normal;
  margin: 0 0px 10px 0px;
  padding-top: 5px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #00546B;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.themes-wrapper .card h3:after {
  width: 28px;
  height: 28px;
  content: "";
  position: absolute;
  left: 0;
  background: #fff;
  z-index: -1;
  top: 0;
}

.themes-wrapper .card p {
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.themes-wrapper .card .btn {
  margin: 10px 0;
}

.download-pr {
  padding: 14px 0 80px;
}

@media screen and (max-width: 766px) {
  .download-pr {
    padding: 0 0 80px;
  }
}

.download-pr__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  .download-pr__inner {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 599px) {
  .download-pr__inner {
    flex-wrap: nowrap;
  }
}

.download-pr__inner p,
.download-pr__inner form {
  display: inline-flex;
  width: auto;
}

.download-pr__inner p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002638;
  margin-right: 29px;
}

@media screen and (max-width: 959px) {
  .download-pr__inner p {
    margin: 11px 20px 10px;
  }
}

@media screen and (max-width: 599px) {
  .download-pr__inner p {
    margin-bottom: 30px !important;
    text-align: center;
  }
}

.download-pr__inner form {
  border-radius: 5px;
}

@media screen and (max-width: 599px) {
  .download-pr__inner form {
    width: 100% !important;
    flex-direction: column;
  }
}

.download-pr__inner form input[type="email"],
.download-pr__inner form input[type="text"] {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  padding: 0 19px;
  height: 40px;
  line-height: normal;
  letter-spacing: 0.15em;
  color: #ECF2F6;
  background: #00546B;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 287px;
}

.download-pr__inner form input[type="email"]::-moz-placeholder, .download-pr__inner form input[type="text"]::-moz-placeholder {
  text-align: center;
}

.download-pr__inner form input[type="email"]:-ms-input-placeholder, .download-pr__inner form input[type="text"]:-ms-input-placeholder {
  text-align: center;
}

.download-pr__inner form input[type="email"]::placeholder,
.download-pr__inner form input[type="text"]::placeholder {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .download-pr__inner form input[type="email"],
  .download-pr__inner form input[type="text"] {
    width: 100%;
    max-width: 287px;
  }
}

@media screen and (max-width: 599px) {
  .download-pr__inner form input[type="email"],
  .download-pr__inner form input[type="text"] {
    max-width: 100%;
    padding: 0 7px;
    border-radius: 5px;
    margin-bottom: 10px;
  }
}

.download-pr__inner form ::-webkit-input-placeholder {
  color: #ECF2F6;
}

.download-pr__inner form ::-moz-placeholder {
  color: #ECF2F6;
}

.download-pr__inner form :-ms-input-placeholder {
  color: #ECF2F6;
}

.download-pr__inner form :-moz-placeholder {
  color: #ECF2F6;
}

.download-pr__inner form button {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 17px 5px 20px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #002638;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .download-pr__inner form button {
    width: 125px;
    margin: auto;
    border-radius: 5px;
  }
}

.download-pr__inner form button:hover {
  opacity: .9;
}

.download-pr__inner form button span {
  padding-top: 2px;
}

.download-pr__inner form button svg {
  margin-left: 10px;
  margin-top: -1px;
}

.normal-article-header .container {
  display: flex;
  flex-direction: column;
  margin-bottom: 75px;
}

@media screen and (max-width: 1199px) {
  .normal-article-header .container {
    flex-direction: column;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }

  .normal-article-header .container > img {
    width: 70%;
  }
}

.normal-article-header .container h1 {
  position: relative;
  font-family: 'Intro' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 42px !important;
  line-height: 50px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #89B7AB !important;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .normal-article-header .container h1 {
    padding: 165px 0 30px 0 !important;
  }
}

@media screen and (max-width: 599px) {
  .normal-article-header .container h1 {
    font-size: 18px !important;
    line-height: 20px !important;
    padding: 60px 0 30px 0;
  }
}

.normal-article-header .container h1 div span p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #89B7AB;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  .normal-article-header .container h1 div span p {
    font-size: 30px !important;
    line-height: 30px !important;
  }
}

.normal-article-header .container h1::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 200px;
  bottom: 0;
  left: 50%;
  background-color: #002638;
  transform: translate(-50%);
}

.normal-article-header .container span {
  margin: auto;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002638;
}

.normal-article-teaser {
  margin-bottom: 75px;
}

@media screen and (max-width: 1199px) {
  .normal-article-teaser {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 959px) {
  .normal-article-teaser {
    margin-bottom: 50px !important;
  }
}

.normal-article-teaser .container {
  display: grid;
  grid-template-columns: 40% 60%;
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.normal-article-teaser .container .img-container {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.normal-article-teaser .container .img-container::after {
  content: '';
  position: absolute;
  height: 100px;
  width: 10px;
  background-color: #E3F1E9;
  left: 85px !important;
  bottom: -70px;
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container .img-container::after {
    display: none;
  }
}

.normal-article-teaser .container img {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container img {
    min-width: 100%;
  }
}

.normal-article-teaser .container .wave-container--holder {
  position: relative;
}

.normal-article-teaser .container .wave-container--holder .wave-container {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  top: 120px;
  left: -60px;
  z-index: 2;
  margin-left: -60px;
  margin-top: 140px;
}

@media screen and (max-width: 1199px) {
  .normal-article-teaser .container .wave-container--holder .wave-container {
    bottom: -95px;
    left: -100px;
  }
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container .wave-container--holder .wave-container {
    position: unset;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container .wave-container--holder .wave-container .text-container p {
    margin: 0;
  }
}

.normal-article-teaser .container .wave-container--holder .wave-container img {
  position: absolute;
  top: 80px;
  z-index: 0;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .normal-article-teaser .container .wave-container--holder .wave-container img {
    position: unset;
    width: 100%;
  }
}

.normal-article-teaser .container .wave-container--holder .wave-container p {
  position: relative;
  background-color: #F5EBDE;
  padding: 0;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .normal-article-teaser .container .wave-container--holder .wave-container p {
    padding: 25px !important;
    font-size: 18px;
  }
}

.normal-article-teaser .container .wave-container--holder .wave-container p p {
  position: relative;
  background-color: #F5EBDE;
  padding: 25px;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
}

@media screen and (max-width: 1199px) {
  .normal-article-teaser .container .wave-container--holder .wave-container p p {
    padding: 0 !important;
    font-size: 18px;
  }
}

.normal-article-teaser .container .wave-container--holder .wave-container p p::before {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #FFFF;
  top: 22px;
  left: 13px;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .normal-article-teaser .container .wave-container--holder .wave-container p p::before {
    top: -4px;
    left: -9px;
  }
}

@media screen and (max-width: 959px) {
  .normal-article-content {
    margin-bottom: 0;
  }
}

.normal-article-content .container {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 65px;
}

@media screen and (max-width: 959px) {
  .normal-article-content .container {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }
}

.normal-article-content .container .left-container {
  display: flex;
  flex-direction: column;
}

.normal-article-content .container .left-container img {
  height: 50px;
  width: 50px;
}

.normal-article-content .container .left-container p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 25px;
  color: #00546B;
}

@media screen and (max-width: 959px) {
  .normal-article-content .container .left-container p {
    margin: 0;
  }
}

.normal-article-content .container .right-container p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  margin-bottom: 30px;
}

.normal-article-content .container .right-container ul {
  list-style-type: none;
  padding: 20px 3.5em;
}

@media screen and (max-width: 959px) {
  .normal-article-content .container .right-container ul {
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}

.normal-article-content .container .right-container ul li {
  position: relative;
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  margin-bottom: 20px;
  padding: 0 !important;
}

.normal-article-content .container .right-container ul li::before {
  content: "";
  min-width: 25px;
  width: 25px;
  height: 1px;
  background: #B58756;
  display: block;
  position: absolute;
  left: -30px;
  top: 6px;
}

.normal-article-bttom {
  margin-bottom: 60px;
}

.normal-article-bttom .container {
  display: flex;
}

@media screen and (max-width: 1199px) {
  .normal-article-bttom .container {
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
  }
}

.normal-article-bttom .container .left-container {
  max-width: 50%;
}

@media screen and (max-width: 1199px) {
  .normal-article-bttom .container .left-container {
    max-width: unset;
    margin-bottom: 40px;
  }
}

.normal-article-bttom .container .left-container p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
}

.normal-article-bttom .container .right-container {
  margin: auto;
}

.normal-article-bttom .container .right-container p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #002638;
}

.shared-yellow-section {
  background-color: #F5EBDE;
  margin-bottom: 75px;
}

@media screen and (max-width: 599px) {
  .shared-yellow-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.shared-yellow-section .shared-section-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 50px 0;
}

@media screen and (max-width: 599px) {
  .shared-yellow-section .shared-section-content {
    width: 85%;
  }
}

.shared-yellow-section .shared-section-content h2 {
  margin: auto;
  margin-bottom: 40px;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.15em;
  color: #B58756;
}

@media screen and (max-width: 599px) {
  .shared-yellow-section .shared-section-content h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

.shared-yellow-section .shared-section-content p {
  position: relative;
  background-color: #F5EBDE;
  padding: 0;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p {
    padding: 25px !important;
    font-size: 18px;
  }
}

.shared-yellow-section .shared-section-content p p {
  position: relative;
  background-color: #F5EBDE;
  padding: 25px;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p p {
    padding: 0 !important;
    font-size: 18px;
  }
}

.shared-yellow-section .shared-section-content p p::before {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #FFFF;
  top: 22px;
  left: 13px;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p p::before {
    top: -4px;
    left: -9px;
  }
}

.content-table-section {
  margin-bottom: 65px;
}

.content-table-section .container h3 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 19px;
  color: #00546B;
  margin-bottom: 20px;
}

.content-table-section .container .content-table {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 10%;
}

@media screen and (max-width: 1199px) {
  .content-table-section .container .content-table {
    display: unset;
  }
}

.content-table-section .container .content-table span {
  font-family: 'Intro';
  font-style: normal;
  font-size: 17px;
  line-height: 22px;
  color: #00546B;
}

.content-table-section .container .content-table span.last {
  margin-bottom: 25px;
}

.content-table-section .container .content-table span.download-text {
  color: #FFFF !important;
}

.content-table-section .container .content-table p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #00546B;
  margin: 0 0 12px 0;
}

.content-table-section .container .content-table p.top {
  margin-top: 20px;
}

.content-table-section .container .content-table .left-content {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1199px) {
  .content-table-section .container .content-table .left-content {
    margin-bottom: 0 !important;
  }
}

.content-table-section .container .content-table .right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 1199px) {
  .content-table-section .container .content-table .right-content {
    display: block !important;
  }
}

@media screen and (max-width: 599px) {
  .content-table-section .container .content-table .right-content {
    display: flex;
    flex-direction: column;
  }

  .content-table-section .container .content-table .right-content .sub-content {
    margin-bottom: 30px;
  }
}

.reusable-article-header .container-title .insight {
  color: #002638;
}

.content-table-section.insight {
  margin-bottom: 130px;
}

.content-table-section.insight .container .content-table.insight {
  flex-wrap: wrap;
}

.content-table-section.insight .container .content-table.insight .left-content.insight {
  flex: 50;
}

.content-table-section.insight .container .content-table.insight .left-content.insight .left-info {
  margin-bottom: 60px;
}

.content-table-section.insight .container .content-table.insight .left-content.insight .left-info pa p {
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .content-table-section.insight .container .content-table.insight .left-content.insight .left-info {
    margin-bottom: 0;
  }
}

.content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner {
  margin-right: 50px;
}

.content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner.desktop {
  display: block;
}

.content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner.mobile {
  display: none;
}

@media screen and (max-width: 1199px) {
  .content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner.desktop {
    display: none;
  }

  .content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner.mobile {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner {
    margin-right: 0 !important;
  }

  .content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner form {
    flex-direction: column;
  }

  .content-table-section.insight .container .content-table.insight .left-content.insight .download-pr__inner form input {
    width: 100%;
  }
}

.content-table-section.insight .container .content-table.insight .right-content.insight {
  flex: 50;
  display: block;
}

@media screen and (max-width: 1199px) {
  .content-table-section.insight .container .content-table.insight .right-content.insight {
    margin-bottom: 60px;
  }
}

.content-table-section.insight .container .content-table.insight .right-content.insight img {
  height: 75px;
  width: 75px;
}

.content-table-section.insight .container .content-table.insight .right-content.insight h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 25px;
  color: #00546B;
  margin-bottom: 40px;
}

.content-table-section.insight .container .content-table.insight .right-content.insight p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  margin-bottom: 20px;
}

.content-table-section.insight .container .content-table.insight .right-content.insight p span {
  color: #002638;
  font-style: italic;
}

@media screen and (max-width: 959px) {
  .market-review-article-header {
    margin-top: 100px;
  }
}

.market-review-article-header p {
  margin: auto;
}

.market-review-article-header .container {
  display: flex;
  flex-direction: column;
}

.market-review-article-header .container .hero_bg {
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg {
    grid-template-columns: unset;
    grid-template-rows: 1fr 1fr;
  }
}

.market-review-article-header .container .hero_bg .left-bg {
  background-color: #DAEAE1;
  display: flex;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg .left-bg {
    height: 70px;
  }
}

.market-review-article-header .container .hero_bg .left-bg span {
  position: relative;
  margin: auto;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 21px;
  color: #002638;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg .left-bg span {
    font-size: 18px;
    line-height: 21px;
  }
}

.market-review-article-header .container .hero_bg .left-bg span::before {
  content: '';
  height: 40px;
  width: 1px;
  background-color: #002638;
  position: absolute;
  bottom: 55px;
  left: 50%;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg .left-bg span::before {
    bottom: 30px !important;
  }
}

.market-review-article-header .container .hero_bg .right-bg {
  background-color: #00546B;
  display: flex;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg .right-bg {
    height: 70px;
  }
}

.market-review-article-header .container .hero_bg .right-bg span {
  margin: auto;
  font-family: 'IntroLight';
  font-style: normal;
  font-weight: 300;
  font-size: 52px;
  line-height: 21px;
  color: #FFFFFF;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container .hero_bg .right-bg span {
    font-size: 32px;
    line-height: 21px;
  }
}

.market-review-article-header .container h1 {
  position: relative;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #89B7AB;
  text-align: center;
  padding: 100px 0 60px 0;
  max-width: 800px;
  margin: auto;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container h1 {
    font-size: 18px;
    line-height: 21px;
    padding: 60px 0 0px 0 !important;
  }
}

.market-review-article-header .container h1::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 200px;
  bottom: 0;
  left: 50%;
  background-color: #002638;
  transform: translate(-50%);
}

.market-review-article-header .container h1 div span p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #89B7AB;
}

@media screen and (max-width: 766px) {
  .market-review-article-header .container h1 div span p {
    font-size: 30px;
    line-height: 30px;
  }
}

.market-review-article-header .container h1 div p {
  text-align: center;
}

.market-review-article-header .container span {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002638;
}

.market-review-article-header .container span.art-date {
  margin: 10px auto auto auto;
}

.market-review-article-header .container.container-title {
  margin-bottom: 75px;
}

.market-review-section-1 {
  margin-bottom: 75px;
}

@media screen and (max-width: 766px) {
  .market-review-section-1 {
    margin-bottom: 40px;
  }
}

.market-review-section-1 .container {
  display: flex;
}

@media screen and (max-width: 766px) {
  .market-review-section-1 .container {
    flex-direction: column;
  }
}

.market-review-section-1 .container img {
  height: 20%;
}

.market-review-section-1 .container .yellow-waves {
  background-image: url(/images/yellow-section-waves.png?fe7b2e8c04586e973aba9be3e9a5a664);
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 766px) {
  .market-review-section-1 .container .yellow-waves {
    background-image: url(/images/yellow-section-waves-mobile.png?4570164b4169cfcc5fae3079ff7bbdf6);
    height: 50px;
    background-size: cover;
  }
}

.market-review-section-1 .container .yellow-container {
  padding: 45px 70px;
  background-color: #F5EBDE;
}

@media screen and (max-width: 1199px) {
  .market-review-section-1 .container .yellow-container {
    padding: 30px 45px;
  }
}

.market-review-section-1 .container .yellow-container p {
  position: relative;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
  z-index: 1;
}

.market-review-section-1 .container .yellow-container p p {
  position: relative;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
  z-index: 0;
  margin-bottom: 20px;
}

.market-review-section-1 .container .yellow-container p p::before {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #FFFF;
  top: -4px;
  left: -5px;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .market-review-section-1 .container .yellow-container p {
    font-size: 16px;
    line-height: 22px;
  }
}

.market-review-section-2 {
  margin-bottom: 120px;
}

@media screen and (max-width: 766px) {
  .market-review-section-2 {
    margin-bottom: 40px;
  }
}

.market-review-section-2 .container {
  display: grid;
  grid-template-columns: 30% 70%;
}

@media screen and (max-width: 766px) {
  .market-review-section-2 .container {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 1199px) {
  .market-review-section-2 .container .left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 766px) {
  .market-review-section-2 .container .left-container {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .market-review-section-2 .container .left-container img {
    height: 65px;
    width: 65px;
  }
}

.market-review-section-2 .container .left-container p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 25px;
  color: #00546B;
}

.market-review-section-2 .container .right-container {
  padding-left: 60px;
}

@media screen and (max-width: 766px) {
  .market-review-section-2 .container .right-container {
    padding-left: 0;
  }
}

.market-review-section-2 .container .right-container h3 {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
}

.market-review-section-2 .container .right-container p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
}

.market-review-section-3 {
  margin-bottom: 60px;
}

.market-review-section-3 .container {
  display: grid;
  grid-template-columns: 50% 35%;
  -moz-column-gap: 60px;
       column-gap: 60px;
}

@media screen and (max-width: 1199px) {
  .market-review-section-3 .container {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 1199px) {
  .market-review-section-3 .container .left-container {
    margin-bottom: 80px;
  }
}

.market-review-section-3 .container .left-container h3 {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  color: #002638;
}

.market-review-section-3 .container .left-container p {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
  padding-right: 100px;
}

@media screen and (max-width: 766px) {
  .market-review-section-3 .container .left-container p {
    padding-right: 0;
  }
}

.market-review-section-3 .container .left-container span {
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  color: #002638;
}

.form-section {
  background-color: #ECF2F6;
  margin-top: 40px;
}

.form-section .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 766px) {
  .form-section .container {
    flex-direction: column;
  }
}

.form-section .container .left-content {
  flex: 50%;
  display: flex;
}

.form-section .container .left-content .contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  padding: 65px 0;
}

.form-section .container .left-content .contact-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .form-section .container .left-content .contact-form .form-row {
    flex-direction: column;
  }
}

.form-section .container .left-content .contact-form .form-row .form-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-section .container .left-content .contact-form .form-row .form-col .label-container {
  display: flex;
  justify-content: space-between;
}

.form-section .container .left-content .contact-form .form-row .form-col label {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
  margin-bottom: 10px;
}

.form-section .container .left-content .contact-form .form-row .form-col label.error {
  font-size: 12px;
  line-height: 12px;
  color: red;
  margin-right: 0;
}

.form-section .container .left-content .contact-form .form-row .form-col input,
.form-section .container .left-content .contact-form .form-row .form-col textarea {
  background-color: #FFFF;
  border-radius: 2px;
  padding: 10px 15px;
}

.form-section .container .left-content .contact-form .form-row .form-col input.error,
.form-section .container .left-content .contact-form .form-row .form-col textarea.error {
  border: 1px solid red;
}

.form-section .container .left-content .contact-form .form-row .form-col input::-moz-placeholder, .form-section .container .left-content .contact-form .form-row .form-col textarea::-moz-placeholder {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #00546B;
  opacity: 0.2;
}

.form-section .container .left-content .contact-form .form-row .form-col input:-ms-input-placeholder, .form-section .container .left-content .contact-form .form-row .form-col textarea:-ms-input-placeholder {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #00546B;
  opacity: 0.2;
}

.form-section .container .left-content .contact-form .form-row .form-col input::placeholder,
.form-section .container .left-content .contact-form .form-row .form-col textarea::placeholder {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #00546B;
  opacity: 0.2;
}

.form-section .container .left-content .contact-form button {
  border: 1px solid #00546B;
  display: flex;
  padding: 6px 100px;
  margin: auto auto auto 0;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .form-section .container .left-content .contact-form button {
    padding: 6px 60px;
  }
}

.form-section .container .left-content .contact-form button input {
  font-family: 'IntroLight';
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00546B;
  margin: auto;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .form-section .container .left-content .contact-form button input {
    font-size: 15px;
  }
}

.form-section .container .left-content .contact-form button img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.form-section .container .right-content {
  flex: 50%;
  position: relative;
}

.form-section .container .right-content .location__wrapper {
  position: absolute;
  bottom: 0;
  width: 75%;
  height: 90%;
  margin-left: 100px;
}

@media screen and (max-width: 959px) {
  .form-section .container .right-content .location__wrapper {
    position: unset;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.themes-wrapper-section {
  display: flex;
  flex-direction: column;
}

.themes-wrapper-section h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00546B;
  margin-bottom: -7px;
}

@media screen and (max-width: 766px) {
  .themes-wrapper-section h2 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: -6px;
  }
}

.themes-wrapper-section .themes-wrapper {
  padding: 100px 0 100px 0;
}

@media screen and (max-width: 599px) {
  .themes-wrapper-section .themes-wrapper {
    padding: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row {
  margin-bottom: 200px;
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row.reversed {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row.normal {
    flex-direction: column;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row {
    margin-bottom: 100px;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6.image {
  flex: 0 0 55%;
  max-width: unset;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6.text {
  flex: 0 0 45%;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content {
  padding: 25px;
  opacity: 0;
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content {
    opacity: 1;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-1 {
  margin-right: 45px;
  border: 1px solid #B58756;
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-1 {
    margin: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-2 {
  margin-top: 50px;
  margin-left: 45px;
  border: 1px solid #88B7AB;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-2 {
    margin-top: -50px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-2 {
    margin: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-3 {
  margin-top: 20px;
  margin-right: 45px;
  border: 1px solid #00546B;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-3 {
    margin-top: 50px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-3 {
    margin: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-4 {
  margin-top: 25px;
  margin-left: 45px;
  border: 1px solid #002638;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-4 {
    margin-top: -40px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-4 {
    margin: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-5 {
  margin-right: 45px;
  border: 1px solid #B58756;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-5 {
    margin-top: -40px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content.col-5 {
    margin: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content h2 {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0.14em;
  color: #002638;
  text-align: left;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content h2 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .text-content p {
  font-family: AstoriaRoman;
  font-size: 18px;
  line-height: 24px;
  color: #002638;
  text-align: left;
  margin: 0;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content {
  position: relative;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content.col-1 {
  margin-top: 100px;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content.col-5 {
  margin-top: 15px;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img {
  height: auto;
  opacity: 0;
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img {
    opacity: 1;
    width: 100%;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img.waves {
  position: absolute;
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img.waves {
    position: unset;
    width: 100%;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#agritech-revolution-waves {
  bottom: 53px;
  left: -145px;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#agritech-revolution-waves {
    bottom: -10px;
  }
}

@media screen and (max-width: 1199px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#agritech-revolution-waves {
    bottom: -10px;
    left: -45px !important;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#inovators-distruptors-waves {
  top: -65px;
  left: 100px;
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#infrastructure-waves {
  bottom: -28px;
  left: -220px;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#infrastructure-waves {
    bottom: -35px;
    left: 50px;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#green-deal-waves {
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#green-deal-waves {
    top: unset;
    transform: none;
    bottom: -45px;
    right: -10px;
  }
}

.themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#hydrogen-value-waves {
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
  height: 60px;
}

@media screen and (max-width: 1399px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#hydrogen-value-waves {
    height: 90px;
    left: unset;
    transform: none;
    right: -30px;
  }
}

@media screen and (max-width: 959px) {
  .themes-wrapper-section .themes-wrapper .container .row .col-md-6 .media-content img#hydrogen-value-waves {
    height: unset;
  }
}

.legal-header-section {
  position: relative;
  margin-top: 100px;
  margin-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .legal-header-section {
    margin-top: 185px;
  }
}

.legal-header-section h1 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  color: #002638;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .legal-header-section h1 {
    font-size: 33px;
  }
}

.legal-header-section h1::after {
  content: '';
  height: 2px;
  width: 300px;
  background-color: #002638;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.legal-header-section h2 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 36px;
  color: #002638;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .legal-header-section h2 {
    font-size: 28px;
  }
}

.legal-content-section .container .topic {
  margin-bottom: 50px;
}

.legal-content-section .container .topic h3 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  color: #002638;
  letter-spacing: 0.1em;
}

.legal-content-section .container .topic h4 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #002638;
}

.legal-content-section .container .topic p {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 22px;
  color: #002638;
  letter-spacing: 0.1em;
}

.legal-content-section .container .topic p a {
  color: #00546B;
}

.legal-content-section .container .topic ul li {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 22px;
  color: #002638;
  letter-spacing: 0.1em;
}

.legal-content-section .container .topic .list-container {
  margin-left: 30px;
}

.js-cookie-consent {
  display: flex;
  height: 375px;
  align-items: center;
  width: 425px;
  background: white;
  position: fixed;
  z-index: 9999;
  bottom: 25px;
  right: 25px;
}

@media (max-width: 576px) {
  .js-cookie-consent {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 410px;
  }
}

.js-cookie-consent .cookie-close {
  height: 50px;
  display: flex;
  padding: 0px 15px;
  border-top: 1px solid #002638;
  border-left: 1px solid #002638;
  border-right: 1px solid #002638;
}

.js-cookie-consent .cookie-close:hover {
  cursor: pointer;
}

.js-cookie-consent .cookie-close .js-cookie-consent-close {
  align-items: center;
  margin-left: auto;
}

.js-cookie-consent .cookie-close .js-cookie-consent-close img {
  max-width: 20px;
}

.js-cookie-consent .cookie-top {
  height: 275px;
  display: block;
  padding: 0 30px;
  font-family: AstoriaRoman;
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
  color: #002638;
  border-left: 1px solid #002638;
  border-right: 1px solid #002638;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .js-cookie-consent .cookie-top {
    height: 315px;
  }
}

.js-cookie-consent .cookie-top a:link,
.js-cookie-consent .cookie-top a:visited {
  color: #B58756;
  text-decoration: underline;
}

.js-cookie-consent .cookie-top .cookie-select {
  margin-top: 20px;
  display: flex;
}

@media (max-width: 576px) {
  .js-cookie-consent .cookie-top .cookie-select {
    margin-top: 15px;
  }
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-right: 20px;
  font-family: AstoriaRoman;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container.enabled {
  cursor: pointer;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container input.enabled {
  cursor: pointer;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container input:checked ~ .checkmark {
  background-color: #B58756;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container input:checked ~ .checkmark:after {
  display: block;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 3px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.js-cookie-consent .cookie-top .cookie-select .cookie-container:hover input:enabled ~ .checkmark {
  background-color: #ccc;
}

.js-cookie-consent .cookie-bottom {
  height: 50px;
  width: 100%;
  display: flex;
  background-color: #B58756;
  text-align: center;
  color: white;
  font-size: 22px;
}

.js-cookie-consent .cookie-bottom:hover {
  cursor: pointer;
}

.js-cookie-consent .cookie-bottom span {
  margin: auto;
}

.btn {
  font-size: 16px;
  line-height: 19px;
  color: #B58756;
  display: inline-block;
  font-family: AstoriaRoman;
  font-weight: normal;
  font-style: normal;
  position: relative;
}

.btn--right {
  padding-right: 30px;
}

.btn--right:after {
  content: "";
  width: 15px;
  height: 19px;
  position: absolute;
  right: 0%;
  transform: translate(-50%, 0);
  background-image: url(/images/arrow-right.svg?b26411473457f971bae8e12190263486);
  background-position: center;
  background-repeat: no-repeat;
}

.btn:hover {
  text-decoration: underline;
}

.btn--bordered {
  border: 1px solid #002638;
  position: relative;
  padding: 10px 80px;
  text-align: center;
  font-family: 'Intro';
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 30px;
  display: inline-block;
  cursor: pointer;
  color: #002638;
}

@media screen and (max-width: 959px) {
  .btn--bordered {
    padding: 10px 40px 10px 20px;
  }
}

.btn--bordered:after {
  content: "";
  width: 15px;
  height: 19px;
  position: absolute;
  right: 10px;
  transform: translate(-50%, 0);
  background-image: url(/images/arrow-right-blue.svg?93200b8f381256643906bbcf29d4a3cc);
  background-position: center;
  background-repeat: no-repeat;
}

.btn--normal {
  font-size: 14px;
  line-height: 21px;
  font-family: 'Intro';
  font-style: normal;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
  font-weight: bold;
  border: 1px solid #00546B;
  border-radius: 5px;
  padding: 10px 35px;
  transition: 0.3s all ease;
}

.btn--normal:hover {
  background: #00546B;
  color: #ffffff;
  transition: 0.3s all ease;
}

.btn--normal.disabled {
  pointer-events: none;
  border: none;
  background-color: #ECF2F6;
}

.default-btn {
  border: 1px solid #00546B;
  display: flex;
  padding: 6px 100px;
  position: relative;
  cursor: pointer;
  transition: all .3s;
}

.default-btn:hover {
  background-color: #00546B;
  color: #FFFFFF;
}

.default-btn:hover span {
  color: #FFFFFF;
}

.default-btn:hover input {
  color: #FFFFFF !important;
}

@media screen and (max-width: 599px) {
  .default-btn {
    padding: 10px 50px;
  }
}

.default-btn span {
  font-family: 'IntroLight';
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00546B;
  margin: auto;
}

.default-btn img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #00546B;
}

::selection {
  color: #fff;
  background: #00546B;
}

.reusable-article-header {
  margin: 30px auto;
  position: relative;
}

.reusable-article-header .container-hero {
  height: 500px;
  padding-right: 1px;
}

@media screen and (max-width: 959px) {
  .reusable-article-header .container-hero {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 599px) {
  .reusable-article-header .container-hero {
    height: 350px;
  }
}

.reusable-article-header .container-hero .hero_bg {
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .reusable-article-header .container-hero .hero_bg {
    background-position: -280px 0;
  }
}

.reusable-article-header .container-hero .hero_bg::after {
  content: "";
  position: absolute;
  width: calc(103px + 100%);
  background: inherit;
  height: 100%;
  left: -102px;
  top: 0;
}

@media screen and (max-width: 959px) {
  .reusable-article-header .container-hero .hero_bg::after {
    width: 100%;
    left: 0;
  }
}

.reusable-article-header .container-hero .hero_bg .article-category {
  position: absolute;
  bottom: 0;
  display: flex;
  width: calc(103px + 100%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 6;
  left: -102px;
}

@media screen and (max-width: 959px) {
  .reusable-article-header .container-hero .hero_bg .article-category {
    width: 100%;
    left: 0;
  }
}

.reusable-article-header .container-hero .hero_bg .article-category span {
  margin: auto 29% auto 34%;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  padding: 20px 35px;
  left: 50%;
  background-color: #002638;
  width: 600px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .reusable-article-header .container-hero .hero_bg .article-category span {
    margin: auto;
    font-size: 20px;
    line-height: 22px;
    width: 60%;
  }
}

@media screen and (max-width: 599px) {
  .reusable-article-header .container-hero .hero_bg .article-category span {
    font-size: 16px;
    line-height: 18px;
    width: 60%;
  }
}

.reusable-article-header .container-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 75px;
}

.reusable-article-header .container-title > h1 {
  position: relative;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #89B7AB;
  text-align: center;
  padding: 100px 0 0 0;
  max-width: 800px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  .reusable-article-header .container-title > h1 {
    font-size: 18px !important;
    line-height: 20px !important;
    padding: 60px 0 30px 0;
  }
}

.reusable-article-header .container-title > h1 p {
  text-align: center;
}

.reusable-article-header .container-title > h1 div span {
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #89B7AB;
}

@media screen and (max-width: 599px) {
  .reusable-article-header .container-title > h1 div span {
    font-size: 30px !important;
    line-height: 30px !important;
  }
}

.reusable-article-header .container-title > h1::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 200px;
  bottom: 0;
  left: 50%;
  background-color: #002638;
  transform: translate(-50%);
}

.reusable-article-header .container-title .art-date {
  margin: 10px auto auto auto;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #002638;
}

.shared-yellow-section {
  background-color: #F5EBDE;
  margin-bottom: 75px;
}

@media screen and (max-width: 599px) {
  .shared-yellow-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.shared-yellow-section .shared-section-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 50px 0;
}

@media screen and (max-width: 959px) {
  .shared-yellow-section .shared-section-content {
    width: 80% !important;
  }
}

.shared-yellow-section .shared-section-content h2 {
  margin: auto;
  margin-bottom: 40px;
  font-family: 'Intro';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.15em;
  color: #B58756;
}

@media screen and (max-width: 599px) {
  .shared-yellow-section .shared-section-content h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

.shared-yellow-section .shared-section-content p {
  position: relative;
  background-color: #F5EBDE;
  padding: 0;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
  z-index: 1;
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p {
    padding: 25px !important;
    font-size: 18px;
  }
}

.shared-yellow-section .shared-section-content p p {
  position: relative;
  background-color: #F5EBDE;
  padding: 25px;
  font-size: 20px;
  line-height: 26px;
  color: #B58756;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p p {
    padding: 0 !important;
    font-size: 18px;
  }
}

.shared-yellow-section .shared-section-content p p::before {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #FFFF;
  top: 22px;
  left: 13px;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .shared-yellow-section .shared-section-content p p::before {
    top: -4px;
    left: -9px;
  }
}

.customer-section {
  margin-bottom: 100px;
}

@media screen and (max-width: 959px) {
  .customer-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.customer-section .container {
  background-color: #ECF2F6;
  display: flex;
  position: relative;
}

@media screen and (max-width: 959px) {
  .customer-section .container {
    flex-direction: column-reverse;
    padding-top: 20px;
  }
}

.customer-section .container .container-info {
  margin: auto;
  padding: 40px 0;
}

@media screen and (max-width: 1199px) {
  .customer-section .container .container-info {
    margin: unset;
    text-align: left;
  }
}

@media screen and (max-width: 959px) {
  .customer-section .container .container-info {
    padding: 20px 0;
  }
}

.customer-section .container .container-info h3,
.customer-section .container .container-info p {
  text-align: center;
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #002638;
}

@media screen and (max-width: 1199px) {
  .customer-section .container .container-info h3,
  .customer-section .container .container-info p {
    text-align: left;
  }
}

@media screen and (max-width: 959px) {
  .customer-section .container .container-info h3,
  .customer-section .container .container-info p {
    text-align: center;
  }
}

.customer-section .container .container-info p {
  margin-bottom: 0;
}

.customer-section .container .container-info h3 {
  letter-spacing: 0.15em;
}

.customer-section .container img {
  position: absolute;
  height: 35px;
  width: 200px;
  right: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 959px) {
  .customer-section .container img {
    position: unset !important;
    transform: none !important;
    margin: auto;
  }
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: aqua !important;
}

.popup-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
  display: none;
}

.popup-overlay.active {
  display: block;
}

.popup-overlay .popup-container {
  background-color: #ffff;
  width: 600px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 40px 70px;
  border-radius: 5px;
}

.popup-overlay .popup-container .content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-overlay .popup-container .content img {
  height: 100px;
  width: 100px;
  margin: auto;
  margin-bottom: 30px;
}

.popup-overlay .popup-container .content img#close-icon {
  height: 30px;
  width: 30px;
  position: absolute;
  top: -15px;
  right: -35px;
  cursor: pointer;
}

.popup-overlay .popup-container .content h1 {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 25px;
  color: #00546B;
  text-align: center;
  margin-bottom: 25px;
}

.popup-overlay .popup-container .content p {
  font-family: AstoriaRoman;
  font-size: 18px;
  line-height: 22px;
  color: #002638;
  text-align: center;
  margin-bottom: 25px;
}

.popup-overlay .popup-container .content button {
  background: #002638;
  border-radius: 5px;
  padding: 15px 50px;
  margin: auto;
  cursor: pointer;
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}

.popup-overlay .popup-container-join {
  background-color: #ffff;
  width: 500px;
  height: 650px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 40px 70px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .popup-overlay .popup-container-join {
    width: 365px;
    padding: 30px 20px;
    margin-top: 20px;
  }
}

.popup-overlay .popup-container-join .content-join-us {
  position: relative;
  margin: auto 0 auto 0;
}

.popup-overlay .popup-container-join .content-join-us #close-icon {
  height: auto;
  width: auto;
  position: absolute;
  top: -35px;
  right: -50px;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .popup-overlay .popup-container-join .content-join-us #close-icon {
    top: -45px;
    right: -8px;
  }
}

.popup-overlay .popup-container-join .content-join-us form {
  margin: auto;
  display: flex;
  flex-direction: column;
}

.popup-overlay .popup-container-join .content-join-us form label {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
  margin-bottom: 15px;
}

.popup-overlay .popup-container-join .content-join-us form .label-container {
  display: flex;
}

.popup-overlay .popup-container-join .content-join-us form .label-container span {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: red;
  margin-bottom: 15px;
  margin-left: auto;
  display: none;
}

.popup-overlay .popup-container-join .content-join-us form input,
.popup-overlay .popup-container-join .content-join-us form textarea {
  border: 1px solid #00546B;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 35px;
}

.popup-overlay .popup-container-join .content-join-us form input.submit,
.popup-overlay .popup-container-join .content-join-us form textarea.submit {
  width: 100%;
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
  margin-bottom: 0;
  margin-top: 20px;
  cursor: pointer;
  transition: all .3s;
}

.popup-overlay .popup-container-join .content-join-us form input.submit:hover,
.popup-overlay .popup-container-join .content-join-us form textarea.submit:hover {
  background-color: #00546B;
  color: #FFFF;
}

.popup-overlay .popup-container-join .content-join-us form input[type="file"] {
  display: none;
}

.popup-overlay .popup-container-join .content-join-us form .upload {
  display: flex;
}

.popup-overlay .popup-container-join .content-join-us form .upload.documents {
  margin-bottom: 30px;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input {
  display: flex;
  width: 150px;
  height: 45px;
  padding: 10px 20px;
  border: 1px solid #00546B;
  border-radius: 5px;
  justify-content: center;
  cursor: pointer;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input span {
  font-family: 'Intro';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00546B;
  padding-top: 7px;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input .icon {
  background-image: url(/images/attach-icon.png?505981ba229519684ce14e1279d990db);
  height: 23px;
  width: 23px;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input.uploaded {
  background-color: #00546B;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input.uploaded span {
  color: #FFFFFF;
}

.popup-overlay .popup-container-join .content-join-us form .upload .custom-file-input.uploaded .icon {
  background-image: url(/images/delete-file-icon.png?accb7295aaec6aa176c288c4b8580b9c);
  height: 23px;
  width: 23px;
}

.popup-overlay .popup-container-join .content-join-us form .upload ul {
  list-style: none;
  margin: 0;
  padding-left: 20px;
}

.popup-overlay .popup-container-join .content-join-us form .upload ul li {
  font-family: AstoriaRoman;
  font-size: 15px;
  line-height: 19px;
  color: #002638;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 15px 20px;
  position: relative;
  justify-content: flex-end;
}

@media screen and (max-width: 959px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb li,
.breadcrumb li a {
  font-family: 'Intro';
  font-size: 16px;
  line-height: 24px;
  color: #002638;
}

.breadcrumb li {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.breadcrumb li p {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 1199px) {
  .breadcrumb li p {
    max-width: 600px;
  }
}

.breadcrumb li + li:before {
  display: inline-block;
  width: 9px;
  height: 18px;
  padding-right: 1rem;
  padding-left: 1rem;
  color: #6c757d;
  content: "";
  background: url(/images/breadcrumb-arrow.svg?5f09ea409f63fdc4168d0c2021e0ad78) center no-repeat;
  background-size: 9px 18px;
}

.breadcrumb li a {
  font-weight: 400;
}

.breadcrumb li a:hover {
  font-weight: 700;
}

