@charset "UTF-8";
/*
    $COLORS
*/
.footer,
.panels,
.main-flex-row,
.main-flex {
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.footer__item,
.article {
  text-align: center;
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__description,
.article__description {
  font-size: 1.1rem;
  line-height: 1.5;
}

.article__btn {
  margin-top: auto;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background-color: #508da6;
  border: none;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.footer__icon,
.article__icon {
  font-size: 1.5em;
  color: #ffffff;
}

/* Tablet */
/* Large devices */
@media (min-width: 992px) {
  .footer,
  .main-flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__item,
  .article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
  }
}
.menu-toggle {
  display: inline-block;
  position: absolute;
  left: 5%;
  line-height: 1em;
  font-size: 1.5em;
  color: #000000;
}

.main-menu {
  position: absolute;
  display: none;
  left: -200px;
  top: 0;
  height: 100%;
  overflow-x: visible;
  transition: left 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 2.5em 0 0;
  /* Hide shadow w/ -8px while 'closed' */
  -webkit-box-shadow: -8px 0 8px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -8px 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: -8px 0 8px rgba(0, 0, 0, 0.5);
  min-height: 100%;
  width: 200px;
  background: #ffffff;
}

.main-menu a {
  display: block;
  padding: 0.75em 15px;
  line-height: 1em;
  font-size: 1.1rem;
  color: #508da6;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.5s ease;
}

.main-menu a:hover,
.main-menu a:focus {
  font-weight: bold;
}

.active {
  font-weight: bold;
}

.main-menu .menu-close {
  position: absolute;
  right: 0;
  top: 0;
}

.main-menu:target,
.main-menu[aria-expanded="true"] {
  display: block;
  left: 0;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
  box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
  z-index: 1001;
}

.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
  position: relative;
  z-index: 1000;
}

.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #000;
  background: rgba(0, 0, 0, 0.6);
  cursor: default;
}

@supports (position: fixed) {
  .main-menu,
  .main-menu:target + .backdrop,
  .main-menu[aria-expanded="true"] + .backdrop {
    position: fixed;
  }
}
/*
 Larger screen styling
 Horizontal menu
*/
@media (min-width: 992px) {
  .menu-toggle,
  .main-menu .menu-close {
    display: none;
  }

  /* Undo positioning of off-canvas menu */
  .main-menu {
    position: relative;
    left: auto;
    top: auto;
    height: auto;
    display: block;
  }

  .main-menu ul {
    display: flex;
    /* Undo off-canvas styling */
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    height: auto;
    width: auto;
    background: none;
  }

  .main-menu a {
    border: 0 !important;
  }

  .main-menu a:hover,
  .main-menu a:focus {
    background: none;
    /* Remove background from off-canvas styling */
    color: #508da6;
  }
}
.intro__txt {
  padding: 0 5%;
}

.treballadores {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 5% 0 16%;
  grid-gap: 7rem;
  margin: 8rem 0 2rem 0;
}
@media (min-width: 370px) {
  .treballadores {
    padding: 0 5% 0 15%;
  }
}
@media (min-width: 420px) {
  .treballadores {
    padding: 0 5% 0 12%;
  }
}
@media (min-width: 550px) {
  .treballadores {
    padding: 0 5% 0 10%;
  }
}
@media (min-width: 1180px) {
  .treballadores {
    grid-template-columns: 1fr 1fr;
    padding: 0 5% 0 8%;
  }
}

.treballadora {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 5% 0 16%;
  grid-gap: 7rem;
  margin: 8rem 0 2rem 0;
}
.treballadora li {
  margin-bottom: 0.5rem;
}
@media (min-width: 370px) {
  .treballadora {
    padding: 0 5% 0 15%;
  }
}
@media (min-width: 420px) {
  .treballadora {
    padding: 0 5% 0 12%;
  }
}
@media (min-width: 550px) {
  .treballadora {
    padding: 0 10% 0 10%;
  }
}
@media (min-width: 1150px) {
  .treballadora {
    padding: 0 20% 0 20%;
  }
}

.person {
  display: flex;
  flex-direction: column;
  background-color: #80a6cb;
  border-radius: 10px;
  position: relative;
  padding: 1rem 1rem 1rem 3.3rem;
  color: #ffffff;
}
@media (min-width: 600px) {
  .person {
    padding: 1rem 1rem 1rem 7.5rem;
  }
}
.person__img {
  border-radius: 50%;
  max-width: 100px;
  border: 4px solid #80a6cb;
  position: absolute;
  top: -48px;
  left: -45px;
}
@media (min-width: 600px) {
  .person__img {
    max-width: 160px;
  }
}
.person__img-puzzle {
  width: 100%;
  max-width: 45px;
  height: 100%;
}
@media (min-width: 360px) {
  .person__img-puzzle {
    max-width: 60px;
  }
}
@media (min-width: 600px) {
  .person__img-puzzle {
    max-width: 100px;
  }
}
.person__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}
@media (min-width: 370px) {
  .person__name {
    font-size: 1.6rem;
  }
}
@media (min-width: 600px) {
  .person__name {
    font-size: 2.3rem;
  }
}
.person__tipo {
  margin: 0.5rem 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.person__cv {
  padding: 0;
  font-size: 1rem;
  margin-bottom: 0;
  padding-left: 1rem;
}
.person__link {
  font-weight: bold;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
}
.person__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.img-group {
  display: flex;
  margin-left: auto;
  width: 100%;
  max-width: 150px;
}

.blockquote-container {
  display: flex;
  align-items: center;
}

blockquote {
  font-size: 1.8rem;
  font-style: italic;
  margin: 0;
  padding: 0 40px;
  position: relative;
  text-align: justify;
}
@media (max-width: 520px) {
  blockquote {
    font-size: 1.2rem;
  }
}

blockquote:before {
  display: block;
  padding-left: 10px;
  content: "“";
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
}

blockquote:after {
  display: block;
  padding-left: 10px;
  content: "”";
  font-size: 80px;
  position: absolute;
  line-height: 1;
  right: 0px;
  bottom: -0.5em;
}

blockquote cite {
  font-size: 1.1rem;
  display: block;
  margin-top: 5px;
  text-align: right;
}

blockquote cite:before {
  content: "— ";
}

/* Medium devices */
/* Medium devices */
.info-serveis {
  padding: 1.25rem 5%;
}
.info-serveis__subtitle {
  color: #80a6cb;
}

.containerImg__num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  line-height: 1;
  font-size: 65px;
  margin: 0;
}

.main__type {
  margin: 50px 0;
}
.main__type:last-child {
  margin: 0 0 100px 0;
}

.container-funcionament {
  background-color: #80a6cb;
  border-radius: 20px;
  margin: 6rem 5% !important;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 600px) {
  .container-funcionament {
    padding: 1rem;
    grid-template-columns: auto;
    justify-items: center;
  }
}
.container-funcionament__title {
  font-size: 1.3rem;
  text-decoration: underline;
  font-weight: 600;
  color: #ffffff;
}
.container-funcionament__description {
  font-size: 1.2rem;
  color: #ffffff;
}
.container-funcionament__bloc {
  display: grid;
  grid-template-columns: repeat(5, auto);
  text-align: justify;
  color: #ffffff;
}
@media (max-width: 1300px) {
  .container-funcionament__bloc {
    grid-template-columns: auto;
    justify-items: center;
  }
}

.article-funcionament__img-arrow {
  max-width: 120px;
  margin-top: 120px;
}
@media (max-width: 1300px) {
  .article-funcionament__img-arrow {
    margin: 4rem 0 4rem 0.4rem;
    transform: rotate(90deg);
  }
}
.article-funcionament__container-img {
  position: relative;
  text-align: center;
}
.article-funcionament__img {
  max-width: 70%;
  min-width: 250px;
}
.article-funcionament__title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
}
.article-funcionament__text-small {
  width: 70%;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  text-align: center;
  max-width: 27ch;
}

.container-intervencions {
  border: 3px solid #508da6;
  border-radius: 20px;
  margin: 50px 5% !important;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 600px) {
  .container-intervencions {
    padding: 30px 15px;
  }
}
.container-intervencions__title {
  font-size: 1.3rem;
  text-decoration: underline;
  font-weight: 600;
}
.container-intervencions__bloc {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .container-intervencions__bloc {
    flex-direction: row;
    justify-content: space-between;
  }
}

.justify-between {
  display: flex;
  justify-content: space-between;
}

.justify-between-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-right {
  text-align: right;
}

.mt-auto {
  margin-top: auto;
}

*:focus {
  outline: none;
}

body {
  font-family: "Nunito", sans-serif;
  margin: 0;
  line-height: 1.5;
  font-size: 1.1rem;
  color: #508da6;
}

p {
  font-size: 1.1rem;
}

/*
    $HEADER
*/
.headerSlide {
  background-color: #80a6cb;
  border-radius: 0 0 80% 80%/20%;
  margin-top: -14px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  z-index: 1;
  border-radius: 0 0 80% 80%/20%;
  border-bottom: 1px solid #80a6cb;
}

.header__logo {
  width: 100%;
  max-width: 200px;
  height: 100%;
}

/*
    $MAIN
*/
.main-flex {
  margin: 6rem 0 0 0;
}

.main-flex-row {
  margin: 50px 0 0 0;
}

.main-flex-home {
  justify-content: space-evenly;
}

.main {
  padding: 0 5%;
  margin: 6rem 0;
}

.article-two-cols {
  width: 100%;
}

.article__containerImg {
  position: relative;
}
.article__containerImg img {
  max-width: 299px;
}

.article__containerImg--big {
  width: 100%;
}
.article__containerImg--big img {
  max-width: 350px;
  width: 100%;
}

.article__title {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #508da6;
  line-height: 1;
  font-size: 32px;
}

.article__title--semibold {
  font-weight: 600;
  top: 40%;
  left: 50%;
  line-height: 1.1;
}

.article__subtitle {
  color: #80a6cb;
  font-weight: bold;
  margin-top: 0;
}

.article__description {
  transition: 0.5s;
  text-decoration: none;
  color: #508da6;
  margin-bottom: 20px;
  text-align: justify;
}
.article__description:hover {
  color: #80a6cb;
}

.article__btn:hover {
  background-color: #80a6cb;
}

.hero {
  display: grid;
  grid-template-columns: minmax(150px, 20%) 1fr minmax(auto, 65ch);
  grid-gap: 3.5rem;
  gap: 3.5rem;
  align-items: center;
  background-color: #80a6cb;
  color: #ffffff;
  font-size: 15px;
  padding: 50px 5%;
  border-radius: 0 0 80% 80%/20%;
  margin-top: -14px;
  height: auto;
}
@media (max-width: 992px) {
  .hero {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 767px) {
  .hero {
    grid-template-columns: auto;
    justify-items: center;
    grid-gap: 1rem;
    gap: 1rem;
  }
}
.hero__img {
  width: 100%;
  max-width: 250px;
}
@media (max-width: 992px) {
  .hero__img {
    display: none;
  }
}
.hero__img-text {
  position: relative;
  width: max-content;
}
.hero__title {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  line-height: 1;
  font-size: 28px;
  margin: 0;
  text-align: center;
}
.hero__title--small {
  font-size: 25px;
}
.hero__text {
  text-align: justify;
  font-size: 1.1rem;
}
.hero__icon {
  max-width: 100%;
}

.title {
  display: flex;
  align-items: center;
  height: auto;
  background-color: #80a6cb;
  color: #ffffff;
  font-size: 15px;
  padding: 0 5%;
  margin-top: -14px;
}

.subtitle {
  background-color: rgba(128, 166, 203, 0.7);
  color: #ffffff;
  font-size: 25px;
  padding: 0 10px;
  border-radius: 5px;
}

.banner {
  height: auto;
  padding: 5px 10px 5px 0;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #acaeb3;
}
@media (min-width: 768px) {
  .banner {
    margin: 0 10%;
  }
}
.banner__list-item {
  margin-bottom: 5px;
}

.link {
  color: #80a6cb;
  text-decoration: none;
  font-weight: bold;
}

.panels {
  margin: 50px 0;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.panel {
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #acaeb3;
  width: 30%;
  margin-bottom: 40px;
}
.panel__img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.panel__body {
  padding: 10px;
}
.panel__title {
  margin: 0;
}
.panel__link {
  color: #80a6cb;
  text-decoration: none;
  font-weight: bold;
}

/*
    $FOOTER
*/
.footer {
  background-color: #80a6cb;
  height: auto;
  border-radius: 80% 80% 0 0/10%;
}

.footer__item {
  margin: 30px 0 0 0;
}

.footer__icon {
  font-size: 2.5em;
}

.footer__description {
  color: #ffffff;
}

.footer__menu {
  list-style: none;
  padding: 0;
  color: #ffffff;
  line-height: 1.5;
}
.footer__menu a {
  color: #ffffff;
  text-decoration: none;
}
.footer__menu a:hover {
  text-decoration: underline;
}

.footerImg {
  text-align: center;
  background-color: #80a6cb;
  border-top: 1px solid #ccc;
  padding: 5px;
}

.footerImg img {
  width: 8%;
  min-width: 130px;
  padding: 10px 10px;
}

.legal {
  color: #ffffff;
  margin-top: 0;
}
.legal a {
  text-decoration: none;
  color: #ffffff;
}
.legal a:hover {
  text-decoration: underline;
}

.padding-left {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .padding-left {
    padding-left: 50px;
  }
}

/* Large devices */
@media (min-width: 992px) {
  .header {
    justify-content: space-between;
  }

  .header__logo {
    max-width: 250px;
  }

  .main-flex {
    overflow: hidden;
  }

  .article-two-cols {
    width: 45%;
  }

  .footer {
    border-radius: 80% 80% 0 0/20%;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 640px) {
  .cards_item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .cards_item {
    width: 33.3333%;
  }
}
@media (min-width: 1400px) {
  .cards_item {
    width: 25%;
  }
}
@media (min-width: 1800px) {
  .cards_item {
    width: 20%;
  }
}
.card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card__content {
  padding: 1rem;
}
.card__img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.card__title {
  font-size: 1.1rem;
  margin: 0px;
}
.card__text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.card__link {
  font-weight: bold;
  text-decoration: none;
  color: #80a6cb;
  padding: 5px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 5px;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(128, 166, 203, 0.5);
  text-align: center;
  transition: background-color 0.5s ease;
}
.card__link:hover {
  background: #80a6cb;
  color: #ffffff;
}
.card__footer {
  margin-top: auto;
  padding: 1rem;
}

iframe {
  width: 100%;
  height: 370px;
  border: none;
}

.width-50 {
  width: 100%;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .width-50 {
    width: 49%;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  /* width: 100%; */
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin: 0 5%;
}
@media (max-width: 1024px) {
  .cookie-banner {
    flex-direction: column;
  }
}

.close {
  height: 40px;
  background-color: #5d7a98;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
  width: 100px;
  font-size: 15px;
}

.cookie-text {
  font-size: 1em;
  padding: 0 20px;
}

.up {
  -webkit-animation: down 1s both;
  animation: down 1s both;
}
@keyframes down {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.up:hover {
  -webkit-animation: mover 0.5s both;
  animation: mover 0.5s both;
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.updown:hover {
  -webkit-animation: mover 0.5s infinite alternate;
  animation: mover 0.5s infinite alternate;
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.bounce:hover {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.pulse:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.4rem;
}
.form__input {
  background-color: #80a6cb;
  color: #ffffff;
  border-radius: 0.5rem;
  border: none;
  padding: 0.7rem;
  text-align: center;
  font-size: 1rem;
  width: 100%;
}
.form__input::placeholder {
  color: #ffffff;
  font-family: "Nunito";
  font-weight: bold;
}
.form__textarea {
  background-color: #ffffff;
  color: #80a6cb;
  border-radius: 0.5rem;
  border: 2px solid #80a6cb;
  padding: 0.7rem;
  text-align: center;
  font-size: 1rem;
  resize: none;
  font-family: "Nunito";
  width: 100%;
}
.form__textarea::placeholder {
  color: #80a6cb;
  font-family: "Nunito";
  font-weight: bold;
}
.form__container-error {
  position: absolute;
  bottom: -1.8em;
  z-index: 1;
}
.form__inputs {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form__btn {
  background-color: #ffffff;
  color: #508da6;
  border-radius: 0.5rem;
  border: 2px solid #80a6cb;
  padding: 0.7rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
}
.form__btn:hover {
  background-color: #80a6cb;
  color: #ffffff;
}
.form__title {
  font-size: 2rem;
  max-width: 14ch;
  margin: 0 auto;
  margin-bottom: 1rem;
  text-align: center;
}

.grid-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .grid-contact {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}

.error {
  padding: 0rem;
  font-size: 80%;
  color: white;
  background: #e33f3f;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
.error--active {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 0.3em 1em;
}
.error--active::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-color: #e33f3f transparent;
  border-width: 0 8px 8px;
  top: -8px;
  left: 7%;
}

.loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1em;
  box-shadow: 0 0 3px #dcecf6;
  display: none;
}

.loader {
  border: 16px solid #dcecf6;
  border-radius: 50%;
  border-top: 16px solid #508da6;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.popup-container {
  z-index: 1;
  display: none;
  padding-top: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1em;
  box-shadow: 0 0 3px #dcecf6;
  text-align: center;
  max-width: 400px;
  width: 80%;
}
.popup-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  cursor: pointer;
  padding-right: 0.5em;
}

/*# sourceMappingURL=main.css.map */
