/*
Theme Name: Total Child Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Author: Your Name
Author URI: https://your-site.com
Template: Total
Version: 1.0
*/

/* -- Root --*/

:root {
  --font: 'Assistant', sans serif;
  --font-titol: 'Mulish', sans serif;
  --text-petit: 11px;
  --text: 18px;
  --text-menu: 16px;
  --text-peu: 14px;
  --h1: 30px;
  --h3: 18px;
  --light: 200;
  --normal: 400;
  --bold: 700;
  --extra-bold: 900;
  --blanc: #fff;
  --color: #265270;
  --color-clar: #77A0B7;
  --color-obscur: #142D3D;
  --color-2: #C0181A;
  --color-clar-2: #DDB6B8;
  --color-obscur-2: #73160E;
  --color-text: #202020;
  --gris: #909090;
  --gris-clar: #dedede;
  --gris-obscur: #303030;
}

/* -- Reset -- */

.vc_column-inner {
  margin-bottom: 0px !important;
}

/* -- Seleccio text -- */

::selection {
  background: var(--color);
  color: var(--blanc);
}

::-moz-selection {
  background: var(--color);
  color: var(--blanc);
}

/* -- Suavitzar fonts -- */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -- Top bar -- */

#top-bar-social a.wpex-social-btn-no-style {
  color: var(--color);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#top-bar-social a.wpex-social-btn-no-style:hover {
  color: var(--color-obscur);
}

/* -- Header -- */

#site-header {
  border-bottom: 1px solid var(--gris-clar);
}

#site-logo-link > img {
  width: 130px;
  height: auto;
}

/* Menu */

.main-navigation-ul > .menu-item > a {
  font-family: var(--font);
  font-size: var(--text-menu);
  font-weight: var(--normal);
  color: var(--gris);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.main-navigation-ul > .menu-item > a:hover,
.main-navigation-ul > .current-menu-item > a {
  font-family: var(--font);
  font-size: var(--text-menu);
  font-weight: var(--normal);
  color: var(--color);
}

/* -- Idioma -- */

ul.top-bar-menu > li.wpml-ls-menu-item > a > span.link-inner > span {
  padding: 0 !important;
}

ul.top-bar-menu > li.wpml-ls-menu-item {
  margin: 0 5px 0 0;
}

ul.top-bar-menu > li.menu-item.wpml-ls-menu-item > a {
  font-size: var(--text-petit) !important;
  color: var(--gris);
  text-transform: uppercase;
  font-style: italic;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

ul.top-bar-menu > li.menu-item.wpml-ls-menu-item > a:hover,
ul.top-bar-menu > li.menu-item.wpml-ls-menu-item.wpml-ls-current-language > a {
  color: var(--color);
}

/* -- Menu Mobil -- */

#mobile-menu > div > a {
  color: var(--gris);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#mobile-menu > div > a:hover {
  color: var(--color);
}

#site-header > nav > div > ul > li.menu-item > span > a {
  font-family: var(--font);
  font-size: var(--text);
  font-weight: var(--normal);
  color: var(--color);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#site-header > nav > div > ul > li.menu-item > span > a:hover,
#site-header > nav > div > ul > li.current-menu-item > span > a {
  font-family: var(--font);
  font-size: var(--text);
  font-weight: var(--normal);
  color: var(--color-obscur);
}

/* -- Text -- */

p {
  font-family: var(--font);
  font-size: var(--text);
  font-weight: var(--normal);
  color: var(--color-text);
  letter-spacing: 0.1px;
  line-height: 1.4;
}

strong, b {
  font-weight: var(--bold);
}

h1 {
  font-family: var(--font-titol);
  font-size: var(--h1);
  color: var(--color);
  font-weight: var(--extra-bold);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  margin: 0 0 30px 0 !important;
}

h2 {
  font-family: var(--font-titol);
  font-size: var(--h1);
  color: var(--color);
  font-weight: var(--extra-bold);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  margin: 0 0 30px 0 !important;
}

h3 {
  font-family: var(--font-titol);
  font-size: var(--h3);
  color: var(--gris-obscur);
  font-weight: var(--bold);
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 15px 0 !important;
}

/* -- Enllacos -- */

a {
  font-weight: var(--bold);
  color: var(--color);
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

a:hover {
  color: var(--gris);
  text-decoration: none;
}

/* -- Contingut -- */

div.vc_do_icon.icona {
  margin: 0 0 10px 0 !important;
}

div.icona > div > span {
  color: var(--color-clar) !important;
}

/* -- Formulari -- */

.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form .wpex-select-wrap {
  margin-top: 5px !important;
}

form > p > label {
  font-family: var(--font);
  font-size: var(--text-petit);
  font-weight: var(--normal);
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
}

form > p {
  text-align: center;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea {
  display: inline-block;
  color: var(--color-text);
  padding: 10px 10px;
  margin-bottom: 5px;
  font-family: var(--font);
  font-weight: var(--normal);
  font-size: var(--text);
  line-height: 1;
  width: 100%;
  border: 0px;
  background: var(--gris-clar);
  opacity: 1;
  cursor: ;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

input[type="date"]:hover,
input[type="time"]:hover,
input[type="datetime-local"]:hover,
input[type="week"]:hover,
input[type="month"]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="month"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
  background: #ebebeb;
  opacity: 1;
}

.wpcf7-not-valid-tip {
  color: var(--wpex-red-error) !important;
  font-family: var(--font);
  font-size: var(--text-menu);
  font-weight: var(--normal) !important;
  text-align: center;
}

div.wpcf7-response-output {
  font-family: var(--font);
  color: var(--color-text);
  font-size: var(--text-menu);
}

span.wpcf7-list-item {
  display: inline-block;
  margin-right: 2px !important;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  left: 0px;
  top: 1px;
  width: 13px !important;
  height: 13px !important;
  border: 2px solid var(--color);
  background: var(--blanc);
  color: var(--color-text);
  cursor: pointer;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
  border: 2px solid var(--color);
  background: var(--color);
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  border: 2px solid var(--color);
  background: var(--color) !important;
  outline: none;
}

div.acceptacio > p {
  font-family: var(--font);
  font-size: var(--text);
  font-weight: var(--normal);
  color: var(--color-text);
  text-align: justify;
}

div.acceptacio > p > a {
  font-weight: var(--bold);
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

div.acceptacio > p > a:hover {
  font-weight: var(--bold);
  color: var(--color);
  text-decoration: none;
}

input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: var(--bold);
  margin: 50px auto 0 auto !important;
  padding: 15px 25px;
  font-size: var(--text-menu);
  background-color: var(--color);
  color: var(--blanc);
  border-radius: 0px;
  border-width: 0px;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

input[type="submit"]:hover {
  background-color: var(--color-clar);
  color: var(--color-obscur);
}

/* -- Footer -- */

#peu {
  background: var(--color-obscur);
  padding: 50px 0 0 0;
}

#peu > div > div > div > figure.logo-peu > div > img {
  width: 70px;
  height: auto;
}

#peu > div > div > div > div.text-logo > div > p {
  font-family: var(--font);
  color: var(--blanc);
  font-size: var(--text-menu);
  font-weight: var(--bold);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

div.separador {
  border-color: #0e212b;
}

#peu > div > div > div > div > div > p {
  font-family: var(--font);
  color: var(--color-clar);
  font-weight: var(--normal);
}

#peu > div > div > div > div > div > p > a {
  font-family: var(--font);
  font-size: var(--text-menu);
  color: var(--blanc);
  font-weight: var(--normal);
  letter-spacing: 0.3px;
  opacity: 0.7;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#peu > div > div > div > div > div > p > a:hover {
  color: var(--blanc);
  opacity: 0.3;
}

#peu > div > div > div > div.wpex-social-btns.vcex-social-btns > a {
  font-size: 16px;
  color: var(--blanc);
  opacity: 0.7;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#peu > div > div > div > div.wpex-social-btns.vcex-social-btns > a:hover {
  font-size: 16px;
  color: var(--blanc);
  opacity: 0.3;
}

#peu > div > div > div > figure.vcex-image.vcex-module.wpex-text-center.kit-digital > div > img {
  width: 400px;
  height: auto;
  opacity: 0.4;
}

.ideograma {
  background: var(--color-text);
  padding: 8px 0;
}

#peu > div > div > div > div.ideograma > div > div > div > div > div > p {
  font-family: var(--font);
  color: var(--gris);
  font-size: 13px;
  font-weight: var(--normal);
}

#peu > div > div > div > div.ideograma > div > div > div > div > div > p > a {
  font-family: var(--font);
  color: var(--gris-clar);
  font-weight: var(--bold);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#peu > div > div > div > div.ideograma > div > div > div > div > div > p > a:hover {
  color: var(--gris);
}

/* -- Scroll to top -- */

#site-scroll-top {
  background-color: transparent;
  color: var(--color);
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#site-scroll-top:hover {
  background-color: transparent;
  color: var(--color-clar) !important;
  opacity: 1;
}

/* -- Cookies -- */

.cky-modal {
  font-family: var(--font);
  border-radius: 5px !important;
  color: var(--color-text);
  background: var(--blanc) !important;
  -webkit-transition: all .3s ease-in-out !important;
  -moz-transition: all .3s ease-in-out !important;
  -ms-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

.cky-consent-container .cky-consent-bar {
  font-family: var(--font) !important;
  background: var(--blanc) !important;
  border: 0 !important;
  padding: 25px 25px;
  box-shadow: 0 -1px 10px 0 #acabab4d;
}

.cky-consent-bar .cky-banner-btn-close {
  position: absolute;
  right: 10px !important;
  top: 10px !important;
}

.cky-consent-bar .cky-banner-btn-close img {
  height: 10px !important;
  width: 10px !important;
}

div.cky-consent-container.cky-banner-bottom > div > div > p {
  font-family: var(--font);
  font-size: var(--text);
  font-weight: var(--bold);
  color: var(--color-obscur) !important;
  text-transform: uppercase;
}

div.cky-notice-des > p {
  font-family: var(--font) !important;
  font-size: var(--text) !important;
  font-weight: var(--normal);
  letter-spacing: 0px;
}

div.cky-notice-des > p > a {
  font-family: var(--font);
  font-size: var(--text) !important;
  font-weight: var(--bold);
  color: var(--color-text) !important;
  text-decoration: none !important;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out !important;
  -moz-transition: all .3s ease-in-out !important;
  -ms-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

div.cky-notice-des > p > a:hover {
  opacity: 1;
  color: var(--blanc) !important;
}

.cky-btn,
.cky-btn:hover {
  opacity: 1 !important;
}

.cky-btn.cky-btn-customize,
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-preferences,
.cky-btn-accept,
.cky-btn.cky-btn-accept {
  font-family: var(--font);
  font-size: var(--text-menu);
  text-transform: none;
  color: var(--color-text) !important;
  background: var(--color-clar) !important;
  border: 0;
  border-radius: 5px !important;
  -webkit-transition: all .3s ease-in-out !important;
  -moz-transition: all .3s ease-in-out !important;
  -ms-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

.cky-btn-customize:hover,
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-preferences:hover,
.cky-btn-accept:hover,
.cky-btn.cky-btn-accept:hover {
  font-family: var(--font);
  color: var(--blanc) !important;
  background: var(--color) !important;
  border: 0;
  border-radius: 5px !important;
}

.cky-preference-center {
  background: var(--color-blanc) !important;
  border: 0 !important;
  border-radius: 5px !important;
}

.cky-accordion-header .cky-accordion-btn {
  font-size: var(--text) !important;
  font-family: var(--font) !important;
  color: var(--color-text) !important;
  font-weight: var(--bold) !important;
}

.cky-preference-content-wrapper > p {
  font-size: var(--text);
  font-weight: var(--normal);
}

div.cky-accordion-header-des > p {
  font-size: var(--text);
  font-weight: var(--normal);
}

.cky-preference-content-wrapper .cky-show-desc-btn {
  font-family: var(--font) !important;
  font-size: var(--text) !important;
  font-weight: var(--bold) !important;
  color: var(--color-text) !important;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out !important;
  -moz-transition: all .3s ease-in-out !important;
  -ms-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn:hover {
  font-size: var(--text) !important;
  color: var(--color) !important;
}

.cky-footer-shadow {
  background: transparent !important;
}

div.cky-footer-wrapper > div {
  border-radius: 0 !important;
}

div.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
  background: var(--color) !important;
}

body > div.cky-modal.cky-modal-open > div > div.cky-footer-wrapper > div {
  display: none !important;
}

/* -- Recaptcha -- */

.grecaptcha-badge {
  display: none;
}