* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  font-family: sans-serif;
}
body {
  font-family: "Quicksand", sans-serif;
}
:root {
  --primary-color: #88b687;
  --secondary-color: #333333;
}
::selection {
  background: var(--primary-color);
  color: #fff;
}
::-moz-selection {
  background: var(--primary-color);
  color: #fff;
}
.container {
  width: 100%;
  background-color: #fafafa;
}
.content {
  display: grid;
  grid-template-columns: auto 30rem;
  grid-gap: 4rem;
  max-width: 130rem;
  margin: auto;
  padding: 10rem 1.5rem 0;
}
#header {
  --border-bottom: 0.1rem solid #dedede;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999999;
  transition: 0.1s;
}
header.front-page {
  background-color: transparent !important;
  border: none !important;
}
header.front-page .menu-front ul li a {
  color: #fff;
  text-decoration: none;
}
header.front-page .toggle-menu svg{
  width: 2.8rem;
  height: auto;
  cursor: pointer;
}
header.front-page .toggle-menu svg path{
  fill: #fff;
}
header.front-page nav{
  border: none;
}
header nav{
  border-bottom: 0.1rem solid #dedede;
}
.nav-content {
  height: 6rem;
  margin: auto;
  max-width: 140rem;
  display: flex;
  padding: 0 5rem;
}
.logo {
  --width: 16rem;
}
.logo .arrow,
.logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-content .logo img {
  height: 4.5rem;
  width: auto;
}
.logo .arrow img {
  height: 1.5rem;
}
.logo .logo-blog img {
  height: 3.5rem;
}
.logo svg {
  height: 4.4rem;
}
.flip-color .st8 {
  fill: var(--secondary-color);
}
.logo,
.menu,
.search,
.social {
  height: 100%;
  display: flex;
}
.menu {
  color: #666;
  padding: 0 1.5rem;
  font-family: "Quicksand", sans-serif;
}
.menu-front {
  margin-left: auto;
}
.menu-front ul li {
  display: inline-block;
}
.menu-front ul li a {
  line-height: 6rem;
  padding: 0 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}
.show-resposive-menu {
  display: block !important;
}
.toggle-menu {
  margin-left: auto;
  display: none;
}
.toggle-menu svg{
    width: 2.8rem;
    height: auto;
    cursor: pointer;
}
.toggle-menu svg path{
    
    fill: var(--secondary-color);
}
.start {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--secondary-color);
  position: relative;
  flex-direction: column;
  padding: 15rem 0;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 10;
}
.start-button {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 11;
}
.start-text {
  color: #fff;
  font-weight: 600;
  font-size: 5rem;
  text-align: center;
  width: 80rem;
  z-index: 11;
}
.start-text span {
  color: #70b786;
  font-weight: 700;
}
.start-text p:nth-child(2) {
  font-size: 2rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.start-buttons {
  margin-top: 4rem;
  z-index: 11;
}
.start-buttons a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  font-size: 2rem;
  margin: 1rem;
  box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.start-buttons .start-btn-proyectos {
  background-image: linear-gradient(45deg, #88b687, #489260);
  border: 0.2rem solid #79bc8e;
  transition: all 0.3s;
}
.start-buttons .start-btn-contacto:hover,
.start-buttons .start-btn-proyectos:hover {
  box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.start-buttons .start-btn-contacto {
  border: 0.2rem solid rgba(255, 255, 255, 0.4);
  background-image: linear-gradient(45deg, var(--secondary-color), #464646);
  transition: all 0.2s;
}
.portfolio {
  background-image: linear-gradient(45deg, #fafafa, #f1f1f1);
}
.portfolio-content {
  max-width: 140rem;
  margin: auto;
  padding: 15rem 5rem;
}
.content-title {
  margin-bottom: 7rem;
  font-size: 5rem;
  color: var(--secondary-color);
  text-align: center;
  padding-bottom: 0.5rem;
}
.contacto-content h4 {
  text-align: center;
}
.contacto-content h4 a {
  font-size: 3rem;
  color: var(--secondary-color);
  background: #fff;
  border: 0.2rem solid #e4e4e4;
  padding: 1rem 2rem;
  display: inline-block;
}
.portfolio-content .project {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
  margin-bottom: 20rem;
  color: var(--secondary-color);
}
.portfolio-content:last-child .project {
  margin-bottom: 10rem;
}
.portfolio-content .project .project-image {
  padding: 3rem;
  background: #e6e6e6;
  margin-bottom: 10rem;
}
.portfolio-content .project .project-image img {
  width: 100%;
  margin-bottom: -10rem;
  border: 0.1rem solid #ddd;
}
.portfolio-content .project .project-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portfolio-content .project-description h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
}
.portfolio-content .project-description p {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.portfolio-content .project-description span {
  font-size: 3rem;
  display: block;
  margin-bottom: 3rem;
}
.portfolio-content .project-description .tech {
  font-size: 0;
}
.portfolio-content .project-description .tech > div {
  display: inline-block;
}
.portfolio-content .project-description .tech svg {
  width: 4rem;
  margin-right: 1.5rem;
}
.portfolio-content .project-description .tech > div:last-child svg {
  margin-right: 0;
}
.portfolio-content .project-description .tech svg path,
.portfolio-content .project-description .tech svg polygon{
  fill: #333;
}
.portfolio-content .projects-btn {
  text-align: center;
}
.portfolio-content .projects-btn a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  font-size: 2rem;
  box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: inline-block;
  background-image: linear-gradient(45deg, #88b687, #489260);
  border: 0.2rem solid #79bc8e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.proyectos-footer {
  text-align: center;
}
.proyectos-footer h3 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}
.proyectos-footer a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  font-size: 2rem;
  box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: inline-block;
  background-image: linear-gradient(45deg, #88b687, #489260);
  border: 0.2rem solid #79bc8e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services {
  min-height: 60rem;
  background: #fff;
}
.services .services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
  max-width: 140rem;
  margin: auto;
  text-align: center;
  padding: 15rem 5rem;
}
.services .services-content .service {
  padding: 3rem;
  background: #f7f7f7;
  border: 0.2rem solid #e4e4e4;
}
.services .services-content .service img {
  width: 100%;
}

.services .services-content .service svg{
    width: 10rem;
    height: auto;
    margin-bottom: 2rem;
}

.services .services-content .service svg path{
    fill: var(--secondary-color);
}
.services .services-content .service h4 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.services .services-content .service p {
  color: var(--secondary-color);
  font-size: 2rem;
}
.services .content-title {
  grid-column: 1 / -1;
  margin-bottom: 3rem;
}
.page-presentation {
  min-height: 50rem;
  background-image: linear-gradient(45deg, var(--secondary-color), #464646);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-presentation .page-presentation-content {
  height: 100%;
  width: 70rem;
  text-align: center;
}
.page-presentation .page-presentation-content h2 {
  font-size: 5rem;
  color: #fff;
  margin-bottom: 3rem;
}
.page-presentation .page-presentation-content p {
  font-size: 3rem;
  color: #fff;
}
.contacto-content {
  max-width: 100rem;
  margin: auto;
  padding: 15rem 5rem;
}
.contacto-content .form-row p {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}
.contacto-content .form-row input {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  font-size: 1.7rem;
  color: var(--secondary-color);
}
.contacto-content .captcha-text{
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #8e8e8e;
}
.contacto-content .captcha-text a{
  color: #333;
}
.grecaptcha-badge { visibility: hidden; }
.contacto-content .form-row .send-email {
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  font-size: 2rem;
  box-shadow: 0 1rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: inline-block;
  background-image: linear-gradient(45deg, #88b687, #489260);
  border: 0.2rem solid #79bc8e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.contacto-content .form-row textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 40rem;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  font-size: 1.7rem;
}
.contacto-content .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
}
.contacto-content form {
  position: relative;
}
.contacto-content form .loader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  display: none;
}
.contacto-content form .loader .spin {
  height: 6rem;
  width: 6rem;
  border: solid 4px transparent;
  border-top-color: #0dac77;
  border-left-color: #0dac77;
  border-bottom-color: #0dac77;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: loader 1.2s linear infinite;
}
.show-spin {
  display: block !important;
}
.contacto-content .mensaje-email{
  font-size: 2rem;
  color: #333;
  margin-top: 2rem;
  display: block;
  position: relative;
  padding-left: 3rem;
  display: none;
}
.mensaje-email .something-bad,
.mensaje-email .check{
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mensaje-email .something-bad::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 0.3rem;
    background: #f44336;
    transform: rotate(-45deg);
    top: 50%;
    left: 0;
    border-radius: 1rem;
}

.mensaje-email .something-bad::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 0.3rem;
    background: #f44336;
    transform: rotate(45deg);
    top: 50%;
    left: 0;
    border-radius: 1rem;
}

.mensaje-email .check::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 0.3rem;
    background: #609f6f;
    transform: rotate(-45deg);
    /* top: 50%; */
    left: 0.8rem;
    border-radius: 1rem;
}

.mensaje-email .check::after {
    content: '';
    position: absolute;
    width: 0.9rem;
    height: 0.3rem;
    background: #609f6f;
    transform: rotate(45deg);
    left: 0.5rem;
    top: 0.4rem;
    border-radius: 1rem;
}
/* span.mensaje-email::before {
  content: '';
    position: absolute;
    width: 2rem;
    height: .3rem;
    background: #609f6f;
    transform: rotate(-45deg);
    top: 50%;
    left: .8rem;
    border-radius: 1rem;
}
span.mensaje-email::after {
  content: '';
  position: absolute;
  width: 0.9rem;
  height: .3rem;
  background: #609f6f;
  transform: rotate(45deg);
  left: .5rem;
  top: 1.6rem;
  border-radius: 1rem;
} */
.page-content{
  padding-top: 10rem;
  padding-bottom: 5rem;
  max-width: 90rem;
  margin:auto;
  color: #333;
}
.page-content h1{
 text-align: center;
 margin-bottom: 1.5rem;
 font-size: 2.8rem;
}
.page-content h2{
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.page-content p{
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

@keyframes loader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.custom-404{
  min-height: 85vh;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer {
  background-color: var(--secondary-color);
}
.footer-content {
  max-width: 126.6rem;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
}
.footer-content a {
  display: inline-block;
  color: #eee;
  font-size: 2rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-content a:hover {
  text-decoration: none;
  color: #eee;
}
.footer .social-footer a {
  padding: 0.5rem 1rem;
}
.copy {
  margin-top: 2rem;
}
.copy a {
  letter-spacing: 4px;
  font-size: 1.6rem;
  text-decoration: none;
}
.footer-content a.aviso-de-privacidad{
  font-size: 1.4rem;
  text-decoration: underline;
  margin-top: 1rem;
  color: #c3c3c3;
}
@media (max-width: 1300px) {
  .nav-content {
    padding: 0 1.5rem;
  }
  .portfolio-content {
    width: 100%;
    padding: 10rem 1.5rem;
  }
  .portfolio-content .project {
    grid-template-columns: 1fr 1fr;
  }
  .services-content {
    width: 100%;
    padding: 0 1.5rem;
  }
}
@media (max-width: 990px) {
  .portfolio-content .project {
    grid-template-columns: 1fr;
    background: #fff;
    padding: 0;
    border: none;
    grid-gap: 2rem;
  }
  .project-description {
    text-align: center;
  }
  .portfolio-content .project .project-image {
    padding: 0;
    background: none;
    margin: 0;
    order: 1;
  }
  .portfolio-content .project .project-image img {
    margin: 0;
    display: block;
  }
  .content-title {
    font-size: 4rem;
  }
  .portfolio-content .project-description h2 {
    font-size: 3.5rem;
    padding: 3rem 3rem 0;
  }
  .portfolio-content .project-description p {
    font-size: 2rem;
    padding: 0 3rem;
  }
  .portfolio-content .project-description span {
    padding: 0 3rem;
  }
  .portfolio-content .project-description .tech {
    font-size: 3rem;
    padding: 0 3rem 3rem;
  }
  .portfolio-content .project-description .tech i {
    margin-right: 1rem;
  }
  .services .services-content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    padding: 10rem 1.5rem;
  }
  .contacto-content {
    padding: 10rem 1.5rem;
  }
}
@media (max-width: 830px) {
  .start-text {
    font-size: 3.5rem;
    width: 60rem;
  }
  .start-buttons a {
    font-size: 1.7rem;
  }
}
@media (max-width: 660px) {
  .menu-front {
    display: none;
  }
  .toggle-menu {
    display: flex;
  }
  .menu-front {
    background: #fff;
    border: 0.1rem solid #ddd;
    position: fixed;
    left: 0;
    width: 100%;
    margin-top: 6rem;
  }
  .menu-front ul li {
    display: block;
  }
  .menu-front ul li a {
    color: #333 !important;
    text-decoration: none;
    padding: 0 5rem;
    display: block;
  }
  .start-text {
    width: 100%;
    padding: 0 1.5rem;
  }
  .services .services-content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 3rem;
  }
  .contacto-content .form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
  .portfolio-content .project-description .tech svg{
    margin-right: 0;
  }
}
@media (max-width: 400px) {
  .start-buttons a {
    font-size: 1.5rem;
    padding: 1rem 3rem;
  }
  .portfolio-content .project-description .tech svg{
    width: 2.8rem;
  }
}
