/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://use.typekit.net/exu5ipn.css");
:root {
  --font-family: halcom, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease; }

button,
[type='button'],
[type='reset'],
[type='submit'] {
  appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover,
  [type='button']:hover,
  [type='reset']:hover,
  [type='submit']:hover {
    background-color: #3b83d5; }
  button:focus,
  [type='button']:focus,
  [type='reset']:focus,
  [type='submit']:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }
  button:disabled,
  [type='button']:disabled,
  [type='reset']:disabled,
  [type='submit']:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #1565c0; }

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small); }

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem; }

[type='color'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='email'],
[type='month'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='text'],
[type='time'],
[type='url'],
[type='week'],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%; }
  [type='color']:focus,
  [type='date']:focus,
  [type='datetime']:focus,
  [type='datetime-local']:focus,
  [type='email']:focus,
  [type='month']:focus,
  [type='number']:focus,
  [type='password']:focus,
  [type='search']:focus,
  [type='tel']:focus,
  [type='text']:focus,
  [type='time']:focus,
  [type='url']:focus,
  [type='week']:focus,
  input:not([type]):focus,
  textarea:focus {
    box-shadow: var(--form-box-shadow-focus); }
  [type='color']:disabled,
  [type='date']:disabled,
  [type='datetime']:disabled,
  [type='datetime-local']:disabled,
  [type='email']:disabled,
  [type='month']:disabled,
  [type='number']:disabled,
  [type='password']:disabled,
  [type='search']:disabled,
  [type='tel']:disabled,
  [type='text']:disabled,
  [type='time']:disabled,
  [type='url']:disabled,
  [type='week']:disabled,
  input:not([type]):disabled,
  textarea:disabled {
    cursor: not-allowed; }
    [type='color']:disabled:hover,
    [type='date']:disabled:hover,
    [type='datetime']:disabled:hover,
    [type='datetime-local']:disabled:hover,
    [type='email']:disabled:hover,
    [type='month']:disabled:hover,
    [type='number']:disabled:hover,
    [type='password']:disabled:hover,
    [type='search']:disabled:hover,
    [type='tel']:disabled:hover,
    [type='text']:disabled:hover,
    [type='time']:disabled:hover,
    [type='url']:disabled:hover,
    [type='week']:disabled:hover,
    input:not([type]):disabled:hover,
    textarea:disabled:hover {
      border: var(--border); }
  [type='color']::placeholder,
  [type='date']::placeholder,
  [type='datetime']::placeholder,
  [type='datetime-local']::placeholder,
  [type='email']::placeholder,
  [type='month']::placeholder,
  [type='number']::placeholder,
  [type='password']::placeholder,
  [type='search']::placeholder,
  [type='tel']::placeholder,
  [type='text']::placeholder,
  [type='time']::placeholder,
  [type='url']::placeholder,
  [type='week']::placeholder,
  input:not([type])::placeholder,
  textarea::placeholder {
    color: #333;
    opacity: 0.25; }

[type="search"] {
  -webkit-appearance: textfield; }

textarea {
  resize: vertical; }

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: var(--spacing--small); }

[type="file"] {
  margin-bottom: var(--spacing--small);
  width: 100%; }

select {
  margin-bottom: var(--spacing--small);
  width: 100%; }

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset); }

html {
  background-color: #fff;
  box-sizing: border-box; }

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

html,
body {
  height: 100%; }

body {
  margin: 0; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

figure {
  margin: 0; }

img,
picture {
  margin: 0;
  max-width: 100%; }

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%; }

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom; }

tbody {
  vertical-align: top; }

tr {
  border-bottom: var(--border); }

th {
  font-weight: 600; }

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0; }

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small); }

h2 {
  font-size: 1.5625em; }

p {
  margin: 0 0 var(--spacing--small); }

a {
  color: #1565c0;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing); }
  a:hover {
    color: #3b83d5; }
  a:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0; }

.wrapper {
  font-size: 1.1em;
  overflow: hidden; }
  .wrapper .inner {
    max-width: 1400px;
    margin: auto; }
  .wrapper .small_inner {
    max-width: 900px;
    margin: auto; }
    @media screen and (min-width: 810px) and (max-width: 1220px) {
      .wrapper .small_inner {
        max-width: 800px; } }
    @media screen and (min-width: 810px) and (max-width: 1120px) {
      .wrapper .small_inner {
        max-width: 700px; } }
    @media screen and (min-width: 810px) and (max-width: 1020px) {
      .wrapper .small_inner {
        max-width: 600px; } }
    @media screen and (min-width: 810px) and (max-width: 920px) {
      .wrapper .small_inner {
        max-width: 500px; } }
  .wrapper .header,
  .wrapper nav,
  .wrapper .intro,
  .wrapper .accord .top,
  .wrapper .accord .bottom,
  .wrapper .kpi_shift {
    padding: 0 20px; }
  .wrapper .header {
    background-image: url(../img/header.png);
    overflow: hidden;
    background-size: cover;
    color: #fff;
    padding-bottom: 20px; }
    .wrapper .header .inner {
      position: relative;
      overflow: hidden;
      max-width: 900px; }
      .wrapper .header .inner h1 {
        max-width: 400px;
        font-size: 2.5em;
        font-weight: 900;
        margin: 40px 0 20px;
        line-height: 1.3em; }
      .wrapper .header .inner p {
        font-size: 1.1em;
        font-weight: 700;
        margin: 20px 0 30px; }
      .wrapper .header .inner img {
        position: absolute;
        top: 0;
        right: 20px;
        height: 50px;
        width: 50px; }
  .wrapper .sectors .inner {
    position: relative; }
  .wrapper .sectors .intro {
    padding: 20px;
    margin-top: -20px;
    font-weight: 600;
    color: #fff;
    font-size: 0.9em;
    background-image: linear-gradient(to top right, #F8416A, #FB747A); }
    @media screen and (min-width: 810px) {
      .wrapper .sectors .intro {
        width: 50%;
        margin-left: 50%; }
        .wrapper .sectors .intro p {
          max-width: 450px; } }
  .wrapper .sectors nav {
    background-color: #05E1C8;
    color: #fff;
    overflow: hidden;
    z-index: 999;
    padding: 10px 20px; }
    .wrapper .sectors nav ul {
      font-size: 1.1em;
      font-weight: 700; }
      .wrapper .sectors nav ul li {
        cursor: pointer; }
    @media screen and (min-width: 810px) {
      .wrapper .sectors nav {
        position: absolute;
        top: 0;
        left: 0; }
        .wrapper .sectors nav ul {
          padding-left: 40px; }
          .wrapper .sectors nav ul li {
            margin: 10px 0;
            position: relative; }
            .wrapper .sectors nav ul li.active:before {
              content: "";
              display: block;
              position: absolute;
              background-image: url(../img/arrow.svg);
              height: 30px;
              width: 30px;
              background-size: contain;
              background-position: center center;
              left: -40px;
              top: 0; } }
    @media screen and (max-width: 809px) {
      .wrapper .sectors nav ul {
        display: flex;
        justify-content: flex-start;
        padding-bottom: 5px; }
        .wrapper .sectors nav ul li {
          display: block;
          font-size: 0.8em;
          margin: 0 20px 0 0; }
          .wrapper .sectors nav ul li.active {
            text-decoration: underline; } }
    @media screen and (max-width: 809px) and (min-width: 426px) {
      .wrapper .sectors nav ul li {
        font-size: 1em; } }
  .wrapper .sectors .sector .gtrends h2 {
    color: #F8416A;
    margin: 20px 0; }
  .wrapper .sectors .sector .gtrends .embed {
    margin: 20px 40px;
    box-shadow: -10px 10px 0 0 #F8416A;
    background-color: #fff; }
    .wrapper .sectors .sector .gtrends .embed iframe {
      height: 370px; }
  @media screen and (min-width: 810px) {
    .wrapper .sectors .sector .gtrends {
      position: relative; }
      .wrapper .sectors .sector .gtrends:before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        max-width: 830px;
        z-index: -1;
        left: -250px;
        bottom: -40px;
        height: calc(100%);
        background-image: linear-gradient(to top right, #F8416A, #FB747A); } }
    @media screen and (min-width: 810px) and (max-width: 1400px) {
      .wrapper .sectors .sector .gtrends:before {
        width: calc(50% - 120px);
        left: 0; } }
    @media screen and (min-width: 810px) and (max-width: 1020px) {
      .wrapper .sectors .sector .gtrends:before {
        width: 70%;
        left: 0; } }
  @media screen and (min-width: 810px) {
      .wrapper .sectors .sector .gtrends .embeds {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px; } }
    @media screen and (min-width: 810px) and (max-width: 1020px) {
      .wrapper .sectors .sector .gtrends .embeds {
        grid-template-columns: 1fr; } }
  .wrapper .sectors .sector .recomendations {
    margin: 40px 0; }
    .wrapper .sectors .sector .recomendations h2 {
      color: #2954DF;
      margin: 20px 0; }
    .wrapper .sectors .sector .recomendations .accord .row {
      background-color: #2954DF;
      color: #fff;
      margin-bottom: 20px; }
      .wrapper .sectors .sector .recomendations .accord .row .top {
        padding: 20px;
        position: relative;
        cursor: pointer; }
        .wrapper .sectors .sector .recomendations .accord .row .top h3 {
          margin: 0; }
        .wrapper .sectors .sector .recomendations .accord .row .top:after {
          content: '';
          position: absolute;
          display: block;
          height: 30px;
          width: 30px;
          top: 17px;
          right: 20px;
          background-image: url(../img/plus.svg);
          background-position: center center;
          background-size: contain;
          transition: all 0.3s; }
        .wrapper .sectors .sector .recomendations .accord .row .top:hover:after {
          transform: scale(1.1); }
      .wrapper .sectors .sector .recomendations .accord .row .bottom {
        font-size: 0.9em;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s; }
        .wrapper .sectors .sector .recomendations .accord .row .bottom p, .wrapper .sectors .sector .recomendations .accord .row .bottom li {
          margin-bottom: 20px; }
      .wrapper .sectors .sector .recomendations .accord .row.active .top:after {
        transform: rotate(225deg); }
      .wrapper .sectors .sector .recomendations .accord .row.active .bottom {
        max-height: 1500px; }
    @media screen and (min-width: 810px) {
      .wrapper .sectors .sector .recomendations {
        margin-top: 80px; } }
  .wrapper .sectors .sector .kpi_table h2 {
    color: #6A00A7;
    margin: 20px 0; }
  .wrapper .sectors .sector .kpi_table .grid {
    color: #fff;
    background-color: #6A00A7;
    padding: 20px 20px 10px 20px; }
    .wrapper .sectors .sector .kpi_table .grid .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0; }
      .wrapper .sectors .sector .kpi_table .grid .row > * {
        width: calc(50% - 10px); }
      .wrapper .sectors .sector .kpi_table .grid .row.top {
        font-size: 1em;
        font-weight: 700; }
      .wrapper .sectors .sector .kpi_table .grid .row.kpi {
        font-size: 0.8em;
        border-bottom: 1px solid #F9416A; }
        .wrapper .sectors .sector .kpi_table .grid .row.kpi:last-child {
          border-bottom: 0; }
  @media screen and (min-width: 810px) {
    .wrapper .sectors .sector .kpi_table {
      max-width: 900px;
      margin: 80px auto 40px; }
      .wrapper .sectors .sector .kpi_table .grid {
        max-width: 840px;
        padding-right: 40px;
        position: relative; }
        .wrapper .sectors .sector .kpi_table .grid:after {
          content: "";
          position: absolute;
          height: calc(100% - 60px);
          width: 330px;
          left: calc(100% - 20px);
          top: -60px;
          background-image: url(../img/kpi_image@2x.png);
          background-position: center;
          background-size: cover; } }
  .wrapper .kpi_shift {
    overflow: hidden;
    color: #fff;
    background-image: linear-gradient(to top right, #FD6D54, #FE9241); }
    .wrapper .kpi_shift .inner {
      max-width: 900px; }
    .wrapper .kpi_shift h2, .wrapper .kpi_shift h3 {
      margin: 20px 0;
      padding: 0; }
    .wrapper .kpi_shift p.mail {
      margin: 40px 0;
      text-align: center;
      text-decoration: underline;
      color: #fff; }
      .wrapper .kpi_shift p.mail a {
        color: inherit; }
    .wrapper .kpi_shift p {
      font-size: 0.9em; }
    .wrapper .kpi_shift figure {
      margin: 20px; }
      .wrapper .kpi_shift figure img {
        min-width: 100%; }
    .wrapper .kpi_shift .graph {
      border-bottom: 1px solid #fff;
      padding: 20px 0; }
      .wrapper .kpi_shift .graph h3 img {
        display: none;
        max-width: 50px;
        margin: 0 0 10px; }
      .wrapper .kpi_shift .graph:last-child {
        border-bottom: 0; }
    @media screen and (min-width: 810px) {
      .wrapper .kpi_shift .graph {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; }
        .wrapper .kpi_shift .graph h3 {
          width: 240px;
          margin-top: 40px; }
          .wrapper .kpi_shift .graph h3 img {
            display: block; }
        .wrapper .kpi_shift .graph figure {
          width: calc(100% - 300px - 10px); } }
