/*===================
COLORS:
Negre: #2c2c2c
Lila: #595cad

FONTS:
Work Sans
===================*/



/*===================
TAULA DE CONTINGUTS

01. Característiques generals
02. Preloader 
03. Menú
04. Home
05. Qui som
06. Imatges
07. Objectius
08. Contacte
09. Footer
10. Banner llei de cookies
11. Responsive         
===================*/



/*===================
01. Característiques generals
===================*/

body {
  background: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
}

/* Selecció de text */

::-moz-selection {
  background: #595cad;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #595cad;
  color: #ffffff;
  text-shadow: none;
}

/* Placeholder */

::placeholder {
  color: #595cad;
  opacity: 1;
}

/* Focus border 0 */

:focus {
  outline: none;
}

h1,h2,h3,h4,h5,h6 {
  font-style: normal;
  font-weight: 400;
  margin: 0px;
}

h1 {
  font-size: 62px;
  padding-bottom: 14px;
  margin-bottom: 0px;
}

h2 {
  font-size: 32px;
  line-height: 46px;
}

h3 {
  font-size: 26px;
  line-height: 36px;
}

h4 {
  color: #2c2c2c;
  font-size: 12px;
  font-weight: normal;
}

p {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
}

strong {
  font-weight: 600;
}

.btn-success:focus {
  background-color: #2c2c2c;
  border-color: transparent;
}

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover, a:active, a:focus {
  color: #595cad;
  outline: none;
}

.lila {
  color: #595cad;
}

.link1 {
  color: #595cad;
  font-size: 15px;
  text-decoration: none;
}
.link1:hover, .link1:visited, .link1:link {
  color: #0aa2bc;
  text-decoration: none;
}


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#imatge,
#quisom,
#objectius,
#contact,
#single-project,
#objectius {
  padding-top: 40px;
  padding-bottom: 120px;
}

.section-title {
  position: relative;
}

.section-title h3 {
  color: #595cad;
  font-weight: 400;
  text-align: center;
}



/*===================
02. Preloader 
===================*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.sk-spinner-wordpress.sk-spinner {
  background-color: #595cad;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
  -webkit-animation: sk-innerCircle 1s linear infinite;
  animation: sk-innerCircle 1s linear infinite; 
}

.sk-spinner-wordpress .sk-inner-circle {
  display: block;
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 8px;
  top: 5px;
  left: 5px; 
}

@-webkit-keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }



/*===================
03. Menú
===================*/

.navbar-default {
    background: #ffffff;
    padding: 18px 0;
    border: none;
    margin-top: 62px;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: transparent;
}

.navbar-default .navbar-brand {
  padding-top: 6px;
}

.navbar-default .navbar-brand .fa {
  color: #000;
  font-size: 42px;
}

.navbar-default .navbar-nav li a {
    color: #2c2c2c;
    font-size: 16px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-right: 22px;
    padding-left: 22px;
}

.navbar-default .navbar-nav > li a:hover {
    color: #595cad !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #2c2c2c;
    background-color: transparent;
}

.navbar-default .navbar-nav li a:hover,
 .navbar-default .navbar-nav .active > a {
    color: #595cad;
  }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #595cad;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    background: #595cad;
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}



/*===================
04. Home
===================*/

#inici {
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

#inici hr {
  width: 150px;
  margin-bottom: -30px;
}



/*===================
05. Qui som
===================*/

#quisom .text-center {
  padding-bottom: 42px;
}

#quisom .col-md-8 {
  padding-left: 0px;
}

#quisom .col-md-8 img {
  padding-right: 22px;
  padding-bottom: 22px;
}

#quisom hr {
  width: 150px;
}

#quisom ul {
  padding-left: 22px;
}

#quisom ul li {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 400;
  padding-top: 2px;
  padding-bottom: 2px;
}



/*===================
06. Imatges
===================*/

#imatge small {
  color: #f0f0f0;
  font-size: 14px;
  text-transform: uppercase;
}

#imatge .imatge-thumb {
  position: relative;
  padding: 0;
  margin-top: 32px;
}

#imatge .imatge-thumb .imatge-overlay {
  position: absolute;
  background: #2c2c2c;
  color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: top;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

#imatge .imatge-item {
  position: absolute;
  top:50%;
  left: 50%;
  -webkit-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
        transform:translate(-50%,-50%);
  width: 80%;
}

#imatge .imatge-thumb:hover .imatge-overlay {
  opacity: 0.9;
}

#imatge .text-center {
  padding-top: 62px;
}



/*===================
07. Objectius
===================*/

.objectius-imatge {
  width: 100%;
  margin-top: 50px;
}



/*===================
08. Contacte
===================*/

#contactForm {
  margin-top: 0px;
  width: 100%;
}

#contactForm .casellatext {
  width: 100%;
  background-color: #inherit;
  border: #2c2c2c 1px solid;
  font-family: 'Work Sans', sans-serif;
  color: #2c2c2c;
  font-size: 16px;
  text-decoration: none;
  padding: 5px;
  margin-bottom: 30px;
}

#contactForm .casellacaptcha {
  width: 50px;
  height: 29px;
  border: #2c2c2c 1px solid;
  font-family: 'Work Sans', sans-serif;
  color: #2c2c2c;
  font-size: 16px;
  text-decoration: none;
  padding: 5px;
}

#contactForm textarea {
  width: 100%;
  background-color: #ffffff;
  border: #2c2c2c 1px solid;
  font-family: 'Work Sans', sans-serif;
  color: #2c2c2c;
  font-size: 16px;
  text-decoration: none;
  padding: 5px;
}

#contactForm textarea:focus, #contactForm input:focus {
  border: 1px solid #595cad;
}

#contactForm .dreta {
text-align: right;
}

#contactForm .esquerra {
text-align: left;
}

@media (max-width: 767px) {

#contactForm .dreta {
text-align: center;
}

#contactForm .esquerra {
text-align: center;
}

}

#contactForm seguretat {
  text-align: center;
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  color: #2c2c2c;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 30px;
}

#contactForm codi {
  position: relative;
  top: 10px;
}

#contactForm input.submit {
  color: #2c2c2c;
  font-size: 16px;
  cursor: pointer;
  padding: 0px 5px;
  text-align: center;
  width: 100px;
  height: 29px;
  border: #2c2c2c 1px solid;
  background-color: #ffffff;
  font-family: 'Work Sans', sans-serif;
}

#contactForm input.submit:hover {
  color: #ffffff;
  background-color: #595cad;
  border: #595cad 1px solid;
  -webkit-transition:background 0.5s ease;
  -moz-transition:background 0.5s ease;
  -o-transition:background 0.5s ease;
  transition:background 0.5s ease;
}

#contactForm .error {
  color: #595cad;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}


/*===================
09. Footer
===================*/

footer {
  border-top: 1px solid #2c2c2c;
  padding: 50px 0px;
  position: relative;
}

footer a {
  color: #2c2c2c;
}

.footer-esquerra p{
text-align: left;
}

.footer-dreta p{
text-align: right;
}

.footer-mig p{
text-align: center;
}



/*===================
10. Banner llei de cookies
===================*/

.cookiebanner span {
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}

.cookiebanner a {
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.cookiebanner a:hover {
  color: #2c2c2c;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.cookiebanner-close {
  color: #2c2c2c;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  background: #ffffff;
  text-align: center;
}

.cookiebanner-close:hover {
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  background: #2c2c2c;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}



/*===================
11. Responsive         
===================*/

@media (max-width: 767px) {

h1 {
  font-size: 38px;
}

h2 {
  font-size: 32px;
  line-height: 48px;
}

h3 {
  font-size: 22px;
}

.section-title h2 {
  font-size: 22px;
  line-height: 35px;
}

.navbar-default {
  margin-top: 0px;
  text-align: center;
}

#quisom .col-md-8 img {
  padding-right: 0px;
}

#objectius .objectius-post-title h2 {
  font-size: 29px;
  line-height: 40px;
}

footer {
  text-align: center;
}

footer .col-md-4 {
  padding-top: 42px;
}

.footer-esquerra p {
  text-align: center;
}

.footer-dreta p {
  text-align: center;
}

.footer-mig p {
  text-align: center;
}

}