@import url(https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap);
@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, etc. */
footer[role=contentinfo] .container:after {
  content: "";
  display: table;
  clear: both;
}

/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/* Box Sizing: Border box */
html {
  box-sizing: border-box;
}

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

/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  height: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: black;
  background: white;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
  color: #EA5438;
  text-decoration: none;
}

a:visited {
  color: #EA5438;
}

a:hover,
a:focus {
  color: #EA5438;
}

a:active {
  color: #EA5438;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 */
p,
pre {
  font-size: 200%;
  line-height: 1.4;
  margin: 0 0 1.5em;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: rhythm(1) 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "“" "”" "‘" "’";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Responsive images */
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 2. Remove excess padding in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

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

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  width: 100%;
}

/* Component (SMACSS module) rules */
@font-face {
  font-family: "Socicon";
  src: url("../fonts/Socicon.eot");
  src: url("../fonts/Socicon.eot#iefix") format("embedded-opentype"), url("../fonts/Socicon.woff2") format("woff2"), url("../fonts/Socicon.ttf") format("truetype"), url("../fonts/Socicon.woff") format("woff"), url("../fonts/Socicon.svg#Socicon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.view-comuns-locals .views-row .views-field-field-facebook:before, .view-comuns-locals .views-row .views-field-field-instagram:before, .view-comuns-locals .views-row .views-field-field-twitter:before, .view-comuns-locals .views-row .views-field-field-web:before, .view-comuns-locals .views-row .views-field-field-email:before, [class^=socicon-],
[class*=" socicon-"] {
  font-family: "Socicon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.socicon-500px:before {
  content: "\e000";
}

.socicon-8tracks:before {
  content: "\e001";
}

.socicon-airbnb:before {
  content: "\e002";
}

.socicon-alliance:before {
  content: "\e003";
}

.socicon-amazon:before {
  content: "\e004";
}

.socicon-amplement:before {
  content: "\e005";
}

.socicon-android:before {
  content: "\e006";
}

.socicon-angellist:before {
  content: "\e007";
}

.socicon-apple:before {
  content: "\e008";
}

.socicon-appnet:before {
  content: "\e009";
}

.socicon-baidu:before {
  content: "\e00a";
}

.socicon-bandcamp:before {
  content: "\e00b";
}

.socicon-battlenet:before {
  content: "\e00c";
}

.socicon-beam:before {
  content: "\e00d";
}

.socicon-bebee:before {
  content: "\e00e";
}

.socicon-bebo:before {
  content: "\e00f";
}

.socicon-behance:before {
  content: "\e010";
}

.socicon-blizzard:before {
  content: "\e011";
}

.socicon-blogger:before {
  content: "\e012";
}

.socicon-buffer:before {
  content: "\e013";
}

.socicon-chrome:before {
  content: "\e014";
}

.socicon-coderwall:before {
  content: "\e015";
}

.socicon-curse:before {
  content: "\e016";
}

.socicon-dailymotion:before {
  content: "\e017";
}

.socicon-deezer:before {
  content: "\e018";
}

.socicon-delicious:before {
  content: "\e019";
}

.socicon-deviantart:before {
  content: "\e01a";
}

.socicon-diablo:before {
  content: "\e01b";
}

.socicon-digg:before {
  content: "\e01c";
}

.socicon-discord:before {
  content: "\e01d";
}

.socicon-disqus:before {
  content: "\e01e";
}

.socicon-douban:before {
  content: "\e01f";
}

.socicon-draugiem:before {
  content: "\e020";
}

.socicon-dribbble:before {
  content: "\e021";
}

.socicon-drupal:before {
  content: "\e022";
}

.socicon-ebay:before {
  content: "\e023";
}

.socicon-ello:before {
  content: "\e024";
}

.socicon-endomodo:before {
  content: "\e025";
}

.socicon-envato:before {
  content: "\e026";
}

.socicon-etsy:before {
  content: "\e027";
}

.socicon-facebook:before {
  content: "\e028";
}

.socicon-feedburner:before {
  content: "\e029";
}

.socicon-filmweb:before {
  content: "\e02a";
}

.socicon-firefox:before {
  content: "\e02b";
}

.socicon-flattr:before {
  content: "\e02c";
}

.socicon-flickr:before {
  content: "\e02d";
}

.socicon-formulr:before {
  content: "\e02e";
}

.socicon-forrst:before {
  content: "\e02f";
}

.socicon-foursquare:before {
  content: "\e030";
}

.socicon-friendfeed:before {
  content: "\e031";
}

.socicon-github:before {
  content: "\e032";
}

.socicon-goodreads:before {
  content: "\e033";
}

.socicon-google:before {
  content: "\e034";
}

.socicon-google-scholar:before {
  content: "\e035";
}

.socicon-googlegroups:before {
  content: "\e036";
}

.socicon-googlephotos:before {
  content: "\e037";
}

.socicon-googleplus:before {
  content: "\e038";
}

.socicon-grooveshark:before {
  content: "\e039";
}

.socicon-hackerrank:before {
  content: "\e03a";
}

.socicon-hearthstone:before {
  content: "\e03b";
}

.socicon-hellocoton:before {
  content: "\e03c";
}

.socicon-heroes:before {
  content: "\e03d";
}

.socicon-hitbox:before {
  content: "\e03e";
}

.socicon-horde:before {
  content: "\e03f";
}

.socicon-houzz:before {
  content: "\e040";
}

.socicon-icq:before {
  content: "\e041";
}

.socicon-identica:before {
  content: "\e042";
}

.socicon-imdb:before {
  content: "\e043";
}

.socicon-instagram:before {
  content: "\e044";
}

.socicon-issuu:before {
  content: "\e045";
}

.socicon-istock:before {
  content: "\e046";
}

.socicon-itunes:before {
  content: "\e047";
}

.socicon-keybase:before {
  content: "\e048";
}

.socicon-lanyrd:before {
  content: "\e049";
}

.socicon-lastfm:before {
  content: "\e04a";
}

.socicon-line:before {
  content: "\e04b";
}

.socicon-linkedin:before {
  content: "\e04c";
}

.socicon-livejournal:before {
  content: "\e04d";
}

.socicon-lyft:before {
  content: "\e04e";
}

.socicon-macos:before {
  content: "\e04f";
}

.socicon-mail:before {
  content: "\e050";
}

.socicon-medium:before {
  content: "\e051";
}

.socicon-meetup:before {
  content: "\e052";
}

.socicon-mixcloud:before {
  content: "\e053";
}

.socicon-modelmayhem:before {
  content: "\e054";
}

.socicon-mumble:before {
  content: "\e055";
}

.socicon-myspace:before {
  content: "\e056";
}

.socicon-newsvine:before {
  content: "\e057";
}

.socicon-nintendo:before {
  content: "\e058";
}

.socicon-npm:before {
  content: "\e059";
}

.socicon-odnoklassniki:before {
  content: "\e05a";
}

.socicon-openid:before {
  content: "\e05b";
}

.socicon-opera:before {
  content: "\e05c";
}

.socicon-outlook:before {
  content: "\e05d";
}

.socicon-overwatch:before {
  content: "\e05e";
}

.socicon-patreon:before {
  content: "\e05f";
}

.socicon-paypal:before {
  content: "\e060";
}

.socicon-periscope:before {
  content: "\e061";
}

.socicon-persona:before {
  content: "\e062";
}

.socicon-pinterest:before {
  content: "\e063";
}

.socicon-play:before {
  content: "\e064";
}

.socicon-player:before {
  content: "\e065";
}

.socicon-playstation:before {
  content: "\e066";
}

.socicon-pocket:before {
  content: "\e067";
}

.socicon-qq:before {
  content: "\e068";
}

.socicon-quora:before {
  content: "\e069";
}

.socicon-raidcall:before {
  content: "\e06a";
}

.socicon-ravelry:before {
  content: "\e06b";
}

.socicon-reddit:before {
  content: "\e06c";
}

.socicon-renren:before {
  content: "\e06d";
}

.socicon-researchgate:before {
  content: "\e06e";
}

.socicon-residentadvisor:before {
  content: "\e06f";
}

.socicon-reverbnation:before {
  content: "\e070";
}

.socicon-rss:before {
  content: "\e071";
}

.socicon-sharethis:before {
  content: "\e072";
}

.socicon-skype:before {
  content: "\e073";
}

.socicon-slideshare:before {
  content: "\e074";
}

.socicon-smugmug:before {
  content: "\e075";
}

.socicon-snapchat:before {
  content: "\e076";
}

.socicon-songkick:before {
  content: "\e077";
}

.socicon-soundcloud:before {
  content: "\e078";
}

.socicon-spotify:before {
  content: "\e079";
}

.socicon-stackexchange:before {
  content: "\e07a";
}

.socicon-stackoverflow:before {
  content: "\e07b";
}

.socicon-starcraft:before {
  content: "\e07c";
}

.socicon-stayfriends:before {
  content: "\e07d";
}

.socicon-steam:before {
  content: "\e07e";
}

.socicon-storehouse:before {
  content: "\e07f";
}

.socicon-strava:before {
  content: "\e080";
}

.socicon-streamjar:before {
  content: "\e081";
}

.socicon-stumbleupon:before {
  content: "\e082";
}

.socicon-swarm:before {
  content: "\e083";
}

.socicon-teamspeak:before {
  content: "\e084";
}

.socicon-teamviewer:before {
  content: "\e085";
}

.socicon-technorati:before {
  content: "\e086";
}

.socicon-telegram:before {
  content: "\e087";
}

.socicon-tripadvisor:before {
  content: "\e088";
}

.socicon-tripit:before {
  content: "\e089";
}

.socicon-triplej:before {
  content: "\e08a";
}

.socicon-tumblr:before {
  content: "\e08b";
}

.socicon-twitch:before {
  content: "\e08c";
}

.socicon-twitter:before {
  content: "\e08d";
}

.socicon-uber:before {
  content: "\e08e";
}

.socicon-ventrilo:before {
  content: "\e08f";
}

.socicon-viadeo:before {
  content: "\e090";
}

.socicon-viber:before {
  content: "\e091";
}

.socicon-viewbug:before {
  content: "\e092";
}

.socicon-vimeo:before {
  content: "\e093";
}

.socicon-vine:before {
  content: "\e094";
}

.socicon-vkontakte:before {
  content: "\e095";
}

.socicon-warcraft:before {
  content: "\e096";
}

.socicon-wechat:before {
  content: "\e097";
}

.socicon-weibo:before {
  content: "\e098";
}

.socicon-whatsapp:before {
  content: "\e099";
}

.socicon-wikipedia:before {
  content: "\e09a";
}

.socicon-windows:before {
  content: "\e09b";
}

.socicon-wordpress:before {
  content: "\e09c";
}

.socicon-wykop:before {
  content: "\e09d";
}

.socicon-xbox:before {
  content: "\e09e";
}

.socicon-xing:before {
  content: "\e09f";
}

.socicon-yahoo:before {
  content: "\e0a0";
}

.socicon-yammer:before {
  content: "\e0a1";
}

.socicon-yandex:before {
  content: "\e0a2";
}

.socicon-yelp:before {
  content: "\e0a3";
}

.socicon-younow:before {
  content: "\e0a4";
}

.socicon-youtube:before {
  content: "\e0a5";
}

.socicon-zapier:before {
  content: "\e0a6";
}

.socicon-zerply:before {
  content: "\e0a7";
}

.socicon-zomato:before {
  content: "\e0a8";
}

.socicon-zynga:before {
  content: "\e0a9";
}

/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 */
/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

a[data-action] {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
}
a[data-action]:hover {
  background-color: #ff7c64;
}

.view .view-header {
  max-width: 1000px;
  margin: 0 auto;
}
.view .views-row {
  position: relative;
}
.view .views-row .views-field-edit-node {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.view .views-row .views-field-edit-node a {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  font-size: 18px;
  min-width: 0;
}
.view .views-row .views-field-edit-node a:hover {
  background-color: #ff7c64;
}

ul.tabs {
  padding: 0 5px;
  margin: 20px 0;
  border-bottom: 1px solid #9B9B9B;
}
ul.tabs li {
  display: inline;
  position: relative;
  margin-right: 2px;
}
ul.tabs li.is-active {
  top: 1px;
}
ul.tabs li.is-active a {
  background-color: white;
  color: black;
}
ul.tabs li a {
  padding: 0 5px;
  font-size: 140%;
  color: #9B9B9B;
  border: 1px solid #9B9B9B;
  background-color: #efefef;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
ul.tabs li a:hover {
  color: black;
}

.messages {
  font-size: 180%;
}

.slick-slider {
  position: relative;
}
.slick-slider .slick-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: white url("../images/slider-previous.svg") no-repeat center;
  border: none;
  padding: 0;
}
.slick-slider .slick-arrow.slick-next {
  left: auto;
  right: 30px;
  background-image: url("../images/slider-next.svg");
}
.slick-slider .slick-arrow.slick-disabled {
  cursor: inherit;
  opacity: 0.3;
}
.slick-slider .slick-arrow span {
  display: none;
}

/**
 * @file
 * Forms styles
 *
 */
.form-item {
  margin-bottom: 10px;
}
.form-item.form-type-checkbox label {
  display: inline;
  font-size: 140%;
}
.form-item label {
  font-size: 180%;
  font-weight: normal;
  display: block;
  margin-bottom: 0.4em;
}
.form-item input[type=text], .form-item input[type=email], .form-item input[type=password], .form-item select, .form-item textarea {
  font-size: 180%;
  font-weight: 200;
  border-radius: 10px;
  width: 100%;
}
.form-item input[type=text], .form-item input[type=email], .form-item input[type=password], .form-item textarea {
  padding: 15px 20px;
  border: 1px solid #9B9B9B;
}
.form-item input[type=text], .form-item input[type=email], .form-item input[type=password], .form-item select {
  height: 63px;
}

.form-actions a, .form-actions input[type=submit], .form-actions button {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.form-actions a:hover, .form-actions input[type=submit]:hover, .form-actions button:hover {
  background-color: #ff7c64;
}

/**
 * @file
 * Block types styles
 *
 */
.block > .inner > h2 {
  font-size: 500%;
  text-align: center;
  color: #EA5438;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto 1em;
}
@media screen and (max-width: 700px) {
  .block > .inner > h2 {
    font-size: 360%;
  }
}
.block .field--name-body {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

main .bundle-basic, main .bundle-none {
  padding-top: 75px;
  padding-bottom: 75px;
  border-top: 1px solid #9B9B9B;
}
main .bundle-basic.block-system-main-block, main .bundle-none.block-system-main-block {
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
}

.bundle-cta {
  padding: 100px 45px;
  background-color: #EA5438;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.bundle-cta[style] {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bundle-cta[style]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.bundle-cta[style] > .inner {
  position: relative;
  z-index: 2;
}
.bundle-cta > .inner {
  text-align: center;
}
.bundle-cta .field--name-body h2 {
  font-size: 800%;
  color: #611B70;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 800px) {
  .bundle-cta .field--name-body h2 {
    font-size: 500%;
  }
}
.bundle-cta .field--name-body p a {
  color: white;
  border-bottom: 1px solid white;
}
.bundle-cta .field--name-field-link {
  margin-top: 50px;
}
.bundle-cta .field--name-field-link a {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  background-color: #611B70;
}
.bundle-cta .field--name-field-link a:hover {
  background-color: #ff7c64;
}
.bundle-cta .field--name-field-link a:hover {
  background-color: #9856a6;
}

.social-links ul {
  display: flex;
  align-items: center;
}
.social-links ul li {
  margin-left: 13px;
}
.social-links ul li:first-child {
  margin-left: 0;
}
.social-links ul li a {
  display: block;
  font-size: 180%;
}
.social-links ul li a:before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.social-links ul li a[data-type=twitter]:before {
  background-image: url("../images/twitter.svg");
}
.social-links ul li a[data-type=facebook]:before {
  background-image: url("../images/facebook.svg");
}
.social-links ul li a[data-type=whatsapp]:before {
  background-image: url("../images/whatsapp.svg");
}
.social-links ul li a[data-type=telegram]:before {
  background-image: url("../images/telegram.svg");
}
.social-links ul li a span {
  display: none;
}

/**
 * @file
 * Page modules
 *
 */
body.header-fixed {
  padding-top: 90px;
}

@media screen and (max-width: 940px) {
  body {
    padding-top: 90px;
  }
}
header[role=banner] {
  height: 90px;
  background-color: #EA5438;
}
body.header-fixed header[role=banner] {
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 940px) {
  header[role=banner] {
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    z-index: 10;
  }
}
body.page-node-type-campaign header[role=banner] {
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header[role=banner] .container {
  height: 100%;
  position: relative;
  padding: 0 45px;
}
header[role=banner] .region-header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header[role=banner] #block-sitebranding {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45px;
  width: 116px;
}
@media screen and (max-width: 940px) {
  header[role=banner] .navigation.menu--main {
    display: none;
  }
}
body.page-node-type-campaign header[role=banner] .navigation.menu--main {
  display: none;
}
header[role=banner] .navigation.menu--main > .inner > ul.menu {
  display: flex;
  align-items: center;
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li {
  margin-left: 25px;
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1200px) {
  header[role=banner] .navigation.menu--main > .inner > ul.menu > li {
    margin-left: 15px;
  }
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li.menu-item--active-trail a {
  border-color: white;
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li a {
  color: white;
  display: block;
  font-size: 220%;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 1200px) {
  header[role=banner] .navigation.menu--main > .inner > ul.menu > li a {
    font-size: 180%;
  }
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li a.donations {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  background-color: #EA5438;
  border: 1px solid white;
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li a.donations:hover {
  background-color: #ff7c64;
}
@media screen and (max-width: 1200px) {
  header[role=banner] .navigation.menu--main > .inner > ul.menu > li a.donations {
    font-size: 180%;
    min-width: 0;
  }
}
header[role=banner] .navigation.menu--main > .inner > ul.menu > li ul {
  display: none;
}
header[role=banner] .block-social-links {
  margin-left: 28px;
}
@media screen and (max-width: 940px) {
  header[role=banner] .block-social-links {
    display: none;
  }
}

.mobile-menu {
  z-index: 100;
  position: fixed;
  top: 0;
  right: -100%;
  width: 92%;
  height: 100%;
  transition: all 1s ease;
}
@media screen and (min-width: 940px) {
  .mobile-menu {
    display: none;
  }
}
body.page-node-type-campaign .mobile-menu {
  display: none;
}
.mobile-menu.opened {
  right: 0;
}
.mobile-menu.opened > nav {
  opacity: 1;
}
.mobile-menu [data-action=open-mobile-menu] {
  position: fixed;
  top: 22px;
  right: 25px;
  width: 50px;
  height: 50px;
  outline: none;
  z-index: 2;
  border: none;
  transition: all 0.5s ease;
  background: none;
  color: white;
}
.mobile-menu [data-action=open-mobile-menu] svg {
  fill: currentColor;
}
.mobile-menu > nav {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  background: #EA5438;
  box-shadow: -5px 0 50px 0 rgba(0, 0, 0, 0.31);
  transition: all 1s ease;
}
.mobile-menu > nav .main > .inner > ul {
  padding: 30px;
}
.mobile-menu > nav .main > .inner > ul li {
  margin-bottom: 10px;
}
.mobile-menu > nav .main > .inner > ul li.menu-item--active-trail ul {
  display: block;
}
.mobile-menu > nav .main > .inner > ul li.menu-item--active-trail > a {
  border-bottom: 2px solid white;
}
.mobile-menu > nav .main > .inner > ul li a {
  color: white;
  font-weight: 200;
  font-size: 240%;
}
.mobile-menu > nav .main > .inner > ul li ul {
  display: none;
  padding: 10px 0 0 30px;
}

.content-top {
  background-color: white;
}

body.page-node-type-campaign main > .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

#block-catencomu-page-title {
  padding-top: 60px;
  margin-top: 0;
  border-top: none;
}

h1.page-title {
  font-size: 500%;
  text-align: center;
  color: #EA5438;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto 1em;
}
@media screen and (max-width: 700px) {
  h1.page-title {
    font-size: 360%;
  }
}

body.path-node .block-page-title-block {
  display: none;
}

article.node--view-mode-full {
  padding: 60px 45px;
}
@media screen and (max-width: 700px) {
  article.node--view-mode-full {
    padding-left: 20px;
    padding-right: 20px;
  }
}
article.node--view-mode-full .node-content a[data-action=go-back] {
  margin-bottom: 20px;
}
article.node--view-mode-full .node-content a[data-action=go-back]:before {
  content: "<";
  margin-right: 5px;
}
article.node--view-mode-full .node-content .field .field__label {
  font-weight: bold;
}
article.node--view-mode-full .node-content .field.field--label-inline .field__label {
  display: inline;
}
article.node--view-mode-full .node-content .field.field--label-inline .field__label:after {
  content: ":";
}
article.node--view-mode-full .node-content .field.field--label-inline .field__item {
  display: inline;
}
article.node--view-mode-full .field--name-field-image {
  max-width: 1200px;
  margin: 0 auto;
}
article.node--view-mode-full .field--name-body, article.node--view-mode-full .field--type-text-with-summary {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
article.node--view-mode-full .field--name-body h2, article.node--view-mode-full .field--type-text-with-summary h2 {
  font-size: 320%;
  margin: 0.5em 0 0.6em;
}
article.node--view-mode-full .field--name-body a.banner, article.node--view-mode-full .field--type-text-with-summary a.banner {
  display: inline-block;
  text-align: center;
  padding: 20px 15px;
  margin: 0 8px 12px 0;
  font-size: 20px;
  font-weight: 300;
  color: white;
  border-radius: 6px;
  min-width: 240px;
}
article.node--view-mode-full .field--name-body ul, article.node--view-mode-full .field--name-body ol, article.node--view-mode-full .field--type-text-with-summary ul, article.node--view-mode-full .field--type-text-with-summary ol {
  padding: 0 0 20px 40px;
  list-style: square;
}
article.node--view-mode-full .field--name-body ul li, article.node--view-mode-full .field--name-body ol li, article.node--view-mode-full .field--type-text-with-summary ul li, article.node--view-mode-full .field--type-text-with-summary ol li {
  font-size: 200%;
  line-height: 1.4;
  margin: 0 0 0.4em;
}
article.node--view-mode-full .content-main {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1070px) {
  article.node--view-mode-full .content-main {
    display: block;
  }
}
@media screen and (max-width: 1070px) {
  article.node--view-mode-full .content-main .share-links {
    margin: 0 auto 30px;
  }
}
article.node--view-mode-full .content-main .share-links h2 {
  text-transform: uppercase;
  font-size: 150%;
  margin-bottom: 1.5em;
}
article.node--view-mode-full .content-main .share-links ul li {
  display: inline-block;
  margin-left: 10px;
}
article.node--view-mode-full .content-main .share-links ul li:first-child {
  margin-left: 0;
}
article.node--view-mode-full .content-main .share-links ul li a {
  font-size: 240%;
}
article.node--view-mode-full .content-main .share-links ul li a span {
  display: none;
}
article.node--view-mode-full .content-main .field--name-body {
  padding-left: 30px;
  margin: 0;
}
@media screen and (max-width: 1070px) {
  article.node--view-mode-full .content-main .field--name-body {
    padding-left: 0;
  }
}
article.node--view-mode-full.node--type-article .field--name-field-press-type, article.node--view-mode-full.node--type-press .field--name-field-press-type {
  color: #EA5438;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 150%;
  margin-bottom: 1em;
}
article.node--view-mode-full.node--type-article h1.page-title, article.node--view-mode-full.node--type-press h1.page-title {
  margin-bottom: 0.3em;
}
article.node--view-mode-full.node--type-article .field-created, article.node--view-mode-full.node--type-press .field-created {
  font-size: 150%;
  text-align: center;
  margin-bottom: 1.2em;
}
article.node--view-mode-full.node--type-campaign > .container {
  max-width: 1000px;
}
article.node--view-mode-full.node--type-campaign .main-image {
  margin-bottom: 20px;
}

.view-actualitat, .view-taxonomy-term {
  padding: 0 45px;
}
@media screen and (max-width: 700px) {
  .view-actualitat, .view-taxonomy-term {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.view-actualitat .view-content, .view-taxonomy-term .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 900px) {
  .view-actualitat .view-content, .view-taxonomy-term .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .view-actualitat .view-content, .view-taxonomy-term .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .view-actualitat .view-content, .view-taxonomy-term .view-content {
    display: block;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.view-actualitat .views-row, .view-taxonomy-term .views-row {
  border-top: 2px solid #EA5438;
  position: relative;
  padding: 50px 0 20px;
}
.view-actualitat .views-field-created, .view-taxonomy-term .views-field-created {
  position: absolute;
  top: 12px;
  right: 0;
  color: #EA5438;
  font-size: 140%;
}
@media screen and (max-width: 800px) {
  .view-actualitat .views-field-created, .view-taxonomy-term .views-field-created {
    top: 6px;
  }
}
.view-actualitat .views-field-field-press-type, .view-taxonomy-term .views-field-field-press-type {
  position: absolute;
  top: 12px;
  left: 0;
  color: #EA5438;
  font-size: 140%;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .view-actualitat .views-field-field-press-type, .view-taxonomy-term .views-field-field-press-type {
    top: 6px;
  }
}
.view-actualitat .views-field-field-image, .view-taxonomy-term .views-field-field-image {
  margin-bottom: 18px;
}
@media screen and (max-width: 1070px) {
  .view-actualitat .views-field-field-image, .view-taxonomy-term .views-field-field-image {
    margin-bottom: 8px;
  }
}
.view-actualitat .views-field-title, .view-taxonomy-term .views-field-title {
  font-size: 240%;
  line-height: 1.1;
  font-weight: 300;
}
@media screen and (max-width: 1400px) {
  .view-actualitat .views-field-title, .view-taxonomy-term .views-field-title {
    font-size: 200%;
  }
}
@media screen and (max-width: 1070px) {
  .view-actualitat .views-field-title, .view-taxonomy-term .views-field-title {
    font-size: 180%;
  }
}
.view-actualitat .views-field-title a, .view-taxonomy-term .views-field-title a {
  color: black;
}
.view-actualitat .views-field-body, .view-taxonomy-term .views-field-body {
  display: none;
}
.view-actualitat .more-link a, .view-taxonomy-term .more-link a {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  display: block;
}
.view-actualitat .more-link a:hover, .view-taxonomy-term .more-link a:hover {
  background-color: #ff7c64;
}

.view-comuns-locals {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
  padding: 50px 0;
}
@media screen and (max-width: 700px) {
  .view-comuns-locals {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.view-comuns-locals .view-content {
  border-bottom: 1px solid #EA5438;
}
.view-comuns-locals .view-content > .item-list.accordion.open > h3:after {
  content: "-";
}
.view-comuns-locals .view-content > .item-list.accordion > h3 {
  cursor: pointer;
}
.view-comuns-locals .view-content > .item-list.accordion > h3:after {
  content: "+";
  font-size: 120%;
}
.view-comuns-locals .view-content > .item-list > h3 {
  display: flex;
  justify-content: space-between;
  color: #EA5438;
  font-weight: 600;
  font-size: 180%;
  padding: 15px;
  border-top: 1px solid #EA5438;
}
.view-comuns-locals .views-row {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 15px 15px;
  border-top: 1px solid #9B9B9B;
  background-color: #f0f0f0;
}
.view-comuns-locals .views-row .views-field-field-city {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 180%;
  font-weight: 600;
  color: #EA5438;
}
.view-comuns-locals .views-row .views-field-title {
  font-size: 180%;
  font-weight: 600;
}
.view-comuns-locals .views-row .views-field-field-facebook, .view-comuns-locals .views-row .views-field-field-instagram, .view-comuns-locals .views-row .views-field-field-twitter, .view-comuns-locals .views-row .views-field-field-web, .view-comuns-locals .views-row .views-field-field-email {
  font-size: 180%;
  font-weight: 200;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.view-comuns-locals .views-row .views-field-field-facebook a, .view-comuns-locals .views-row .views-field-field-instagram a, .view-comuns-locals .views-row .views-field-field-twitter a, .view-comuns-locals .views-row .views-field-field-web a, .view-comuns-locals .views-row .views-field-field-email a {
  color: black;
}
.view-comuns-locals .views-row .views-field-field-facebook:before, .view-comuns-locals .views-row .views-field-field-instagram:before, .view-comuns-locals .views-row .views-field-field-twitter:before, .view-comuns-locals .views-row .views-field-field-web:before, .view-comuns-locals .views-row .views-field-field-email:before {
  margin-right: 5px;
  color: #4A4A4A;
}
.view-comuns-locals .views-row .views-field-field-facebook:after, .view-comuns-locals .views-row .views-field-field-instagram:after, .view-comuns-locals .views-row .views-field-field-twitter:after, .view-comuns-locals .views-row .views-field-field-web:after, .view-comuns-locals .views-row .views-field-field-email:after {
  content: "|";
  padding-left: 5px;
  margin-left: 5px;
}
.view-comuns-locals .views-row .views-field-field-facebook:before {
  content: "\e028";
}
.view-comuns-locals .views-row .views-field-field-instagram:before {
  content: "\e044";
}
.view-comuns-locals .views-row .views-field-field-twitter:before {
  content: "\e08d";
}
.view-comuns-locals .views-row .views-field-field-web:before {
  content: "\e957";
}
.view-comuns-locals .views-row .views-field-field-email:before {
  content: "\e050";
}

footer[role=contentinfo] {
  background-color: #EA5438;
  color: white;
}
footer[role=contentinfo] a {
  color: white;
}
footer[role=contentinfo] .container {
  padding: 55px 45px 30px;
}
footer[role=contentinfo] .region-footer-top {
  padding-bottom: 25px;
}
footer[role=contentinfo] .region-footer-top .block-system-branding-block .site-logo {
  display: block;
  width: 150px;
}
footer[role=contentinfo] .footer-main-content {
  display: flex;
  padding-top: 32px;
}
@media screen and (max-width: 900px) {
  footer[role=contentinfo] .footer-main-content {
    display: block;
  }
}
footer[role=contentinfo] .region-footer-menu {
  width: 75%;
}
@media screen and (max-width: 900px) {
  footer[role=contentinfo] .region-footer-menu {
    width: auto;
    margin-bottom: 40px;
  }
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li {
    margin-bottom: 20px;
  }
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li a {
  font-size: 160%;
  font-weight: 600;
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li a.news, footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li a.donations {
  display: none;
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li ul.menu {
  margin-top: 10px;
  display: block;
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li ul.menu li {
  margin-bottom: 2px;
}
footer[role=contentinfo] .region-footer-menu #block-footer-main-menu > .inner > ul.menu li ul.menu li a {
  font-weight: 200;
}
footer[role=contentinfo] .region-footer-contact {
  width: 25%;
}
@media screen and (max-width: 900px) {
  footer[role=contentinfo] .region-footer-contact {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
footer[role=contentinfo] .region-footer-contact p  {
  font-size: 160%;
  margin-bottom: 0;
}
footer[role=contentinfo] .region-footer-contact p  strong {
  font-weight: 600;
}
footer[role=contentinfo] .region-footer-contact #block-footer-social-links {
  margin-bottom: 20px;
}
footer[role=contentinfo] .region-footer-contact #block-footer-social-links .social-links ul {
  justify-content: center;
}
footer[role=contentinfo] .region-footer-bottom {
  display: flex;
  padding-top: 70px;
}
@media screen and (max-width: 1070px) {
  footer[role=contentinfo] .region-footer-bottom {
    display: block;
    text-align: center;
  }
}
footer[role=contentinfo] .region-footer-bottom p  {
  font-size: 160%;
}
footer[role=contentinfo] .region-footer-bottom #block-legal-menu {
  margin-right: 60px;
}
@media screen and (max-width: 1070px) {
  footer[role=contentinfo] .region-footer-bottom #block-legal-menu {
    margin: 0 0 10px 0;
  }
}
footer[role=contentinfo] .region-footer-bottom #block-legal-menu ul.menu li {
  display: inline;
  font-size: 160%;
}
footer[role=contentinfo] .region-footer-bottom #block-legal-menu ul.menu li:before {
  content: "|";
  padding-left: 5px;
}
footer[role=contentinfo] .region-footer-bottom #block-legal-menu ul.menu li:first-child:before {
  content: none;
}

/**
 * @file
 * Home styles
 *
 */
@media screen and (max-width: 940px) {
  body.path-frontpage {
    padding-top: 0;
  }
}
body.path-frontpage.header-fixed header[role=banner] {
  position: fixed;
  background-color: #EA5438;
}
body.path-frontpage.header-fixed header[role=banner] #block-sitebranding {
  top: 50%;
  transform: translateY(-50%);
  width: 116px;
}
body.path-frontpage header[role=banner] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
}
body.path-frontpage header[role=banner] #block-sitebranding {
  top: 23px;
  transform: none;
  width: 190px;
}
@media screen and (max-width: 1070px) {
  body.path-frontpage header[role=banner] #block-sitebranding {
    width: 116px;
  }
}
body.path-frontpage article.node--view-mode-full {
  display: none;
}
body.path-frontpage h1.page-title, body.path-frontpage #block-catencomu-page-title {
  display: none;
}

#block-register-form, #block-participa-register-form {
  padding: 100px 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #611B70;
  border-top: none;
}
@media screen and (max-width: 800px) {
  #block-register-form, #block-participa-register-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-register-form > .inner, #block-participa-register-form > .inner {
  position: relative;
  z-index: 2;
  width: 33.333%;
}
@media screen and (max-width: 1070px) {
  #block-register-form > .inner, #block-participa-register-form > .inner {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  #block-register-form > .inner, #block-participa-register-form > .inner {
    width: 100%;
  }
}
#block-register-form > .inner > h2, #block-participa-register-form > .inner > h2 {
  font-size: 220%;
  text-align: left;
  color: white;
  margin-bottom: 30px;
}
#block-register-form form .form-item.form-type-checkbox label, #block-participa-register-form form .form-item.form-type-checkbox label {
  display: inline;
  color: white;
}
#block-register-form form .form-item label, #block-participa-register-form form .form-item label {
  display: none;
}
#block-register-form form .form-item input[type=text], #block-register-form form .form-item input[type=email], #block-register-form form .form-item input[type=password], #block-register-form form .form-item textarea, #block-participa-register-form form .form-item input[type=text], #block-participa-register-form form .form-item input[type=email], #block-participa-register-form form .form-item input[type=password], #block-participa-register-form form .form-item textarea {
  border: none;
}

#block-register-form {
  position: relative;
  height: 100vh;
  background-size: cover;
}
#block-register-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#block-register-form .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}
#block-register-form .video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#block-featuredvideohome {
  padding: 55px 45px 22px;
}
@media screen and (max-width: 700px) {
  #block-featuredvideohome {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home-columns {
  padding: 22px 45px 55px;
}
@media screen and (max-width: 700px) {
  .home-columns {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-columns > .container > .region {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 27px;
       column-gap: 27px;
}
@media screen and (max-width: 900px) {
  .home-columns > .container > .region {
    display: block;
  }
}
.home-columns .block {
  padding: 0;
  height: 450px;
  display: block;
  background-color: #611B70;
  transition: all ease 0.3s;
}
@media screen and (max-width: 900px) {
  .home-columns .block {
    margin-bottom: 30px;
  }
}
.home-columns .block:hover {
  background-color: #EA5438;
}
.home-columns .block[style]:hover:before {
  background-color: rgba(0, 0, 0, 0.2);
}
.home-columns .block[style]:before {
  transition: all ease 0.3s;
  background-color: rgba(0, 0, 0, 0.6);
}
.home-columns .block > .inner {
  text-align: left;
  padding: 30px 45px 40px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .home-columns .block > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-columns .block .field--name-body {
  max-width: none;
  margin: 0;
}
.home-columns .block .field--name-body h2 {
  font-size: 400%;
  font-weight: 200;
  color: white;
  margin-bottom: 0;
  max-width: 75%;
}
.home-columns .block .field--name-field-link {
  margin-top: 0;
  position: absolute;
  bottom: 40px;
  left: 45px;
}
.home-columns .block .field--name-field-link a {
  padding: 0;
  background-color: transparent;
  min-width: 0;
}
.home-columns .block .field--name-field-link a:hover {
  background-color: transparent;
}
.home-columns .block .field--name-field-link a:after {
  content: ">";
  padding-left: 7px;
}

#block-home-followus {
  padding: 67px 45px;
  background-color: #f0f0f0;
  margin-top: 0;
  border-top: none;
}
@media screen and (max-width: 700px) {
  #block-home-followus {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-home-followus .social-links ul {
  text-align: left;
  justify-content: center;
}
@media screen and (max-width: 1070px) {
  #block-home-followus .social-links ul {
    flex-wrap: wrap;
  }
}
#block-home-followus .social-links ul li {
  width: 290px;
  margin-left: 24px;
}
@media screen and (max-width: 1070px) {
  #block-home-followus .social-links ul li {
    margin: 0 12px 24px;
  }
}
#block-home-followus .social-links ul li:first-child {
  margin-left: 0;
}
#block-home-followus .social-links ul li a {
  display: flex;
  align-items: center;
  color: white;
  background-color: black;
  border-radius: 47px;
  padding: 20px;
}
#block-home-followus .social-links ul li a:before {
  width: 56px;
  height: 56px;
  margin-right: 16px;
}
#block-home-followus .social-links ul li a[data-type=twitter] {
  background-color: #2ba8e0;
}
#block-home-followus .social-links ul li a[data-type=facebook] {
  background-color: #3b5999;
}
#block-home-followus .social-links ul li a[data-type=whatsapp] {
  background-color: #25D366;
}
#block-home-followus .social-links ul li a[data-type=telegram] {
  background-color: #0088cc;
}
#block-home-followus .social-links ul li a span {
  display: inline-block;
}
#block-home-followus .social-links ul li a strong {
  font-weight: bold;
  color: inherit;
  text-transform: capitalize;
}

#block-home-troba-el-teu-comu {
  padding: 100px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #EA5438;
  background-color: white;
}
@media screen and (max-width: 700px) {
  #block-home-troba-el-teu-comu {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-home-troba-el-teu-comu > .inner {
  width: 100%;
}
#block-home-troba-el-teu-comu .field--name-body {
  max-width: 750px;
  margin: 0 auto;
}
#block-home-troba-el-teu-comu .field--name-body p {
  font-size: 500%;
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  #block-home-troba-el-teu-comu .field--name-body p {
    font-size: 320%;
  }
}
#block-home-troba-el-teu-comu .field--name-body p strong {
  font-weight: bold;
}
#block-home-troba-el-teu-comu .field--name-field-link a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px;
  font-weight: 600;
  font-size: 200%;
  color: #EA5438;
  background-color: white;
  border-radius: 47px;
  border: 1px solid #9B9B9B;
}
#block-home-troba-el-teu-comu .field--name-field-link a:hover {
  color: white;
  background-color: #EA5438;
  border-color: transparent;
}
#block-home-troba-el-teu-comu .field--name-field-link a:hover:before {
  background-image: url("../images/search-hover.svg");
}
#block-home-troba-el-teu-comu .field--name-field-link a:before {
  content: "";
  display: inline-block;
  margin-right: 18px;
  width: 21px;
  height: 21px;
  background: url("../images/search.svg") no-repeat center;
  background-size: contain;
}

#block-home-donate, #block-participa-donate {
  padding: 100px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
@media screen and (max-width: 700px) {
  #block-home-donate, #block-participa-donate {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-home-donate > .inner, #block-participa-donate > .inner {
  position: relative;
  z-index: 2;
}
#block-home-donate .field--name-body, #block-participa-donate .field--name-body {
  max-width: 800px;
  margin: 0 auto;
}
#block-home-donate .field--name-body h2, #block-participa-donate .field--name-body h2 {
  color: white;
  font-size: 500%;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 700px) {
  #block-home-donate .field--name-body h2, #block-participa-donate .field--name-body h2 {
    font-size: 320%;
  }
}
#block-home-donate .field--name-body p, #block-participa-donate .field--name-body p {
  font-size: 300%;
  line-height: 1.1;
  margin-bottom: 0;
}
#block-home-donate .field--name-field-link a, #block-participa-donate .field--name-field-link a {
  padding: 20px 25px;
  border-radius: 47px;
  background-color: #EA5438;
}
#block-home-donate .field--name-field-link a:hover, #block-participa-donate .field--name-field-link a:hover {
  background-color: #ff7c64;
}

/**
 * @file
 * Gent Comu styles
 *
 */
#block-qui-som .view-qui-som {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
}
@media screen and (max-width: 700px) {
  #block-qui-som .view-qui-som {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-qui-som .view-qui-som .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (max-width: 700px) {
  #block-qui-som .view-qui-som .view-content {
    display: block;
  }
}
#block-qui-som .view-qui-som .views-row {
  padding-bottom: 0;
}
#block-qui-som .view-qui-som .views-row:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.25) 95%);
}
#block-qui-som .view-qui-som .views-row .views-field-field-image {
  margin-bottom: 0;
}
#block-qui-som .view-qui-som .views-row .views-field-title {
  margin-bottom: 0;
  position: absolute;
  bottom: 40px;
  left: 44px;
  font-size: 300%;
  font-weight: 500;
  color: white;
  z-index: 2;
}
@media screen and (max-width: 1070px) {
  #block-qui-som .view-qui-som .views-row .views-field-title {
    font-size: 240%;
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 700px) {
  #block-qui-som .view-qui-som .views-row .views-field-title {
    font-size: 300%;
    bottom: 40px;
    left: 44px;
  }
}
#block-qui-som .view-qui-som .view-footer {
  padding: 75px 0 0;
  text-align: center;
}
#block-qui-som .view-qui-som .view-footer a[data-action] {
  background-color: white;
  color: #EA5438;
  font-size: 180%;
  font-weight: 600;
  margin: 0 10px 10px;
  padding: 20px 40px;
  border-radius: 47px;
  border: 1px solid #9B9B9B;
}
#block-qui-som .view-qui-som .view-footer a[data-action]:hover {
  color: white;
  background-color: #EA5438;
  border-color: transparent;
}

#block-milestones-block > .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
}
@media screen and (max-width: 700px) {
  #block-milestones-block > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-milestones-block .view-milestones .view-content {
  padding: 50px 0;
}
#block-milestones-block .view-milestones .views-row {
  position: relative;
}
#block-milestones-block .view-milestones .views-row:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.25) 95%);
}
#block-milestones-block .view-milestones .views-row .views-field-title {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  font-weight: 500;
  font-size: 300%;
  color: white;
  z-index: 2;
}
@media screen and (max-width: 1070px) {
  #block-milestones-block .view-milestones .views-row .views-field-title {
    font-size: 240%;
    padding: 0 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  #block-milestones-block .view-milestones .views-row .views-field-title {
    font-size: 300%;
    padding: 0 40px;
    bottom: 40px;
  }
}
#block-milestones-block .view-milestones .views-row .views-field-title a {
  color: white;
}

/**
 * @file
 * Organs and Candidacies styles
 *
 */
#block-organs-menu {
  background-color: #f0f0f0;
  height: 92px;
  padding: 25px 0;
}
#block-organs-menu > .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
}
@media screen and (max-width: 700px) {
  #block-organs-menu > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#block-organs-menu ul.menu {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 45px;
  width: 380px;
  background-color: #611B70;
  border-radius: 21px;
}
@media screen and (max-width: 640px) {
  #block-organs-menu ul.menu {
    left: 50%;
    width: 95%;
    transform: translateX(-50%);
  }
}
#block-organs-menu ul.menu:hover li {
  display: block;
}
#block-organs-menu ul.menu:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  display: block;
  width: 17px;
  height: 10px;
  background-image: url("../images/arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#block-organs-menu ul.menu li {
  display: none;
  padding: 8px 25px;
}
#block-organs-menu ul.menu li:hover a {
  opacity: 0.75;
}
#block-organs-menu ul.menu li.menu-item--active-trail {
  display: block;
}
#block-organs-menu ul.menu li.menu-item--active-trail a {
  font-weight: bold;
}
#block-organs-menu ul.menu li a {
  display: inline-block;
  padding: 0 0 2px;
  color: white;
  font-size: 180%;
}

.view-organs {
  padding: 50px 0;
}
.view-organs .view-content {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 26px;
       column-gap: 26px;
}
@media screen and (max-width: 700px) {
  .view-organs .view-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .view-organs .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .view-organs .view-content {
    display: block;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.view-organs .views-row {
  padding-bottom: 50px;
}
.view-organs .views-row .views-field-field-image {
  margin-bottom: 24px;
}
.view-organs .views-row .views-field-title {
  font-size: 300%;
  font-weight: bold;
  margin-bottom: 10px;
}
.view-organs .views-row .views-field-body p {
  font-size: 140%;
  margin-bottom: 0;
}

.view-organs-list {
  background-color: #611B70;
  color: white;
  padding: 50px 0;
}
.view-organs-list .view-content {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
}
@media screen and (max-width: 700px) {
  .view-organs-list .view-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.view-organs-list .view-content > h3 {
  border-top: 1px solid white;
  padding-top: 40px;
  margin: 80px 0 50px;
  font-size: 180%;
  font-weight: normal;
}
.view-organs-list .view-content > h3:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.view-organs-list .views-row {
  margin-bottom: 30px;
}
.view-organs-list .views-row .views-field-title {
  font-size: 300%;
  font-weight: bold;
}

.view-candidatures .view-content > h3, .view-candidatures .view-content > .view-grouping .view-grouping-header {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 140%;
  margin-bottom: 0.4em;
}
.view-candidatures .view-content .views-row {
  margin-bottom: 20px;
}
.view-candidatures .view-content .views-row .views-field-title {
  font-size: 200%;
  font-weight: bold;
}

.view.candidacies-admin {
  padding-bottom: 10px;
  border-bottom: 1px solid #EA5438;
}
.view.candidacies-admin .view-header {
  font-size: 100%;
}
.view.candidacies-admin .view-header a {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  font-size: 130%;
  padding: 3px;
}
.view.candidacies-admin .view-header a:hover {
  background-color: #ff7c64;
}
.view.candidacies-admin .view-content .views-field-edit-node, .view.candidacies-admin .view-content .views-field-delete-node {
  display: inline-block;
  font-size: 220%;
  text-align: center;
  color: white;
  padding: 7px 20px 6px;
  background-color: #EA5438;
  min-width: 135px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin: 0 3px;
  font-size: 130%;
  padding: 3px;
}
.view.candidacies-admin .view-content .views-field-edit-node:hover, .view.candidacies-admin .view-content .views-field-delete-node:hover {
  background-color: #ff7c64;
}

/**
 * @file
 * Participa styles
 *
 */
body[data-alias="/participa"] article.node--view-mode-full {
  position: absolute;
  top: 190px;
  padding-top: 0;
  padding-bottom: 0;
  color: white;
}
@media screen and (max-width: 1070px) {
  body[data-alias="/participa"] article.node--view-mode-full {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  body[data-alias="/participa"] article.node--view-mode-full {
    position: static;
    top: auto;
    width: auto;
    background-color: #611B70;
    padding: 60px 20px 0;
  }
}
body[data-alias="/participa"] article.node--view-mode-full h1.page-title {
  text-align: left;
  margin: 0 0 1em;
}
body[data-alias="/participa"] article.node--view-mode-full .field--name-body, body[data-alias="/participa"] article.node--view-mode-full .field--type-text-with-summary {
  max-width: 650px;
}
@media screen and (max-width: 800px) {
  body[data-alias="/participa"] article.node--view-mode-full .field--name-body, body[data-alias="/participa"] article.node--view-mode-full .field--type-text-with-summary {
    max-width: none;
  }
}
body[data-alias="/participa"] article.node--view-mode-full .field--name-body p, body[data-alias="/participa"] article.node--view-mode-full .field--type-text-with-summary p {
  font-size: 500%;
  line-height: normal;
  font-weight: 200;
}
@media screen and (max-width: 1070px) {
  body[data-alias="/participa"] article.node--view-mode-full .field--name-body p, body[data-alias="/participa"] article.node--view-mode-full .field--type-text-with-summary p {
    font-size: 320%;
  }
}

@media screen and (max-width: 800px) {
  #block-participa-register-form {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

#block-participa-enroll {
  background-color: white;
  color: inherit;
}
#block-participa-enroll .field--name-body h2 {
  font-size: 500%;
  margin-bottom: 1em;
  color: #EA5438;
}
@media screen and (max-width: 700px) {
  #block-participa-enroll .field--name-body h2 {
    font-size: 320%;
  }
}
#block-participa-enroll .field--name-body p {
  font-size: 300%;
}
@media screen and (max-width: 700px) {
  #block-participa-enroll .field--name-body p {
    font-size: 240%;
  }
}
#block-participa-enroll .field--name-body p a {
  color: inherit;
  border-bottom-color: black;
}
#block-participa-enroll .field--name-field-link a {
  padding: 20px 40px;
  border-radius: 47px;
  font-size: 180%;
  font-weight: 600;
}
