@charset "UTF-8";
/*
Theme Name: Blog Computrabajo
Author: INSIDEERS (jordi@insideers.com)
Version: 1.0
*/
@font-face {
  font-family: "BreveSansText";
  src: url("fonts/BreveSansText-Light.eot");
  src: url("fonts/BreveSansText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/BreveSansText-Light.woff2") format("woff2"), url("fonts/BreveSansText-Light.woff") format("woff"), url("fonts/BreveSansText-Light.ttf") format("truetype"), url("fonts/BreveSansText-Light.svg#BreveSansText-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BreveSansText";
  src: url("fonts/BreveSansText-Medium.eot");
  src: url("fonts/BreveSansText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/BreveSansText-Medium.woff2") format("woff2"), url("fonts/BreveSansText-Medium.woff") format("woff"), url("fonts/BreveSansText-Medium.ttf") format("truetype"), url("fonts/BreveSansText-Medium.svg#BreveSansText-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BreveSansText";
  src: url("fonts/BreveSansText-Bold.eot");
  src: url("fonts/BreveSansText-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/BreveSansText-Bold.woff2") format("woff2"), url("fonts/BreveSansText-Bold.woff") format("woff"), url("fonts/BreveSansText-Bold.ttf") format("truetype"), url("fonts/BreveSansText-Bold.svg#BreveSansText-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/******************** VARIABLES ***********************/
:root {
  /* COLORS */
  --black: #000;
  --white: #fff;
  --gray: #F5F5F5;
  --dark-blue: #0D3878;
  --medium-blue: #005DA9;
  --light-blue: #EBF6FF;
  --yellow: #FCC73B;
  --pink: #ED6985;
  --orange: #FF6F00;
  /*FONTS*/
  --primary-font-family: "BreveSansText";
  /* FONT-WEIGHTS */
  --bold: 700;
  --medium: 500;
  --light: 300;
  /* FONT-SIZES + FONT-SPACING */
  --title-extralarge-size: 42px;
  --title-extralarge-lineheight: 50px;
  --title-large-size: 40px;
  --title-large-lineheight: 48px;
  --title-regular-size: 35px;
  --title-regular-lineheight: 45px;
  --title-small-size: 30px;
  --title-small-lineheight: 36px;
  --text-extralarge-size: 26px;
  --text-extralarge-lineheight: 32px;
  --text-large-size: 23px;
  --text-large-lineheight: 28px;
  --text-regular-size: 20px;
  --text-regular-lineheight: 28px;
  --text-small-size: 16px;
  --text-small-lineheight: 22px;
  --text-extrasmall-size: 14px;
  --text-extrasmall-lineheight: 18px;
  /* SPACING */
  --container-regular: 1800px;
  --section-spacing-large: 90px;
  --section-spacing-regular: 45px;
  --margin-large: 60px;
  --margin-medium: 45px;
  --margin-regular: 30px;
  --margin-small: 15px;
  --margin-extrasmall: 5px;
  /* OTHERS */
  --box-shadow-regular: 0px 30px 40px rgba(0, 0, 0, 0.1);
  --border-radius-regular: 8px;
  --transition-regular: all 0.2s linear;
}
@media (max-width: 700px) {
  :root {
    --title-extralarge-size: 36px;
    --title-extralarge-lineheight: 42px;
    --title-large-size: 34px;
    --title-large-lineheight: 40px;
    --title-regular-size: 30px;
    --title-regular-lineheight: 38px;
    --title-small-size: 24px;
    --title-small-lineheight: 30px;
    --text-extralarge-size: 22px;
    --text-extralarge-lineheight: 28px;
    --text-large-size: 20px;
    --text-large-lineheight: 26px;
    --text-regular-size: 18px;
    --text-regular-lineheight: 24px;
    --text-small-size: 14px;
    --text-small-lineheight: 20px;
    --text-extrasmall-size: 12px;
    --text-extrasmall-lineheight: 16px;
    --section-spacing-large: 45px;
    --section-spacing-regular: 20px;
  }
}
/******************** PRESETS **********************/
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
* {
  margin: 0;
  padding: 0;
  max-height: 100000px;
}
address, applet, blockquote, dl, embed, form, frameset, h1, h2, h3, h4, h5, h6, iframe, object, ol, p, table, ul {
  margin: 0 0 15px;
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, frameset, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  border: 0;
  background: 0 0;
}
body {
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  font-family: var(--primary-font-family);
  margin: 0;
  color: var(--black);
  background: var(--white);
  min-width: 320px;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  font-weight: var(--regular);
  -webkit-font-smoothing: antialiased;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}
input[type=email], input[type=file], input[type=password], input[type=search], input[type=text], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type=submit] {
  text-transform: uppercase;
  border-radius: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  color: var(--white);
  border: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
img {
  border-style: none;
}
a:focus {
  outline: 0;
}
fieldset, form {
  margin: 0;
  padding: 0;
  border-style: none;
}
article, aside, figure, footer, header, main, nav, section {
  display: block;
}
figure {
  margin: 0;
  padding: 0;
}
input, select, textarea {
  vertical-align: middle;
  color: var(--black);
  overflow: auto;
}
input:focus, select:focus {
  outline: 0;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
label {
  vertical-align: middle;
}
button, input {
  width: auto;
  overflow: visible;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
b, h1, h2, h3, h4, h5, h6, strong, th {
  font-weight: var(--medium);
}
address, cite, dfn, em, i, var {
  font-style: italic;
}
ins, u {
  text-decoration: underline;
}
del, s, strike {
  text-decoration: line-through;
}
blockquote p q {
  font-size: 1.3em;
  color: var(--light-gray);
}
blockquote, blockquote:after, blockquote:before, q, q:after, q:before {
  quotes: none;
}
blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  display: inherit;
}
blockquote {
  border: 0;
  padding-left: 0;
  margin-left: 0;
  font: var(--primary-font-family);
  color: var(--dark-gray);
}
blockquote cite {
  display: block;
  text-align: right;
  padding: 5px 0 0;
  font-weight: 700;
}
caption, table, tbody, td, tfoot, th, thead, tr {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  border: 1px solid #ccc;
  padding: 3px 7px;
  text-align: left;
  vertical-align: top;
}
th {
  border-color: #999;
  text-align: center;
  vertical-align: middle;
}
.odd td {
  background: #efefef;
}
ul {
  margin-left: 1px;
}
ol ol, ol ul, ul ol, ul ul {
  padding-left: var(--text-regular-size);
  margin: 0;
}
ol li, ul li {
  list-style-position: inside;
}
ul > li {
  list-style-type: disc;
}
dl dt {
  float: left;
  clear: left;
  padding-right: 4px;
  font-weight: var(--medium);
}
li, p {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  margin-bottom: var(--margin-small);
}
.flex-row {
  display: flex;
}
.flex-row--space {
  justify-content: space-between;
}
.flex-row--even {
  justify-content: space-evenly;
}
.flex-row--around {
  justify-content: space-around;
}
.flex-row--center {
  justify-content: center;
}
.flex-row--reverse {
  flex-direction: row-reverse;
}
.flex-row--right {
  justify-content: flex-end;
}
.flex-column--center, .flex-row--vcenter {
  align-items: center;
}
.flex-row--vtop {
  align-items: flex-start;
}
.flex-row--vbottom {
  align-items: flex-end;
}
.flex-row--wrap {
  flex-wrap: wrap;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-column--left {
  align-items: flex-start;
}
.flex-gap-small {
  gap: var(--margin-small);
}
.flex-gap-regular {
  gap: var(--margin-regular);
}
.flex-gap-medium {
  gap: var(--margin-medium);
}
.flex-gap-large {
  gap: var(--margin-small);
}
.flex-grow {
  flex-grow: 1;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.no-margin {
  margin: 0;
}
/******************** GENERIC ***********************/
body {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  font-family: var(--primary-font-family);
  color: var(--black);
  background: var(--white);
  font-weight: var(--light);
}
.container {
  width: 100%;
  max-width: var(--container-regular);
  padding: 0 10%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .container {
    padding: 0px 30px;
  }
}
section {
  padding: var(--section-spacing-regular) 0;
  position: relative;
}
section:first-of-type {
  padding-top: var(--section-spacing-large);
}
a {
  text-decoration: none;
  outline: 0;
  transition: var(--transition-regular);
  color: unset;
}
a:hover {
  text-decoration: underline;
}
strong {
  font-weight: var(--bold);
}
.img img, img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 700px) {
  section:first-of-type {
    padding-top: calc(var(--section-spacing-large)*2.2);
  }
  .responsive-menu {
    padding: var(--margin-small) var(--margin-regular) var(--margin-large) !important;
  }
}
.menu {
  display: flex;
  align-items: center;
  gap: var(--margin-regular);
  margin: 0;
}
.menu > li {
  list-style: none;
  margin: 0;
}
.menu > li:not(.menu-button) .item {
  display: block;
  margin: 0;
  max-width: max-content;
  cursor: pointer;
}
.menu > li:not(.menu-button) .item .item__title {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  transition: var(--transition-regular);
  margin: 0;
}
.menu > li:not(.menu-button) .item:hover {
  text-decoration: none;
}
.menu > li.sub-menu--open > .item .item__title {
  color: var(--light-gray);
}
/******************** TITLES ***********************/
.page-title {
  font-size: var(--title-small-size);
  line-height: var(--title-small-lineheight);
  margin-bottom: var(--margin-medium);
}
.page-subtitle {
  margin: var(--margin-regular) 0 var(--margin-medium);
}
.page-title + .page-subtitle {
  margin-top: -30px;
}
.page-title.align-center, .page-subtitle.align-center {
  max-width: 850px;
  margin-inline: auto;
}
.section-title {
  font-size: var(--title-small-size);
  line-height: var(--title-small-lineheight);
  margin-bottom: var(--margin-medium);
  font-weight: var(--light);
}
.section-subtitle {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  margin-bottom: var(--margin-regular);
}
.section-title + .section-subtitle {
  margin-top: -45px;
}
.section-subtitle.align-center {
  max-width: 1020px;
  margin-inline: auto;
}
.subsection-title {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  margin-bottom: var(--margin-small);
  font-weight: var(--light);
}
/******************** BUTTONS ***********************/
.button-container {
  gap: var(--margin-small) var(--margin-regular);
}
.button, .page-content a.wp-block-button__link, .hubspot-form form .hs-button, .menu-button .item__title {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  font-weight: var(--bold);
  text-align: center;
  padding: 10px 20px;
  color: var(--white) !important;
  background-color: var(--pink);
  border-radius: 100px;
  transition: var(--transition-regular);
  display: inline-block;
  cursor: pointer;
}
.button:hover, .page-content a.wp-block-button__link:hover, .hubspot-form form .hs-button:hover, .menu-button .item__title:hover {
  opacity: 1;
  text-decoration: none;
}
.button:active, .page-content a.wp-block-button__link:active, .hubspot-form form .hs-button:active, .menu-button .item__title:active {
  background-color: #575757;
}
.button:disabled, .page-content a.wp-block-button__link:disabled, .hubspot-form form .hs-button:disabled, .menu-button .item__title:disabled, .button.disabled, .page-content a.disabled.wp-block-button__link, .hubspot-form form .disabled.hs-button, .menu-button .disabled.item__title {
  background-color: #cccce5;
  color: #9999CB;
  cursor: default;
}
.button--white {
  background-color: var(--white);
  color: var(--dark-blue) !important;
}
.button--orange {
  background-color: var(--orange);
}
.button--yellow, .hubspot-form form .hs-button, .menu-button .item__title {
  background-color: var(--yellow);
  color: var(--dark-blue) !important;
}
.button--blue, .page-content a.wp-block-button__link {
  background-color: var(--medium-blue);
  color: var(--white) !important;
}
.link {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  color: var(--medium-blue);
  cursor: pointer;
  transition: var(--transition-regular);
}
.link:hover {
  text-decoration: none;
  opacity: 0.6;
}
.link--arrow {
  position: relative;
}
.link--arrow:not(.link--arrow-left):not(.link--arrow-reverse):after, .link--arrow-left:before, .link--arrow-reverse:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 25px;
  background-image: url(images/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -8px;
  margin-left: 10px;
}
.link--arrow-left:before, .link--arrow-reverse:before {
  margin-left: 0;
  margin-right: 10px;
}
.link--arrow-reverse:before {
  transform: rotate(180deg);
}
/******************** PAGINATION ***********************/
.custom-pagination {
  width: 100%;
  text-align: center;
}
.custom-pagination__links {
  margin: 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--margin-regular);
}
.custom-pagination .page-numbers {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  margin: 0;
  color: var(--medium-blue);
  width: 31px;
  padding: 3px 0;
  background-color: var(--light-blue);
  border-radius: 100%;
}
.custom-pagination .page-numbers:hover, .custom-pagination .page-numbers.current {
  background-color: #b7dfff;
  text-decoration: none;
}
.custom-pagination .page-numbers.next, .custom-pagination .page-numbers.prev {
  content: "";
  background-image: url(images/chevron-right.svg);
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.custom-pagination .page-numbers.prev {
  transform: rotate(180deg);
}
.custom-pagination .page-numbers:not(.next, .prev):not(:last-child) {
  position: relative;
}
.custom-pagination .page-numbers:not(.next, .prev):not(:last-child):after {
  content: "·";
  position: absolute;
  width: 2px;
  height: 2px;
  top: 2px;
  right: -15px;
  pointer-events: none;
}
@media (max-width: 700px) {
  .custom-pagination__links {
    gap: var(--margin-small);
  }
  .custom-pagination .page-numbers {
    width: 32px;
    font-size: var(--text-regular-size);
    line-height: var(--text-regular-lineheight);
  }
  .custom-pagination .page-numbers:not(.next, .prev):not(:last-child)::after {
    right: -7.5px;
  }
  .custom-pagination .page-numbers.next, .custom-pagination .page-numbers.prev {
    background-size: 9px;
  }
}
/******************** PAGE CONTENT ***********************/
.page-content img {
  max-width: 100%;
}
.page-content p {
  margin-bottom: var(--margin-regular);
}
.page-content a {
  text-decoration: underline;
  color: var(--medium-blue);
}
.page-content ul {
  margin: var(--margin-regular) 0 var(--margin-medium);
}
.page-content ul li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.page-content ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--dark-blue);
  border-radius: 100%;
  position: absolute;
  left: 4px;
  top: 12px;
}
.page-content h1 {
  font-size: var(--title-small-size);
  line-height: var(--title-small-lineheight);
  margin: var(--margin-large) 0 var(--margin-regular);
  font-weight: var(--bold);
}
.page-content h2 {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  margin: var(--margin-medium) 0 var(--margin-small);
  font-weight: var(--bold);
}
.page-content h3 {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  margin: var(--margin-regular) 0 var(--margin-small);
  font-weight: var(--bold);
}
.page-content h1 + h2, .page-content h2 + h3 {
  margin-top: 0;
}
.page-content figure {
  margin: var(--margin-medium) 0;
}
.page-content .wp-block-quote {
  padding: var(--margin-regular) 0;
  border: solid var(--gray);
  border-width: 1px 0;
  margin: var(--margin-medium) 0;
}
.page-content .wp-block-quote p {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  color: var(--black);
  margin-bottom: var(--margin-small);
  font-weight: var(--medium);
}
.page-content .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.page-content .wp-block-quote cite {
  text-align: left;
  font-style: normal;
  color: var(--light-gray);
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  padding: 0;
  font-weight: var(--light);
}
.page-content a.wp-block-button__link {
  text-decoration: none;
}
/******************** HUBSPOT FORM ***********************/
.hubspot-form form fieldset {
  display: flex;
  justify-content: space-between;
  gap: var(--margin-small);
  margin: 0;
  position: relative;
  max-width: unset;
}
.hubspot-form form .hs-form-field {
  width: 100% !important;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hubspot-form form .hs-form-field > label {
  display: block;
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  margin-bottom: var(--margin-extrasmall);
  padding-left: var(--margin-small);
  font-weight: var(--medium);
}
.hubspot-form form .hs-form-field .input {
  margin: 0 0 25px !important;
}
.hubspot-form form input[type="email"], .hubspot-form form input[type="tel"], .hubspot-form form input[type="text"], .hubspot-form form textarea, .hubspot-form form select {
  font-family: var(--primary-font-family);
  font-weight: var(--light);
  color: #989898;
  background: var(--light-blue);
  width: 100% !important;
  padding: 14px 15px;
  box-sizing: border-box;
  outline: none !important;
  min-width: 150px;
  border-radius: 100px;
  border: unset;
}
.hubspot-form form input[type="email"] option, .hubspot-form form input[type="tel"] option, .hubspot-form form input[type="text"] option, .hubspot-form form textarea option, .hubspot-form form select option {
  font-family: "Arial";
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  color: var(--dark-blue);
}
.hubspot-form form select.hs-input {
  cursor: pointer;
  appearance: none;
  background-image: url(images/chevron-select.svg);
  background-size: 12px !important;
  background-position: calc(100% - 25px) center;
  background-repeat: no-repeat;
  padding-right: 50px;
}
.hubspot-form form .hs-error-msgs {
  position: absolute;
  margin: 0;
  top: calc(100% - 24px);
}
.hubspot-form form .hs-error-msgs li {
  list-style: none;
  font-size: 10px;
  line-height: 12px;
  font-weight: var(--medium);
  color: #ff7070;
  margin: 0;
  padding-left: 8px;
}
.hubspot-form form .hs-form-booleancheckbox {
  list-style: none;
  position: relative;
}
.hubspot-form form .hs-form-booleancheckbox-display input {
  position: absolute;
  top: 0px;
  width: 18px;
  height: 18px;
}
.hubspot-form form .hs-form-booleancheckbox-display span {
  font-size: var(--text-extrasmall-size);
  line-height: var(--text-extrasmall-lineheight);
  padding-left: 5px;
}
.hubspot-form form .legal-consent-container .hs-form-field .input {
  margin-bottom: 0 !important;
}
.hubspot-form form .legal-consent-container p {
  font-size: var(--text-extrasmall-size);
  line-height: var(--text-extrasmall-lineheight);
}
.hubspot-form form .legal-consent-container p a {
  color: var(--yellow);
}
.hubspot-form form .hs-button {
  font-family: var(--primary-font-family);
  text-transform: unset;
  width: 100%;
}
.hubspot-form form > .hs_error_rollup .hs-error-msgs {
  position: relative;
  margin-bottom: var(--margin-small);
}
@media (max-width: 540px) {
  .hubspot-form form .form-columns-2 {
    flex-wrap: wrap;
    gap: 0 !important;
  }
}
.newsletter-form .hubspot-form form {
  display: flex;
  flex-wrap: wrap;
}
.newsletter-form .hubspot-form form .hs-form-field .input {
  margin: 0 !important;
}
.newsletter-form .hubspot-form form .hs-form-field > label {
  display: none;
}
.newsletter-form .hubspot-form form input[type="email"] {
  border: 1px solid var(--medium-blue);
  padding: 8px 15px;
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  border-radius: 100px 0 0 100px;
}
.newsletter-form .hubspot-form form .hs-email {
  width: calc(100% - 130px) !important;
}
.newsletter-form .hubspot-form form .hs-submit {
  width: 130px;
}
.newsletter-form .hubspot-form form .hs-button {
  background-color: var(--medium-blue);
  color: var(--white) !important;
  padding: 6px 10px 6px 5px;
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  border-radius: 0 100px 100px 0;
}
.newsletter-form .hubspot-form form .legal-consent-container {
  order: 3;
  width: 100%;
  margin-top: 0;
}
.newsletter-form .hubspot-form form .legal-consent-container p a {
  color: var(--pink);
}
.newsletter-form .hubspot-form form .hs-error-msgs {
  display: none;
}
.newsletter-form .hubspot-form form .hs-form-required {
  display: none !important;
}
.newsletter-form .hubspot-form form .hs-form-booleancheckbox {
  margin: 0;
  padding-left: 10px;
}
.newsletter-form .hubspot-form form .hs-form-booleancheckbox-display input {
  width: 14px;
  height: 14px;
  top: 3px;
}
.newsletter-form .hubspot-form form .hs-form-booleancheckbox-display span {
  padding-left: 0;
}
.newsletter-form .hubspot-form form .hs_error_rollup {
  order: 3;
}
.newsletter-form .hubspot-form form .hs_error_rollup .hs-error-msgs {
  top: 0;
  margin-bottom: 0;
}
.newsletter-form .hubspot-form .submitted-message p {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  color: var(--dark-blue);
}
@media (max-width: 700px) {
  .newsletter-form .hubspot-form form {
    flex-direction: column;
  }
  .newsletter-form .hubspot-form form .hs-email {
    width: 100% !important;
  }
  .newsletter-form .hubspot-form form input[type="email"] {
    border-radius: 100px;
  }
  .newsletter-form .hubspot-form form .hs-button {
    border-radius: 100px;
    margin-top: 10px;
  }
}
/******************** LOOM FIX ***********************/
section#shadow-host-companion {
  padding: 0 !important;
}
/******************** HEADER ***********************/
.main-header {
  position: absolute;
  width: 100%;
  z-index: 9999;
  background-color: var(--dark-blue);
}
.main-header--fixed {
  position: fixed;
  top: -80px;
  opacity: 0;
  box-shadow: var(--box-shadow-regular);
}
.main-header--transition-off {
  top: -80px;
  opacity: 0;
  transition: top 0.3s linear, opacity 0.5s linear;
}
.main-header--transition-on {
  top: 0;
  opacity: 1;
  transition: top 0.3s linear, opacity 0.5s linear;
}
.main-header__container {
  gap: var(--margin-regular);
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 60px;
}
.main-header__logo {
  display: flex;
  gap: var(--margin-small);
  align-items: center;
}
.main-header__logo-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  max-width: 142px;
}
.main-header__logo-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.main-header__logo-text {
  color: #D9D9D9;
  font-size: var(--text-extrasmall-size);
  line-height: var(--text-extrasmall-lineheight);
  margin: 0;
}
/******************** FILTERS BAR ***********************/
.page-template-template-blog section:first-of-type, .page-template-template-resources section:first-of-type {
  padding-top: calc(var(--section-spacing-large)*1.8);
}
@media (max-width: 700px) {
  .page-template-template-blog section:first-of-type, .page-template-template-resources section:first-of-type {
    padding-top: calc(var(--section-spacing-large)*3.8);
  }
}
.page-template-template-blog .main-header--fixed .main-header__container, .page-template-template-resources .main-header--fixed .main-header__container {
  display: none;
}
.page-template-template-blog .main-header--fixed .main-header__logo-text, .page-template-template-resources .main-header--fixed .main-header__logo-text {
  color: var(--dark-blue);
}
.page-template-template-blog .main-header--fixed .filters-bar, .page-template-template-resources .main-header--fixed .filters-bar {
  min-height: 35px;
}
.page-template-template-blog .main-header--fixed .filters-bar__logo, .page-template-template-resources .main-header--fixed .filters-bar__logo {
  display: flex;
}
.page-template-template-blog .main-header--fixed .filters-bar__content, .page-template-template-resources .main-header--fixed .filters-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--margin-small) var(--margin-regular);
  flex-wrap: wrap;
}
.page-template-template-blog .main-header--fixed .filters-bar__list, .page-template-template-resources .main-header--fixed .filters-bar__list {
  gap: 5px var(--margin-regular);
  flex-wrap: wrap;
}
.filters-bar {
  background-color: var(--light-blue);
  padding: var(--margin-small) 0;
}
.filters-bar__logo {
  display: none;
}
.filters-bar__list {
  gap: var(--margin-extrasmall) var(--margin-small);
}
.filters-bar__category {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  color: var(--dark-blue);
  font-weight: var(--medium);
}
.filters-bar__category:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media (max-width: 700px) {
  .filters-bar__list {
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .filters-bar__category {
    font-size: var(--text-extrasmall-size);
    line-height: var(--text-small-lineheight);
  }
}
/******************** SUBSCRIPTION BAR ***********************/
.single-post section:first-of-type {
  padding-top: calc(var(--section-spacing-large)*1.4);
}
@media (max-width: 700px) {
  .single-post section:first-of-type {
    padding-top: calc(var(--section-spacing-large)*3.2);
  }
}
.responsive-menu, .responsive-menu-button, .main-menu > li.menu-item-has-children > .sub-menu {
  display: none;
}
/* MENU BUTTON */
.menu-button .item__title {
  margin: 0;
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  font-weight: var(--medium);
  padding-top: 7px;
  padding-bottom: 7px;
}
/* MENU ITEM */
.main-menu .item__title {
  color: var(--white);
  width: max-content;
  font-weight: var(--medium);
}
/* RESPONSIVE MENU */
.responsive-menu {
  background-color: var(--dark-blue);
  position: fixed;
  top: 0px;
  right: -100%;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  padding: 25px 10%;
  transition: right 0.3s linear;
  overflow: scroll;
  display: block;
  box-sizing: border-box;
  /* RESPONSIVE MAIN MENU */
}
.responsive-menu.responsive-menu--active {
  right: 0px;
}
.responsive-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--margin-regular);
}
.responsive-menu-button {
  flex-direction: column;
  width: 32px;
  gap: 6px;
  cursor: pointer;
}
.responsive-menu-button-line {
  width: 100%;
  height: 3px;
  display: block;
  border-radius: 10px;
  background-color: var(--white);
}
.responsive-menu-button--close {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
}
.responsive-menu-button-line--close {
  height: 3px;
  background-color: var(--white);
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 0;
  transform: rotate(45deg);
  top: calc(50% - 1.5px);
  position: absolute;
}
.responsive-menu-button-line--close:last-child {
  transform: rotate(-45deg);
}
.responsive-menu__menu-container {
  margin-top: var(--margin-medium);
}
.responsive-menu .main-menu--responsive {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.responsive-menu .main-menu--responsive > li {
  width: 100%;
}
.responsive-menu .main-menu--responsive .item__title {
  font-size: var(--text-extralarge-size) !important;
  line-height: var(--text-extralarge-lineheight) !important;
}
.responsive-menu .main-menu--responsive .menu-button .item__title {
  font-size: var(--text-extralarge-size);
  line-height: var(--text-extralarge-lineheight);
  padding: 10px 20px;
}
.responsive-menu .main-menu--responsive > li.menu-item-has-children > .item {
  padding: 0;
  margin: 0;
}
.responsive-menu .main-menu--responsive > li.menu-item-has-children > .item:after {
  top: 8px;
  transition: var(--transition-regular);
}
.responsive-menu .main-menu--responsive > li.menu-item-has-children.sub-menu--open > .item::after {
  transform: rotate(180deg);
}
.responsive-menu .main-menu--responsive > li.menu-item-has-children > .sub-menu {
  display: none;
  position: relative;
  width: 100%;
  margin: 15px 0 0;
  padding: 0 0 0 15px;
  top: 0;
  left: unset;
  opacity: 1;
  box-shadow: none;
  box-sizing: border-box;
  background: no-repeat;
  transition: none;
}
.responsive-menu .main-menu--responsive.main-menu > li .sub-menu > li:not(:last-child) {
  margin-bottom: 15px;
}
.responsive-menu .main-menu--responsive.main-menu > li.menu-item-has-children > .sub-menu--active .sub-menu {
  display: block !important;
}
.responsive-menu .main-menu--responsive.main-menu > li.menu-item-has-children > .sub-menu .sub-menu {
  padding: 0;
}
@media (max-width: 980px) {
  .main-header__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-header__menu-container {
    display: none;
  }
  .responsive-menu-button {
    display: flex;
  }
  .main-header__container {
    justify-content: space-between;
  }
}
/******************** FOOTER ***********************/
.footer {
  padding: var(--section-spacing-large) 0 0;
  overflow: hidden;
  /* FOOTER MENU */
  /* LAST ROW */
}
.footer__logo {
  margin-bottom: var(--margin-medium);
}
.footer__logo-link {
  display: flex;
  max-width: 235px;
}
.footer__menu-container {
  flex-grow: 1;
}
.footer__subscribe {
  width: 33%;
  max-width: 400px;
  min-width: 340px;
}
.footer__subscribe-title {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  font-weight: var(--medium);
  color: var(--dark-blue);
}
.footer .footer-menu .menu-item-has-children > .item {
  display: none;
}
.footer .footer-menu {
  display: flex;
  align-items: flex-start;
  gap: 10px var(--margin-large);
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .footer-menu > .menu-item {
  flex-grow: 1;
}
.footer .footer-menu > .menu-item > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.footer .footer-menu > .menu-item > .sub-menu li {
  list-style: none;
  margin: 0;
}
.footer .footer-menu > .menu-item > .sub-menu li .item {
  transition: var(--transition-regular);
}
.footer .footer-menu > .menu-item > .sub-menu li .item .item__title {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  color: var(--dark-blue);
  transition: var(--transition-regular);
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-menu > .menu-item > .sub-menu li .item .item__title:after {
  content: attr(data-text);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  font-weight: var(--medium);
}
.footer .footer-menu > .menu-item > .sub-menu li .item:hover .item__title {
  font-weight: var(--medium);
}
.footer .footer-menu .menu-item-has-children > .item {
  display: none;
}
.footer__last-row {
  margin-top: var(--section-spacing-regular);
  padding: var(--margin-medium) 0;
  position: relative;
}
.footer__last-row:before {
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  position: absolute;
  z-index: -1;
  background-image: url(images/shape-footer.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.footer__rrss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--margin-regular);
}
.footer__rrss-item {
  width: 40px;
  height: 40px;
  overflow: hidden;
  transition: none;
}
.footer__rrss-item:hover {
  opacity: 0.7;
}
.footer__rrss-icon {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__bottom {
  color: var(--white);
  margin-top: var(--margin-regular);
}
.footer__copyright {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  margin: 0;
}
.footer .legal-menu {
  gap: 10px;
}
.footer .legal-menu .menu-item a {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  text-decoration: underline;
}
.footer .legal-menu .menu-item:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: 10px;
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
}
@media (max-width: 900px) {
  .footer__main {
    flex-wrap: wrap;
  }
  .footer__menu-container, .footer__subscribe {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 700px) {
  .footer__subscribe {
    min-width: 340px;
  }
}
@media (max-width: 500px) {
  .footer__subscribe {
    min-width: unset;
  }
  .footer__rrss {
    gap: var(--margin-small);
    flex-wrap: wrap;
  }
}
/* ----- SECTIONS -------------------------------------------------------------------------------------- */
/******************** ARCHIVE HEADER ***********************/
.archive-header__title {
  margin-bottom: 0px;
}
/******************** FILTERS HEADER ***********************/
@media (min-width: 700px) {
  .filters-header {
    padding-top: calc(var(--section-spacing-regular)*2.5) !important;
  }
}
.filters-header__back-link {
  display: inline-block;
  margin-bottom: var(--margin-small);
}
.filters-header__filters {
  padding: var(--margin-regular) 0;
  position: relative;
}
.filters-header__filters:before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: var(--gray);
  z-index: -1;
}
.filters-header__searchbox {
  width: 100%;
  max-width: 370px;
  position: relative;
}
.filters-header__search {
  width: 100%;
  position: relative;
}
.filters-header__search-button {
  content: "";
  width: 77px;
  height: 100%;
  background-color: var(--medium-blue);
  position: absolute;
  top: 0;
  right: 0;
  border: unset;
  border-radius: 0 28px 28px 0;
  background-image: url(images/icon-search.svg);
  background-position: calc(50% - 3px) center;
  background-repeat: no-repeat;
  background-size: 26px;
  cursor: pointer;
}
input.filters-header__search-input {
  width: 100%;
  border: 1px solid var(--medium-blue);
  border-radius: 28px;
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  font-family: var(--primary-font-family);
  font-weight: var(--light);
  color: var(--black);
  padding: 4px 80px 4px 20px;
  box-sizing: border-box;
  cursor: auto;
}
.filters-header__categories {
  gap: 10px;
}
.filters-header__category {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  border: 1px solid var(--medium-blue);
  border-radius: 33px;
  padding: 4px 18px;
  background-color: var(--light-blue);
}
.filters-header__category--select {
  padding: 0;
}
.filters-header__category--select select {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  font-family: var(--primary-font-family);
  font-weight: var(--light);
  padding: 4px 40px 4px 18px;
  appearance: none;
  width: max-content;
  background-image: url(images/chevron-select.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: calc(100% - 15px) center;
  border: unset;
  background-color: transparent;
}
.filters-header__category--select select option {
  font-family: "Arial";
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
}
.filters-header__category:hover {
  background-color: #b7dfff;
  text-decoration: none;
}
.filters-header__category.current {
  background-color: var(--orange);
  text-decoration: none;
  color: var(--white);
  font-weight: var(--medium);
}
@media (max-width: 1100px) {
  .filters-header__category, .filters-header__category select, input.filters-header__search-input {
    font-size: var(--text-regular-size);
    line-height: var(--text-regular-lineheight);
  }
}
@media (max-width: 820px) {
  .filters-header__filters {
    flex-wrap: wrap;
  }
  .filters-header__searchbox {
    max-width: unset;
  }
  .filters-header__searchbox input {
    padding: 6px 80px 6px 20px;
  }
  .filters-header__search:after {
    background-size: 20px;
  }
}
/******************** BLOG / RESOURCES PAGE ***********************/
.blog-hero__image, .resources-hero__image {
  width: 45%;
  display: flex;
  overflow: hidden;
}
.blog-hero__image img, .resources-hero__image img {
  transition: var(--transition-regular);
}
.blog-hero__container, .resources-hero__container {
  text-decoration: none !important;
}
.blog-hero__container:hover .blog-hero__image img, .resources-hero__container:hover .blog-hero__image img {
  transform: scale(1.05);
}
.blog-hero__text-container, .resources-hero__text-container {
  width: 50%;
}
.blog-hero__text, .resources-hero__text {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .blog-hero__image, .resources-hero__image {
    width: 100%;
    margin-bottom: var(--margin-regular);
  }
  .blog-hero__text-container, .resources-hero__text-container {
    width: 100%;
  }
}
.blog-featured__container {
  border: solid var(--medium-blue);
  border-width: 2px 0;
  padding: var(--margin-regular) 0;
  gap: var(--margin-regular);
}
.blog-featured__title {
  margin-bottom: var(--margin-regular);
}
.blog-featured__card {
  width: calc(33.3% - 20px);
  text-decoration: none !important;
}
.blog-featured__card:hover .post-card__title {
  color: var(--medium-blue);
}
.blog-featured .post-card__title {
  margin: 0;
}
@media (max-width: 780px) {
  .blog-featured__card {
    width: 100%;
  }
}
.posts-list__resources, .resources-list__resources {
  position: relative;
  width: 100%;
  padding: var(--section-spacing-large) 0;
  margin: var(--section-spacing-regular) 0;
}
.posts-list__resources:before, .resources-list__resources:before {
  content: "";
  position: absolute;
  width: 100vw;
  top: 0;
  left: calc(50% - 50vw);
  background-color: var(--gray);
  height: 100%;
  z-index: -1;
}
.posts-list__resources-button-container, .resources-list__resources-button-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.posts-list__resources .resource-card__button, .posts-list__resources .resource-card__text, .resources-list__resources .resource-card__button, .resources-list__resources .resource-card__text {
  display: none;
}
.posts-list__pagination, .resources-list__pagination {
  margin-top: var(--margin-large);
}
@media (max-width: 1050px) {
  .posts-list__posts, .posts-list__resources, .resources-list__posts, .resources-list__resources {
    gap: var(--margin-regular) var(--margin-small);
  }
}
.resources-hero + .resources-list {
  padding-top: var(--section-spacing-large);
}
.resources-list__posts {
  gap: var(--section-spacing-large) var(--margin-medium);
}
/******************** BLOG / RESOURCE CARD ***********************/
.post-card--list, .resource-card--list {
  width: calc(33.3% - 30px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.post-card__post, .resource-card__post {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}
.post-card__post:hover .resource-card__image, .post-card__post:hover .post-card__image, .resource-card__post:hover .resource-card__image, .resource-card__post:hover .post-card__image {
  transform: scale(1.05);
}
.post-card__image-container, .resource-card__image-container {
  display: flex;
  margin-bottom: var(--margin-small);
  overflow: hidden;
}
.post-card__image, .resource-card__image {
  transition: var(--transition-regular);
}
.post-card__info, .resource-card__info {
  display: flex;
  gap: 10px var(--margin-extrasmall);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--margin-small);
}
.post-card__info p, .resource-card__info p {
  font-size: var(--text-extrasmall-size);
  line-height: var(--text-extrasmall-lineheight);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.post-card__categories, .resource-card__categories {
  display: flex;
  gap: 10px var(--margin-extrasmall);
  align-items: center;
}
.post-card__categories + .post-card__read-time:before, .resource-card__categories + .post-card__read-time:before {
  content: "- ";
}
.post-card__category:not(:last-child)::after, .resource-card__category:not(:last-child)::after {
  content: ",";
}
.post-card__countries, .resource-card__countries {
  display: flex;
  gap: 10px var(--margin-extrasmall);
}
.post-card__country, .resource-card__country {
  background-color: var(--light-blue);
  padding: 4px 8px;
  border-radius: 57px;
  margin: -4px 0 !important;
}
.post-card__title, .resource-card__title {
  margin-bottom: 0;
}
.post-card__text, .resource-card__text {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  margin: var(--margin-small) 0 0;
}
.post-card__button, .resource-card__button {
  margin-top: var(--margin-small);
  display: inline-block;
}
@media (max-width: 1050px) {
  .post-card--list, .resource-card--list {
    width: calc(33.3% - 10px);
  }
}
@media (max-width: 780px) {
  .post-card--list, .resource-card--list {
    width: 100%;
  }
  .post-card__post, .resource-card__post {
    flex-direction: row;
    align-items: center;
    gap: var(--margin-small);
  }
  .post-card__image-container, .resource-card__image-container {
    min-width: 40%;
    width: 40%;
    margin: 0;
  }
}
@media (max-width: 700px) {
  .post-card__info, .resource-card__info {
    margin-bottom: var(--margin-extrasmall);
  }
}
@media (max-width: 500px) {
  .post-card__post, .resource-card__post {
    flex-direction: column;
  }
  .post-card__image-container, .resource-card__image-container {
    width: 100%;
  }
}
/******************** BLOG POST ***********************/
.blog-post__container {
  display: flex;
  gap: var(--margin-medium);
}
.blog-post__sidebar {
  min-width: 380px;
}
.blog-post__sidebar-content {
  position: sticky;
  top: var(--margin-regular);
}
.blog-post__back-link {
  margin-bottom: var(--margin-regular);
  display: inline-block;
}
.blog-post__image {
  display: flex;
}
.blog-post__table-of-content {
  background-color: var(--light-blue);
  margin-top: var(--margin-medium);
  padding: var(--margin-regular);
}
.blog-post__table-of-content-title {
  font-size: var(--text-extrasmall-size);
  line-height: var(--text-extrasmall-lineheight);
  margin: 0;
  position: relative;
}
.blog-post__table-of-content-container {
  margin-top: var(--margin-small);
}
.blog-post__table-of-content-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--margin-small);
}
.blog-post__table-of-content-list li {
  list-style: none;
  margin: 0;
}
.blog-post__table-of-content-item {
  text-decoration: none !important;
  font-weight: var(--medium);
}
.blog-post__table-of-content-item:hover, .blog-post__table-of-content-item--active {
  font-weight: var(--bold);
}
@media (max-width: 1040px) {
  .blog-post__container {
    flex-wrap: wrap;
  }
  .blog-post__sidebar {
    min-width: unset;
  }
  .blog-post__sidebar-content {
    width: 100%;
    position: relative;
    top: 0;
    display: flex;
    gap: 0 var(--margin-regular);
    flex-wrap: wrap;
  }
  .blog-post__back-link {
    width: 100%;
  }
  .blog-post__image {
    width: calc(50% - 15px);
    order: 2;
  }
  .blog-post__table-of-content {
    width: calc(50% - 15px);
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 700px) {
  .blog-post {
    padding-top: calc(var(--section-spacing-large)*2.5) !important;
  }
  .blog-post__image {
    width: 100%;
    order: 0;
  }
  .blog-post__table-of-content {
    width: 100%;
    margin-top: var(--margin-regular);
    padding: var(--margin-small);
  }
  .blog-post__table-of-content-title {
    font-size: var(--text-regular-size);
    line-height: var(--text-regular-lineheight);
    color: var(--dark-blue);
    font-weight: var(--medium);
    cursor: pointer;
  }
  .blog-post__table-of-content-title:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(images/chevron-select.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 8px;
    right: 0;
    transition: var(--transition-regular);
  }
  .blog-post__table-of-content-title.active:after {
    transform: rotate(180deg);
    top: 2px;
  }
  .blog-post__table-of-content-item {
    font-weight: var(--light);
  }
  .blog-post__table-of-content-container {
    display: none;
  }
}
/******************** SUBSCRIPTION BANNER ***********************/
.subscription-banner .section-title {
  font-weight: var(--bold);
}
.subscription-banner .section-subtitle {
  margin-bottom: 0;
}
.subscription-banner__box {
  background-color: var(--light-blue);
  padding: var(--margin-large);
}
.subscription-banner__text-container {
  width: 54%;
  color: var(--dark-blue);
}
.subscription-banner__form-container {
  width: 38%;
}
.subscription-banner .hubspot-form form input[type="email"] {
  background-color: var(--white);
}
@media (max-width: 1000px) {
  .subscription-banner__text-container {
    width: 100%;
  }
  .subscription-banner__form-container {
    width: 100%;
    margin-top: var(--margin-regular);
    max-width: 450px;
  }
}
@media (max-width: 600px) {
  .subscription-banner__box {
    padding: var(--margin-regular);
  }
}
/******************** TEXT FORM ***********************/
@media (min-width: 700px) {
  .text-form {
    padding-top: calc(var(--section-spacing-regular)*2.5) !important;
  }
}
.text-form__info {
  width: 50%;
}
.text-form__content h1, .text-form__content h2, .text-form__content h3 {
  font-weight: var(--medium);
}
.text-form__content h1, .text-form__content h2, .text-form__content h3, .text-form__content p, .text-form__content li, .text-form__content a {
  color: var(--dark-blue);
}
.text-form__content li {
  font-size: var(--text-regular-size);
  line-height: var(--text-regular-lineheight);
  margin-bottom: var(--margin-regular);
  padding-left: var(--margin-regular) !important;
}
.text-form__content li:before {
  width: 22px !important;
  height: 22px !important;
  top: 4px !important;
  left: 0 !important;
  background-image: url(images/shape-list.svg);
  background-size: 18px;
  background-color: unset !important;
  background-repeat: no-repeat;
  background-position: center;
}
.text-form__logos {
  margin-top: calc(var(--section-spacing-large)*2);
}
.text-form__logos-title {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  font-weight: var(--light);
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: var(--margin-regular);
}
.text-form__logos-container {
  gap: var(--margin-extrasmall);
}
.text-form__logo {
  display: flex;
}
.text-form__logo img {
  max-height: 60px;
}
.text-form__form-title {
  font-weight: var(--bold);
  margin-bottom: var(--margin-regular);
}
.text-form__form-container {
  width: 40%;
  color: var(--white);
  background-color: var(--medium-blue);
  border: 3px solid var(--yellow);
  padding: var(--margin-regular);
  filter: drop-shadow(10px 10px var(--yellow));
}
@media (max-width: 800px) {
  .text-form__content :first-child {
    margin-top: 0;
  }
  .text-form__info {
    width: 100%;
  }
  .text-form__form-container {
    width: 100%;
    margin-top: var(--section-spacing-large);
    max-width: 430px;
  }
}
@media (max-width: 500px) {
  .text-form__form-container {
    padding: var(--margin-regular) var(--margin-small);
  }
}
/******************** NEWSLETTER BANNER ***********************/
.newsletter-banner__box {
  background-color: var(--light-blue);
  padding: var(--margin-medium);
}
.newsletter-banner__text {
  width: 100%;
}
.newsletter-banner__form-container {
  flex-shrink: 0;
  width: 40%;
  min-width: 250px;
}
.newsletter-banner__title {
  font-weight: var(--bold);
}
.newsletter-banner__subtitle {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .newsletter-banner__box {
    flex-wrap: wrap;
  }
  .newsletter-banner__form-container {
    width: 100%;
    min-width: unset;
    margin-top: var(--margin-regular);
  }
}
@media (max-width: 500px) {
  .newsletter-banner__box {
    padding: var(--margin-regular);
  }
}
/******************** RELATED-POSTS /RESOURCES ***********************/
@media (max-width: 1050px) {
  .related-posts__content, .related-resources__content {
    gap: var(--margin-regular) var(--margin-small);
  }
}
.related-resources {
  background-color: var(--gray);
  padding: var(--section-spacing-large) 0;
}
/******************** BANNER ***********************/
.banner__box {
  position: relative;
  color: var(--white);
  background-color: var(--medium-blue);
  border: 3px solid var(--yellow);
  padding: var(--margin-medium);
  filter: drop-shadow(10px 10px var(--yellow));
}
.banner__title {
  font-weight: var(--bold);
}
@media (max-width: 500px) {
  .banner__box {
    padding: var(--margin-regular);
  }
}
/******************** THANK YOU PAGE ***********************/
.thank-you {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30vh;
}
.thank-you .page-title {
  font-weight: var(--bold);
}
.thank-you .page-subtitle {
  font-size: var(--text-large-size);
  line-height: var(--text-large-lineheight);
  margin-bottom: 0;
}
/******************** 404 PAGE ***********************/
.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48vh;
}
.not-found .page-title {
  font-size: var(--title-large-size);
  line-height: var(--title-large-lineheight);
  font-weight: var(--bold);
  color: var(--dark-blue);
}
.not-found .page-subtitle {
  font-weight: var(--light);
}
.not-found .button, .not-found .page-content a.wp-block-button__link, .page-content .not-found a.wp-block-button__link, .not-found .hubspot-form form .hs-button, .hubspot-form form .not-found .hs-button, .not-found .menu-button .item__title, .menu-button .not-found .item__title {
  font-size: var(--text-small-size);
  line-height: var(--text-small-lineheight);
  font-weight: var(--medium);
}
