/*
+++ BREAKPOINTS +++

XLarge: 87.5em
Large: 81.25em
Tablet: 63.94em
Smartphone: 47.94em

*/

/* +++ COLOR VARIABLES +++ */

:root {
  --primary-blue: #2d98e0;
  --secondary-blue: #2d6cd9;
  --tertiary-blue: #1659a1;
  --clr-dark: #232323;
  --background-pf: #f4f4f4;
  --clr-light: #FFF;
  --clr-light-2: #898989;
  --text-color: #555;
  --lang-select-clr: #898989;
  --text-decoration-clr: #A1A1A1;
  --swatchbox-shadow: 0 1px 1px rgba(0, 0, 0, 0.12),
    0 2px 2px rgba(0, 0, 0, 0.05);
  --item-border: #e0e0e0;
  --item-background: #FFF;
  --newitem-tag-clr: #374252;
  --form-invalid: #ff4331;
  --foreground-color: var(--text-color);
  --background-color: var(--clr-light);
  --footer-background: #CCC;
}

@media (prefers-color-scheme: dark) {
  :root {
    --clr-light-2: #EBEBEB;
    --lang-select-clr: var(--clr-light);
    --text-decoration-clr: var(--tertiary-blue);
    --item-border: #A5A5A5;
    --foreground-color: var(--clr-light);
    --background-color: var(--clr-dark);
    --background-pf: var(--clr-dark);
    --item-background: var(--clr-dark);
    --newitem-tag-clr: var(--primary-blue);
    --footer-background: #525252;
  }
}

/* Self-hosted fonts */

@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/nunitosans-regular.woff2") format("woff2"),
  url("../fonts/nunitosans-regular.woff") format("woff"),
  url('../fonts/nunitosans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/nunitosans-600.woff") format("woff2"),
  url("../fonts/nunitosans-600.woff2") format("woff"),
  url('../fonts/nunitosans-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/nunitosans-bold.woff2") format("woff2"),
  url("../fonts/nunitosans-bold.woff") format("woff"),
  url('../fonts/nunitosans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DomineSH";
  src: url("../fonts/domine-regular.woff2") format("woff2"),
  url("../fonts/domine-regular.woff") format("woff"),
  url('../fonts/domine-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DomineSH";
  src: url("../fonts/domine-bold.woff2") format("woff2"),
  url("../fonts/domine-bold.woff") format("woff"),
  url('../fonts/domine-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* +++ GENERAL SITE STYLING +++ */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom scrollbar for Firefox */

/* * {
  scrollbar-width: auto;
  scrollbar-color: #374252 #dddddd;
} */

  /* For Chrome, and Webkit based browsers */

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #3d3d3d;
}

::-webkit-scrollbar-thumb {
  background: #797979;
}


html {
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 63.94em) {
  html {
    font-size: 56.25%;
  }
}

body {
  color: var(--foreground-color);
  font-family: "NunitoSans", Arial, sans-serif;
}

h1 {
  font-weight: 600;
}

h2 {
  font-family: "NunitoSans", Arial, sans-serif;
  font-size: 2.9rem;
}

hr.divider {
  margin-top: 2rem;
  width: 50%;
  color: #d3d3d3;
}

.row {
  max-width: 100%;
}

.container {
  background-color: var(--background-color);
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 47.94em) {
  .container {
    max-width: 100%;
    flex-direction: column;
  }
}

.container-dark {
  background-color: #242424;
}

/* +++ SPECIAL XMAS MESSAGE +++ */

.xmas-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgb(209, 78, 78) 5%, rgb(153,0,0) 30%, rgb(153,0,0) 75%);
  background-size: 120% 120%;
  padding: 0.8rem;
  animation: XmasGradient 10s ease infinite;
}

@keyframes XmasGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.xmas-title {
  font-size: 1.4rem;
  font-family: "NunitoSans", Arial, sans-serif;
  font-weight: 700;
  color: rgb(255,255,255);
  text-align: center;
}

.xmas-title-sp {
  font-size: 1.4rem;
  font-family: "NunitoSans", Arial, sans-serif;
  font-weight: 700;
  color: rgb(255,255,255);
  text-align: center;
  transition: all 0.2s ease;
}

.xmas-title-en {
  font-size: 1.4rem;
  font-family: "NunitoSans", Arial, sans-serif;
  font-weight: 700;
  color: rgb(255,255,255);
  text-align: center;
  display: none;
  visibility: hidden;

}

.hide-title-sp {
  display: none;
  visibility: hidden;
}

.show-title-en {
  display: block;
  visibility: visible;
}

.xmas-icon {
  margin-left: 0.4rem;
  width: 2.8rem;
  height: 2.8rem;
}

/* +++ HEADER +++ */

.header {
  background-color: #374252;
  position: relative;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media only screen and (max-width: 47.94em) {
  .header {
    flex-direction: column;
  }
}

@media only screen and (min-width: 87.5em) {
  .header {
    padding: 0 26rem;
  }
}

.header-grayblue {
  background-color: #374252;
}

.header .logo {
  padding: 2.2rem;
  flex: 0 1 30%;
}

@media only screen and (max-width: 47.94em) {
  .header .logo {
    padding: 2.2rem 2.2rem 0 2.2rem;
  }
}

.header .text-copy {
  padding: 2.2rem;
  flex: 0 1 70%;
  flex-direction: row;
}

@media only screen and (max-width: 47.94em) {
  .header .text-copy {
    padding: 0rem 2.2rem 1.8rem 2.2rem;
  }
}

.header .text-copy .text-copytitle {
  flex: 1;
  margin-top: 4.8rem;
}

@media only screen and (max-width: 47.94em) {
  .header .text-copy .text-copytitle {
    margin-top: 2rem;
    text-align: center;
  }
}

.header .text-copy .text-copytitle h1 {
  color: #6aa0cf;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 2.7rem;
  text-align: right;
}

@media only screen and (max-width: 47.94em) {
  .header .text-copy .text-copytitle h1 {
    text-align: center;
  }
}

.mainlogo,
.mainlogo-permanent {
  margin: auto auto auto 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  flex: 0 1 70%;
}

@media only screen and (max-width: 47.94em) {
  .mainlogo,
  .mainlogo-permanent {
    margin: 1rem auto 0.2rem auto;
  }
}

.mainlogo img,
.mainlogo-permanent img {
  width: 150px;
  height: auto;
}

.mainlogo-hidden { opacity: 0; }

.mainmenu {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 47.94em) {
  .mainmenu {
    justify-content: center;
  }
}

@media only screen and (max-width: 32.64em) {
  .mainmenu {
    display: none;
    background-image: linear-gradient(180deg, #2e3746 0%, #374252 8%, #374252 100%);
    background-image: linear-gradient(180deg, rgb(67,154,151, 1) 0%, rgb(67,154,151, 1) 5%, rgb(67,154,151, 0) 5%, rgb(67,154,151, 0) 97%, rgb(67,154,151, 1) 97%);
    
    background-image: linear-gradient(180deg, #2e3746 0%, #374252 8%, rgb(67,154,151, 0) 97%, rgb(67,154,151, 1) 97%);
  }
}

nav {
  flex: 0 1 30%;
  margin-right: 2rem;
  margin-bottom: 10rem;
  margin: 1.5rem 1rem 0 0;
  margin: auto 1rem auto 0;
}

@media only screen and (max-width: 32.64em) {
  nav {
    margin-right: 0;
  }
}

@media only screen and (min-width: 87.5em) {
  nav {
    margin: auto 0 auto 0;
  }
}

nav ul {
  list-style-type: none;
}

.mainmenu li {
  display: flex;
  padding: 1rem 1.8rem;
}

@media only screen and (max-width: 32.64em) {
  .mainmenu li {
    justify-content: center;
    padding-top: 0.6rem;
  }
}

@media only screen and (min-width: 87.5em) {
  .mainmenu li:last-child {
    padding-right: 0;
  }
}

@media only screen and (max-width: 32.64em) {
  .mainmenu li:first-child {
    padding-top: 1rem;
  }
}

.mainmenu li a:link,
.mainmenu li a:visited {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-bottom 0.2s;
}

@media only screen and (max-width: 47.94em) {
  .mainmenu li a:link,
  .mainmenu li a:visited {
    font-size: 1.4rem;
  }
}

.mainmenu li a:hover,
.mainmenu li a:active {
  border-bottom: 2px solid #fff;
}

.mainmenu li a[aria-current="page"] {
  border-bottom: 2px solid #fff;
}

.mmainmenu-open {
  display: block;
}

.mmenu-close {
  display: none;
}

.mmenu-visible {
  display: block;
}

.mobilenav-button {
  margin: 0.85rem 2rem 1.15rem 2rem;
  display: none;
}

@media only screen and (max-width: 32.64em) {
  .mobilenav-button {
    display: inline-block;
  }
}

.mobilenav-button svg {
  height: 2.3rem;
  fill: #fff;
}

@media only screen and (max-width: 32.64em) {
  .mobilenav-button svg {
    width: 100%;
  }
}

.logo-np {
  display: block;
  margin-top: 1.2rem;
  width: 220px;
  height: auto;
}

@media only screen and (max-width: 47.94em) {
  .logo-np {
    margin-top: 0;
    margin: 0 auto;
  }
}

/* +++ INDEX +++ */

.section-index {
  margin: 7rem auto 5rem auto;
  width: 100%;
  min-height: 600px;
  max-width: 1000px;
  flex: 1 0 80%;
}
@media only screen and (max-width: 47.94em) {
  .section-index {
    flex-direction: column;
  }
}

.section-index p {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media only screen and (max-width: 63.94em) {
  .section-index p {
    font-size: 1.75rem;
  }
}

p.index-intro {
  font-size: 1.8rem;
  margin-bottom: 7rem;
  /* padding-left: 2.1rem; */
}

@media only screen and (max-width: 63.94em) {
  p.index-intro {
    font-size: 1.6rem;
  }
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 35rem;
}

@media only screen and (max-width: 63.94em) {
  .hero {
    padding-bottom: 45rem;
  }
}

@media only screen and (max-width: 32.64em) {
  .hero {
    padding-bottom: 42rem;
  }
}

.hero::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Banners de Entradas */

.hero-tut {
  background-image: url(/resources/img/ttut-header.jpg);
}

.hero-tut1 {
  background-image: url(/resources/img/ttut-header.jpg);
}

/* Banners de Proyectos */

.hero-art1 {
  background-image: url(/resources/img/art1-hero.jpg);
}

.hero-animated {
  animation: heroAnimated 0.33s ease-out;
}

@keyframes heroAnimated {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  animation: herotFadeIn 0.33s 0.4s ease-out;
  animation-fill-mode: backwards;
}

@keyframes herotFadeIn {
  0% {
    transform: translate(-50%, -30%);
    opacity: 0;
  }
  80% {
    transform: translate(-50%, -53%);
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.hero-index h1 {
  margin-bottom: 1rem;
  font-family: "DomineSH", serif;
  font-size: 4.3rem;
  color: #fff;
}

@media only screen and (max-width: 32.64em) {
  .hero-index h1 {
    font-size: 3.1rem;
  }
}

.hero-index h2 {
  margin-bottom: 0.8rem;
  font-family: "NunitoSans", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}

@media only screen and (max-width: 32.64em) {
  .hero-index h2 {
    font-size: 2rem;
  }
}

.hero-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero-info h1 {
  margin-bottom: 1rem;
  font-family: "DomineSH", serif;
  font-size: 4.3rem;
  color: #fff;
}

@media only screen and (max-width: 32.64em) {
  .hero-info h1 {
    font-size: 3.1rem;
  }
}

.hero-info h2 {
  margin-bottom: 0.8rem;
  font-family: "NunitoSans", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
}

@media only screen and (max-width: 32.64em) {
  .hero-info h2 {
    font-size: 2rem;
  }
}

.hero-info p {
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
}

@media only screen and (max-width: 32.64em) {
  .hero p {
    font-size: 1.4rem;
  }
}

.hero-info p:nth-of-type(2) {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: inherit;
}

.hero-info a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.hero-info a:hover {
  color: rgba(255, 255, 255, 1);
}

.hero-text-animated {
  animation: projectFadeIn 0.33s ease-out;
  animation-fill-mode: backwards;
}

@keyframes projectFadeIn {
  0% {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.hero .project-tag {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 100px;
}

@media only screen and (max-width: 63.94em) {
  .hero .project-tag {
    font-size: 1.1rem;
  }
}

.tag-vid {
  background-color: var(--primary-blue);
}

a.cta:link,
a.cta:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: var(--primary-blue);
  margin-top: 36px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 22px;
  border-radius: 26px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.02);
  transform: translateY(0);
  transition: all 0.2s ease-in-out;
}

a.cta:active {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
  transform: translateY(2px);
}

a.cta:hover {
  box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.15);
  background-color: #4ba7e4;
}

@media only screen and (max-width: 32.64em) {
  a.cta {
    margin-top: 28px;
    padding: 8px 26px;
    font-size: 14px;
    border-radius: 32px;
  }
}

.content__services {
  margin-top: 2.5rem;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

@media only screen and (max-width: 47.94em) {
  .content__services {
    flex-direction: row;
  }
}

@media only screen and (max-width: 32.64em) {
  .content__services {
    flex-direction: column;
    margin-top: 0;
  }
}

.content__services-item {
  flex: 1 0 33.3333333%;
  text-align: center;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 32.64em) {
  .content__services-item {
    flex: 1 0 100%;
  }
}

.content__services-icon {
  margin-left: 36%;
}

@media only screen and (max-width: 32.64em) {
  .content__services-icon {
    margin-left: 41%;
    margin-bottom: 2px;
  }
}

.cs-icon {
  display: block;
  width: 8rem;
  height: auto;
  fill: #555;
}

@media only screen and (max-width: 47.94em) {
  .cs-icon {
    width: 7rem;
    height: 10rem;
  }
}

.section-index h2 {
  margin-top: 5rem;
  font-size: 4rem;
  color: var(--primary-blue);
}

@media only screen and (max-width: 63.94em) {
  .section-index h2 {
    margin-left: 5%;
  }
}

@media only screen and (max-width: 47.94em) {
  .section-index h2 {
    font-size: 3rem;
  }
}

.section-index h2::after {
  content: "";
  display: block;
  margin-top: 12px;
  width: 38px;
  height: 4px;
  background-color: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .section-index h2::after {
    width: 30px;
    height: 3px;
  }
}

.content__services-item h3 {
  margin-top: -1.2rem;
  font-size: 2.6rem;
  color: #898989;
}

@media only screen and (max-width: 47.94em) {
  .content__services-item h3 {
    font-size: 1.8rem;
  }
}

#nl-badge-frame {
  opacity: .5;
  transform: scale(.8);
}


/* ALTERNATIVE INDEX */

.hero-vidcontainer {
  position: relative;
  padding-bottom: 45rem;
}

@media only screen and (min-width: 47.94em) {
  .hero-vidcontainer {
    padding-bottom: calc(100vh - 7rem);
    padding-bottom: 50rem;
  }
}

.hero-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-vid .hero-vid-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-animated {
  animation: serviceAnimated 1.05s ease-in-out;
  animation-fill-mode: backwards;
}

@keyframes serviceAnimated {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.index-service {
  margin: 4.2rem 0 9rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

@media only screen and (min-width: 63.94em) {
  .index-service {
    width: 90%;
    margin-left: 5%;
  }
}

@media only screen and (max-width: 32.64em) {
  .index-service {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}

h2.index-alttitle {
  margin-top: 0.5rem;
  margin-left: 0;
  font-size: 3.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2.index-alttitle::after {
  margin-left: 50%;
  transform: translateX(-50%);
}

h3.index-altsubtitle {
  color: var(--clr-light-2);
  font-size: 1.8rem;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.index-service h3,
.index-service-inverted h3 {
  color: var(--clr-light-2);
  margin: 1rem 0 1.6rem 0;
  font-size: 2.6rem;
}

@media only screen and (max-width: 63.94em) {
  .index-service h3 {
    margin-left: 10%;
  }
}

@media only screen and (max-width: 32.64em) {
  .index-service h3,
  .index-service-inverted h3 {
    margin: 1rem 0 1rem 0;
    font-size: 2.3rem;
    text-align: center;
  }
}

.index-service p {
  width: 90%;
}

@media only screen and (max-width: 32.64em) {
  .index-service p,
  .index-service-inverted p {
    width: 80%;
    margin-left: 10%;
    text-align: center;
  }
}

.service-info {
  flex: 0 1 55%;
}

@media only screen and (min-width: 32.64em) {
  .service-info-inverted p {
    margin-left: 0;
  }
}

@media only screen and (max-width: 63.94em) {
  .service-info p {
    margin-left: 10%;
  }
}

.service-icon {
  flex: 0 1 45%;
  display: flex;
}

@media only screen and (max-width: 32.64em) {
  .service-info {
    flex: 0 1 100%;
    order: 1;
  }
  .service-icon {
    flex: 0 1 100%;
    order: 0;
  }
}

.service-icon img {
  display: inline-block;
  margin: auto;
  width: 16rem;
  height: 16rem;
}

@media only screen and (max-width: 47.94em) {
  .service-icon img {
    width: 14rem;
    height: 14rem;
  }
}

@media only screen and (max-width: 32.64em) {
  .service-icon img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.5rem;
  }
}

.index-service-inverted {
  margin: 3.8rem 0 9rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

@media only screen and (min-width: 63.94em) {
  .index-service {
    width: 90%;
    margin-left: 5%;
  }
}

@media only screen and (max-width: 32.64em) {
  .index-service-inverted {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}

.service-info-inverted {
  flex: 0 1 55%;
}

.service-icon-inverted {
  flex: 0 1 45%;
  display: flex;
}

@media only screen and (max-width: 32.64em) {
  .service-info-inverted {
    flex: 0 1 100%;
    order: 1;
  }
  .service-icon-inverted {
    flex: 0 1 100%;
    order: 0;
  }
}

.service-icon-inverted img {
  display: inline-block;
  margin: auto;
  width: 17rem;
  height: 17rem;
}

@media only screen and (max-width: 47.94em) {
  .service-icon-inverted img {
    width: 14rem;
    height: 14rem;
  }
}

@media only screen and (max-width: 32.64em) {
  .service-icon-inverted img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.5rem;
  }
}

/* Cookie Consent */

.cc-revoke,
.cc-window {
  font-size: 16px;
  font-size: 1.5rem;
}

.cc-window {
  font-family: "NunitoSans", sans-serif;
  font-weight: 400;
  line-height: 130%;
  background-color: rgb(48, 48, 48);
  color: #d6d6d6;
  box-shadow: 0 -0.8rem 2rem rgba(0, 0, 0, 0.16);
}

.cc-window.cc-banner {
  padding: 0.8em 1.8em;
}

  @media (max-width: 63.94em) {
    .cc-window.cc-banner {  padding: 0.3em 1.6em 0.6em 1.6em;  }
  }

.cc-link:link,
.cc-link:visited {
  color: #d6d6d6;
  font-weight: 400;
}

.cc-link:hover,
.cc-link:active {
  color: #fff;
}

.cc-btn {
  border: 2px solid #d6d6d6;
  border-radius: 17px;
  color: #d6d6d6;
  transition: color 0.2s, background-color .2s;
}

.cc-btn:hover,
.cc-btn:active {
  color: #303030;
  background-color: #d6d6d6;
}

/* +++ BIO SECTION +++ */

.section-bio {
  margin: 5rem auto;
  width: 100%;
  min-height: 600px;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex: 1 0 100%;
}

@media only screen and (max-width: 47.94em) {
  .section-bio {
    flex-direction: column;
  }
}

.bio-leftcol {
  flex: 0 0 25%;
}

.bio-leftcol figure {
  padding: 1.3rem;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 47.94em) {
  .bio-leftcol figure {
    width: 70%;
    margin-left: 15%;
  }
}

@media only screen and (min-width: 63.94em) {
  .bio-leftcol figure {
    padding: 1.4rem 1.4rem 1.4rem 0;
  }
}

.section-bio__pic {
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  background-color: #555;
  width: 100%;
  height: auto;
  transform: scale(0.995);
}

/* Lottie Bio Picture */

.bio-leftcol #lottie-bio {
  padding: 1.3rem;
  position: relative;
}

@media only screen and (max-width: 47.94em) {
  .bio-leftcol #lottie-bio {
    width: 70%;
    margin-left: 15%;
  }
}

@media only screen and (min-width: 63.94em) {
  .bio-leftcol #lottie-bio {
    padding: 1.4rem 1.4rem 1.4rem 0;
  }
}

.bio-rightcol {
  flex: 0 0 75%;
  padding-left: 1.6rem;
}

.bio-rightcol .language-select {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.45rem;
  color: var(--foreground-color);
}

.bio-rightcol .language-select a {
  transition: color 0.3s ease-in-out;
}

.bio-rightcol .language-select a:link,
.bio-rightcol .language-select a:visited {
  color: var(--lang-select-clr);
}

.bio-rightcol .language-select a:hover,
.bio-rightcol .language-select a:active {
  color: #555;
}

.bio-rightcol h1 {
  margin-top: 0.5rem;
  font-size: 4.2rem;
  color: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .bio-rightcol h1 {
    font-size: 3rem;
  }
}

.bio-rightcol h1::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-blue);
  transform-origin: left;
}

@keyframes sublineaBio {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(3.4);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media only screen and (max-width: 47.94em) {
  .bio-rightcol h1::after {
    width: 30px;
    height: 3px;
  }
}

@media only screen and (min-width: 47.94em) and (prefers-reduced-motion: no-preference) {
  .bio-rightcol h1::after {
    animation: sublineaBio 2.5s 2s ease-in-out;
    animation-iteration-count: infinite;
  }
}

.bio-rightcol p {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media only screen and (max-width: 47.94em) {
  .bio-rightcol p {
    width: 90%;
    font-size: 1.52rem;
  }
}

.bio-rightcol-skills {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media only screen and (max-width: 47.94em) {
  .bio-rightcol-skills {
    flex-direction: column;
  }
}

.brs-studies,
.brs-capacities,
.brs-technics,
.brs-other {
  flex: 0 0 50%;
}

@media only screen and (max-width: 47.94em) {
  .brs-studies,
  .brs-capacities,
  .brs-technics,
  .brs-other {
    margin-bottom: 1.9rem;
  }

  .brs-studies,
  .brs-capacities,
  .brs-technics,
  .brs-other {
    font-size: 3rem;
  }
}

.brs-studies h2,
.brs-capacities h2,
.brs-technics h2,
.brs-other h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--clr-light-2);
}

@media only screen and (max-width: 47.94em) {
  .brs-studies h2,
  .brs-capacities h2,
  .brs-technics h2,
  .brs-other h2 {
    font-size: 1.8rem;
  }
}

.brs-studies ul,
.brs-capacities ul,
.brs-technics ul,
.brs-other ul {
  margin: 1.4rem 0 2rem 0;
  font-size: 1.6rem;
  color: var(--foreground-color);
}

@media only screen and (max-width: 47.94em) {
  .brs-studies ul,
  .brs-capacities ul,
  .brs-technics ul,
  .brs-other ul {
    font-size: 1.52rem;
    margin-bottom: 0.5rem;
  }
}

.brs-studies li,
.brs-capacities li,
.brs-technics li,
.brs-other li {
  margin-left: 1.8rem;
  line-height: 1.4;
}

.brs-studies span,
.brs-technics span {
  font-style: italic;
  font-size: 95%;
  color: var(--foreground-color);
}

/* +++ More info Button +++ */

.brs-studies .collapse-button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  text-transform: uppercase;
  font-family: "NunitoSans", sans-serif;
  font-size: 1.05rem;
  color: var(--foreground-color);
  letter-spacing: 0.08rem;
  padding: 7px 12px 5px 12px;
  border: 1px solid #555;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.4rem;
  margin-bottom: 2rem;
  transition: all 0.2s ease-in-out;
}

.brs-studies .collapse-button:hover {
  background-color: #555;
  color: #FFF;
}

.brs-studies .collapse-button span {
  margin-right: 0.1rem;
  font-style: normal;
  font-size: 1.1rem;
  color: #555;
  transition: margin-right 0.3s;
}

.brs-studies .collapse-button span:hover {
  color: #FFF;
  margin-right: 0.3rem;
}

.brs-studies .button-active {
  background-color: #555;
  color: #fff;
}

.brs-studies .collapse-panel {
  max-height: 0;
  overflow: hidden;
  font-family: inherit, sans-serif;
  color: #555;
  transition: max-height 0.3s ease-in-out;
}

.brs-studies .arrow-more-info {
  transform-origin: center;
  transform: rotate(90deg);
  margin-right: 0.3rem;
  margin-top: -0.4rem;
  fill: currentColor;
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.3s ease-in-out;
}

.arrow-more-info-rotated {
  transform: rotate(180deg) !important;
}

.collapse-panel .course-hidden {  margin-top: -0.3rem;  }



.bio-icon {
  float: left;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 1rem;
  fill: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .bio-icon {
    height: 2rem;
    width: 2rem;
    margin-right: 0.8rem;
    margin-top: -2px;
  }
}

@media only screen and (max-width: 63.94em) {
  .dl-buttons {
    margin-left: 5%;
  }
}

@media only screen and (max-width: 47.94em) {
  .dl-buttons {
    width: 45%;
    margin-left: 27.5%;
    margin-bottom: 2.6rem;
    text-align: center;
  }
}

.dl-buttons button {
  display: inline-block;
  text-decoration: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0);
  color: #58b224;
  border: 2px solid #58b224;
  margin-top: 1.7rem;
  padding: 8px 22px;
  font-size: 1.4rem;
  transform: scale(1);
  transform-origin: left bottom;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

@media only screen and (min-width: 87.5em) {
  .dl-buttons button {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 47.94em) {
  .dl-buttons button {
    width: 100%;
    display: block;
    font-size: 1.52rem;
  }
}

.dl-buttons button:hover {
  color: #fff;
  background-color: #58b224;
  border: 2px solid #58b224;
  transform: scale(1.09);
}

.dl-buttons a {
  text-decoration: none;
  color: inherit;
}

.button-animated {
  animation: buttonsEffect 3.5s 2s infinite;
  animation-fill-mode: both;
}

@keyframes buttonsEffect {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  }

  25% {
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
  }

  50% {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  }

  75% {
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
  }

  100% {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  }
}

/* +++ TUTORIALS SECTION +++ */

.section-news {
  margin: 5rem auto 5.2rem auto;
  width: 100%;
  min-height: 600px;
  max-width: 1000px;
  flex: 1 0 80%;
}

.section-news h1 {
  margin-top: 0.5rem;
  margin-bottom: 3.9rem;
  font-size: 4.2rem;
  color: var(--primary-blue);
}

@media only screen and (max-width: 63.94em) {
  .section-news h1 {
    margin-left: 2%;
  }
}

@media only screen and (max-width: 47.94em) {
  .section-news h1 {
    margin-left: 4%;
  }
}

.section-news h1::after {
  content: "";
  display: block;
  margin-top: 3px;
  width: 50px;
  height: 4px;
  background-color: var(--primary-blue);
}

.section-news > .news__item:first-of-type {
  margin-top: 0;
}

.news__item {
  margin: 3rem auto 8.8rem auto;
  display: flex;
  flex: 1;
  flex-direction: column;
}

@media only screen and (max-width: 63.94em) {
  .news__item {
    padding: 0 2% 0 2%;
  }
}

@media only screen and (max-width: 47.94em) {
  .news__item {
    margin-bottom: 6rem;
    padding: 0 4% 0 4%;
  }
}

.news__item-date {
  margin-top: 2.2rem;
  color: var(--primary-blue);
  font-style: italic;
}

@media only screen and (max-width: 47.94em) {
  .news__item-date {
    margin-top: 1rem;
  }
}

.news__item-date::after {
  content: "";
  display: block;
  margin-top: 3px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .news__item-date::after {
    width: 20px;
    height: 2px;
  }
}

.news__item-readmore:link,
.news__item-readmore:visited {
  margin-top: 2rem;
  text-decoration: none;
  color: #797979;
  font-size: 1.6rem;
}

@media only screen and (max-width: 47.94em) {
  .news__item-readmore:link,
  .news__item-readmore:visited {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}

.news__item-readmore:hover,
.news__item-readmore:active {
  text-decoration: underline;
}

.news__item h2 {
  margin: 1.2rem 0 1.6rem 0;
  font-size: 3rem;
}

@media only screen and (max-width: 47.94em) {
  .news__item h2 {
    margin-bottom: 0.8rem;
    font-size: 2rem;
  }
}

.news__item h2:hover {
  color: var(--primary-blue);
}

.news__item h2 a {
  text-decoration: none;
  color: inherit;
}

.news__item p {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media only screen and (max-width: 47.94em) {
  .news__item p {
    font-size: 1.4rem;
  }
}

.news__item figure {
  width: 100%;
  height: 27rem;
  overflow: hidden;
  border-radius: 7px;
}

@media only screen and (max-width: 47.94em) {
  .news__item figure {
    height: auto;
  }
}

.news__item-photo {
  width: 100%;
  height: auto;
}

.news__paginationfirst {
  width: 50%;
  margin-left: 0;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}

@media only screen and (max-width: 63.94em) {
  .news__paginationfirst {
    margin-left: 2%;
  }
}

@media only screen and (max-width: 47.94em) {
  .news__paginationfirst {
    font-size: 1.4rem;
    margin-left: 4%;
  }
}

@media only screen and (max-width: 32.64em) {
  .news__paginationfirst {
    width: 90%;
    flex-direction: column;
    flex-direction: row;
  }
}

.news__pagination {
  width: 50%;
  margin-left: 25%;
  margin-top: 6rem;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}

@media only screen and (max-width: 47.94em) {
  .news__pagination {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 32.64em) {
  .news__pagination {
    width: 90%;
    margin-left: 5%;
    flex-direction: column;
    flex-direction: row;
  }
}

.news__paginationfirst a,
.news__pagination a {
  text-decoration: none;
  color: inherit;
}

.news__paginationfirst a:hover,
.news__pagination a:hover {
  text-decoration: underline;
}

.pagination-next {
  flex: 0 0 44%;
  text-decoration: none;
  border-radius: 20px;
  color: #898989;
  background-color: #fff;
  border: 2px solid #898989;
  padding: 8px 22px;
  font-size: 1.4rem;
  text-align: right;
}

.pagination-older {
  flex: 0 0 44%;
  text-decoration: none;
  border-radius: 20px;
  color: #898989;
  background-color: #fff;
  border: 2px solid #898989;
  padding: 8px 22px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 32.64em) {
  .pagination-older,
  .pagination-next {
    flex: 0 1 40%;
    text-align: center;
  }
}

@media only screen and (min-width: 63.94em) {
  .pagination-older,
  .pagination-next {
    text-align: center;
  }
}

/* +++ ARTICLE SECTION +++ */

.section-entry h2 {
  margin-bottom: 2.6rem;
  margin-top: 3rem;
  font-weight: 500;
}

@media only screen and (max-width: 63.94em) {
  .section-entry h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    margin-left: 5%;
  }
}

.section-entry h3 {
  font-size: 2.2rem;
  margin-bottom: 2.6rem;
}

.section-entry p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry p {
    width: 90%;
    margin-left: 5%;
    font-size: 1.52rem;
  }
}

.section-entry ul {
  margin: 2.6rem 0 3.4rem 0;
  font-size: 1.6rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry ul {
    margin-left: 5%;
  }
}

.section-entry ul li {
  margin-left: 1.8rem;
  line-height: 1.4;
}

@media only screen and (max-width: 63.94em) {
  .section-entry ul li {
    width: 90%;
    font-size: 1.4rem;
  }
}

.section-entry figure {
  margin: 4.2rem 0 5rem 0;
}

.section-entry figcaption {
  color: #949494;
  font-size: 1.4rem;
  text-align: center;
  padding-top: 0.3rem;
}

.section-entry a {
  color: inherit;
  transition: color 0.2s;
}

.section-entry a:hover {
  color: var(--primary-blue);
}

.entry-articlepic {
  width: 60%;
  margin-left: 20%;
}

.img-animated {
  animation: imgAnimated 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
}

@keyframes imgAnimated {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.color-palette {
  display: flex;
  width: 70%;
  height: 25rem;
  margin-top: 4.2rem;
  margin-bottom: 6rem;
  margin-left: 15%;
}

@media only screen and (max-width: 32.64em) {
  .color-palette {
    flex-direction: column;
    width: 40%;
    height: 35rem;
    margin-left: 30%;
  }
}

.color-palette-item {
  display: flex;
  align-items: flex-end;
  flex: 1;
}

.color-palette-item div {
  flex: 0 1 100%;
}

.color-palette-item p {
  text-align: center;
  word-break: break-all;
  font-family: "NunitoSans", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

@media only screen and (max-width: 32.64em) {
  .color-palette-item p {
    font-size: 1.6rem;
  }
}

/* Colores de Logos */

/* AGC Motors */

.color-item120 {
  background-color: rgb(82, 82, 80);
}

.color-item362 {
  background-color: rgb(12, 53, 105);
}

.color-item714 {
  background-color: rgb(23, 87, 166);
}

/* Talleres y Gruas Garcia */

.color-itemtigg1 {
  background-color: rgb(252, 232, 50);
}

.color-itemtigg2 {
  background-color: rgb(13, 60, 150);
}

/* Skylake Ski and Resort */

.color-skyl1 {
  background-color: rgb(68, 68, 68);
}

.color-skyl2 {
  background-color: rgb(254, 160, 38);
}

.color-skyl3 {
  background-color: rgb(103, 193, 243);
}

.color-skyl4 {
  background-color: rgb(39, 151, 217);
}

.color-skyl5 {
  background-color: rgb(18, 74, 157);
}

/* Capa & Boina */

.color-cb1 {
  background-color: #000000;
}

/* Todoauto */

.color-ta1 {
  background-color: rgb(217, 217, 217);
}

.color-ta2 {
  background-color: rgb(19, 22, 115);
}

.color-ta3 {
  background-color: rgb(61, 67, 181);
}

/* Plasticos Mallol */

.color-pm1 {
  background-color: rgb(10, 48, 96);
}

.color-pm2 {
  background-color: rgb(249, 209, 23);
}

/* Hotel San Pedro */

.color-sp1 {
  background-color: #75b6f8;
}

.color-sp2 {
  background-color: #e0b654;
}

.color-sp3 {
  background-color: #46912c;
}

.color-sp4 {
  background-color: #654f16;
}

/* Plasticos Mallol */

.color-sany1 {
  background-color: rgb(20, 167, 210);
}

.color-sany2 {
  background-color: rgb(48, 195, 238);
}

.color-sany3 {
  background-color: rgb(85, 85, 85);
}

/* Color Swatchbox */

.color-palette-s {
  display: flex;
  justify-content: center;
  width: 70%;
  margin-top: 4.2rem;
  margin-bottom: 4rem;
  margin-left: 15%;
}

@media only screen and (max-width: 32.64em) {
  .color-palette-s {
    flex-direction: column;
    width: 40%;
    margin-left: 30%;
  }
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 30%;
  padding: 2rem;
}

@media only screen and (max-width: 32.64em) {
  .color-swatch {
    width: 40%;
    height: 35rem;
    margin-left: 30%;
    padding: 0.2rem;
  }
}

/* .color-swatch:first-child { padding-left: 0; } */

.color-swatch p {
  width: 100%;
  color: #909090;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 800;
}

@media only screen and (max-width: 63.94em) {
  .color-swatch p {
    margin-left: 0;
    font-size: 1.6rem;
    text-align: center;
  }
}

.color-swatch-box {
  width: 112px;
  height: 112px;
  position: relative;
  margin-bottom: 2.6rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 0 2px 2px rgba(0, 0, 0, 0.11),
    0 4px 4px rgba(0, 0, 0, 0.11);
}

@media only screen and (max-width: 47.94em) {
  .color-swatch-box {
    width: 72px;
    height: 72px;
  }
}

.color-swatch-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.2);
}

.veredict-box {
  display: flex;
}

@media only screen and (max-width: 63.94em) {
  .veredict-box {
    width: 90%;
    margin-left: 5%;
  }
}

@media only screen and (max-width: 32.64em) {
  .veredict-box {
    flex-direction: column;
  }
}

.veredict-box span {
  font-size: 2rem;
}

.veredict-box ul {
  margin-left: 0;
}

.veredict-box-1,
.veredict-box-2,
.veredict-box-3 {
  flex: 1;
  margin: 0.6rem;
}

.veredict-box-1,
.veredict-box-2 {
  border-right: 1px solid #dedede;
}

@media only screen and (max-width: 32.64em) {
  .veredict-box-1,
  .veredict-box-2 {
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }
}

.vbox-icong {
  fill: rgb(47, 210, 11);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.vbox-iconb {
  fill: rgb(210, 11, 47);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.vbox-iconi {
  fill: rgb(244, 191, 41);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

/* +++ TUTORIAL SECTION +++ */

.section-entry,
.section-entry-dark {
  margin: 5rem auto;
  width: 100%;
  min-height: 600px;
  max-width: 1000px;
  flex: 1 0 80%;
}

@media only screen and (max-width: 47.94em) {
  .section-entry,
  .section-entry-dark {
    flex-direction: column;
  }
}

.section-entry-dark p::selection {
  background-color: #acacac;
}

.section-entry-dark h2 {
  color: #e6e6e6;
  margin-bottom: 2.6rem;
  margin-top: 3rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry-dark h2 {
    margin-left: 5%;
  }
}

.section-entry-dark h3 {
  color: #e6e6e6;
  font-size: 2.2rem;
  margin-bottom: 2.6rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry-dark h3 {
    margin-left: 5%;
  }
}

.section-entry-dark p {
  color: var(--clr-light);
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry-dark p {
    width: 90%;
    margin-left: 5%;
    font-size: 1.52rem;
  }
}

p.tut-difficulty {
  font-size: 1.9rem;
  font-style: italic;
  letter-spacing: 1px;
}

.section-entry-dark ul {
  color: var(--clr-light);
  margin: 2.6rem 0 3.4rem 0;
  font-size: 1.6rem;
}

@media only screen and (max-width: 63.94em) {
  .section-entry-dark ul {
    margin-left: 5%;
  }
}

.section-entry-dark ul li {
  margin-left: 1.8rem;
  line-height: 1.4;
}

@media only screen and (max-width: 63.94em) {
  .section-entry-dark ul li {
    font-size: 1.4rem;
  }
}

.section-entry-dark figure {
  margin: 4.2rem 0 3.4rem 0;
}

.section-entry-dark figcaption {
  color: #bdbdbd;
  font-size: 1.4rem;
  text-align: center;
  padding-top: 0.3rem;
}

.section-entry-dark a {
  color: inherit;
  transition: color 0.2s;
}

.section-entry-dark a:hover {
  color: #2d98e0;
}

.entry-steppic {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 2rem;
}

.entry-finalpic {
  width: 60%;
  margin-left: 20%;
}

.share-buttons {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 63.94em) {
  .share-buttons {
    margin-left: 5%;
  }
}

a.buttons:not(:last-child) {
  margin-right: 1.2rem;
}

a.buttons {
  text-decoration: none;
  background-color: transparent;
  box-shadow: 0px 5px 0px 0px rgba(24, 119, 242, 0);
  color: #555;
  border: 2px solid #555;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10ch;
  padding: 7px 14px;
  font-size: 1.6rem;
  line-height: 1.1;
  cursor: pointer;
  transition: all 0.3s;

  position: relative;
}

@media only screen and (max-width: 63.94em) {
  a.buttons {
    font-size: 1.4rem;
  }
}

a.buttons:hover {
  color: #fff;
  background-color: #555;
  box-shadow: 0px 6px 7px 0px rgba(24, 119, 242, 0.35);
}

.buttons__icon {
  width: 0.94em;
  height: 0.94em;
  margin-right: 0.5em;
}

a.buttons-dark:not(:last-child) {
  margin-right: 1.2rem;
}

a.buttons-dark {
  text-decoration: none;
  background-color: transparent;
  box-shadow: 0px 5px 0px 0px rgba(24, 119, 242, 0);
  color: var(--clr-light);
  border: 2px solid #d6d6d6;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10ch;
  padding: 7px 14px;
  font-size: 1.6rem;
  line-height: 1.1;
  cursor: pointer;
  transition: all 0.3s ease;

  position: relative;
}

@media only screen and (max-width: 63.94em) {
  a.buttons-dark {
    font-size: 1.4rem;
  }
}

a.buttons-dark:hover {
  color: #242424;
  background-color: #d6d6d6;
  box-shadow: 0px 6px 7px 0px rgba(24, 119, 242, 0.35);
}

.buttons__icon-dark {
  width: 0.94em;
  height: 0.94em;
  margin-right: 0.5em;
}

.buttons__icon-df {
  fill: #555;
}

.buttons__icon-fb {
  fill: #1877f2;
}

.buttons__icon-tw {
  fill: #1da1f2;
}

#upBtn {
  width: max-content;
  height: 36px;
  display: none;
  position: fixed;
  bottom: 35px;
  right: 40px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #242424;
  border: 2px solid #e6e6e6;
  color: #e6e6e6;
  box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.19);
  cursor: pointer;
  padding: 10px 10px;
  line-height: 1;
  border-radius: 20px;
  font-size: 1.35rem;
  transition: all 0.2s;
}

@media only screen and (max-width: 63.94em) {
  #upBtn {
    width: 36px;
    height: 36px;
  }
}

#upBtn svg {
  fill: #FFFFFF;
  width: 10px;
  height: 10px;
}

#upBtn span {
  margin-left: 0.4rem;
}

#upBtn:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 63.94em) {
  #upBtn span {
    display: none;
  }
}

/* +++ PORTFOLIO SECTION +++ */

.section-catalog {
  background-color: var(--background-pf);
  width: 100%;
  min-height: 60rem;
  max-width: 100%;
  flex: 1 0 80%;
}

@media only screen and (min-width: 47.94em) {
  .section-catalog {
    min-height: 95rem;
  }
}

.catalog {
  width: 100%;
  max-width: 990px;
  margin: 6.5rem auto 4.2rem auto;
  display: flex;
  flex: 0 0 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

@media only screen and (max-width: 63.94em) {
  .catalog {
    justify-content: center;
  }
}

@media only screen and (max-width: 32.64em) {
  .catalog {
    width: 90%;
    width: calc(80% - 2vw);
    flex-direction: column;
  }
}

.catalog__item {
  position: relative;
  overflow: hidden;
  background-color: var(--item-background);
  border-radius: 7px;
  border: 1px solid var(--item-border);
  margin: 1.45rem;
  min-height: 200px;
  /* For the Filter Script use display none. Item initial display mode */
  display: none;
  flex: 0 0 22%;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  transition: box-shadow 0.3s, transform 0.15s ease-in;
}

@media only screen and (max-width: 32.64em) {
  .catalog__item {
    margin-bottom: 3.2rem;
  }
}

/* Display: grid for portfolio section if supported by client browser. */

@supports (display: grid) {

  .catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 40ch), 1fr));
  }

}

.catalog__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.11);
}

.catalog__item-new:after {
  content: "Reciente";
  position: absolute;
  top: 7%;
  left: -6%;
  text-transform: uppercase;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: var(--newitem-tag-clr);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.14),
  0 4px 0 0 rgba(0, 0, 0, 0.07);
  color: #FFF;
  margin: 0 0.25rem 0.3rem 1.2rem;
  padding: 0.5rem 1.2rem 0.5rem 0.9rem;
  clip-path: polygon(0% 0%, 100% 0, 92% 50%, 100% 99%, 0% 100%);
}

.project-title {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
}

.project-title h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.catalog-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tut-category {
  position: absolute;
  top: 0;
  left: -0.25rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
}

.tut-categorytitle {
  background-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  line-height: 1;
  font-size: 1.05rem;
  font-weight: 300;
  border-radius: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0.25rem 0.3rem 0.25rem;
  padding: 0.9rem 0.9rem 0.7rem 0.9rem;
}

.catalog__item figure {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  overflow: hidden;
}

@media only screen and (max-width: 32.64em) {
  .catalog__item figure {
    height: 18rem;
  }
}

.catalog__item-photo {
  width: 100%;
  height: auto;
}

.catalog__item h2 {
  margin-top: 1.6rem;
  padding: 0.2rem 1.2rem 0.3rem 1.2rem;
  font-size: 1.55rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.catalog__item a {
  color: inherit;
  text-decoration: none;
}

.catalog__item a:hover {
  background-image: linear-gradient(
    to right,
    var(--tertiary-blue),
    var(--secondary-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--text-decoration-clr);
}

.catalog__item h3 {
  color: var(--foreground-color);
  width: 80%;
  padding: 0 1.2rem 1.7rem 1.2rem;
  font-size: 1.4rem;
  text-transform: capitalize;
  font-weight: 400;
}

.catalog__item p {
  margin-top: 1.6rem;
  padding-left: 1.2rem;
  padding-bottom: 1rem;
  color: var(--primary-blue);
  font-size: 1.35rem;
  line-height: 1.4;
  text-transform: uppercase;
}

@media only screen and (max-width: 32.64em) {
  .catalog p {
    margin-top: 2rem;
  }
}

.catalog__item p::after {
  content: "";
  display: block;
  margin-top: 3px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
}

#catalog__filter {
  max-width: 990px;
  margin: 5.5rem auto 0 auto;
  text-align: center;
}

#catalog__filter .btn {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border-radius: 20px;
  color: var(--primary-blue);
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  margin: 0 0.4rem 1.2rem 0.4rem;
  padding: 8px 22px;
  font-size: 1.3rem;
  transition: color 0.2s, background-color 0.2s;
}

@media only screen and (max-width: 47.94em) {
  #catalog__filter .btn {
    margin-bottom: 1%;
    font-size: 1.5rem;
  }
}

#catalog__filter .btn:hover {
  color: #fff;
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

#catalog__filter .btn.active {
  color: #fff;
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.showitem {
  display: block;
}

.catalog__viewmore {
  max-width: 990px;
  margin: 4.4rem auto 4.2rem auto;
  text-align: center;
}

.catalog__viewmore button {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border-radius: 20px;
  color: var(--primary-blue);
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  /* margin-left: 48%; */
  padding: 8px 22px;
  font-size: 1.4rem;
  transition: color 0.2s, background-color 0.2s;
}

.catalog__viewmore button:hover {
  color: #fff;
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.cati__hidden {
  display: none;
}

button:focus {
  outline: none;
}

/* +++ PORTFOLIO GRID OPTION +++ */

.section-pfgrid {
  margin: 4.5rem auto 5.2rem auto;
  width: 100%;
  min-height: 700px;
  max-width: 1000px;
  flex: 1 0 80%;
}

.section-pfgrid h1 {
  margin: 0.5rem 0 3.9rem 1.45rem;
  font-size: 4.2rem;
  letter-spacing: 1px;
  color: var(--primary-blue);
}

.section-pfgrid h1::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-blue);
}

.tutcatalog {
  width: 100%;
  max-width: 990px;
  margin: 6.5rem auto 6.5rem auto;
  margin: 0 auto 0 auto;
  display: flex;
  flex: 0 0 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

@media only screen and (max-width: 63.94em) {
  .tutcatalog {
    justify-content: center;
  }
}

@media only screen and (max-width: 32.64em) {
  .tutcatalog {
    width: 90%;
    flex-direction: column;
  }
}

.tutcatalog__item {
  background-color: var(--item-background);
  border-radius: 7px;
  border: 1px solid var(--item-border);
  margin: 1.45rem;
  min-height: 200px;
  flex: 0 0 30%;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

@media only screen and (max-width: 32.64em) {
  .tutcatalog__item {
    margin-bottom: 3.2rem;
  }
}

.tutcatalog__item:hover {
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.12);
}

.tutcatalog-photo {
  width: 100%;
  overflow: hidden;
}

.tutcatalog__item figure {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  overflow: hidden;
}

@media only screen and (max-width: 32.64em) {
  .tutcatalog__item figure {
    height: 18rem;
  }
}

.tutcatalog__item-photo {
  width: 100%;
  height: auto;
}

.tutcatalog__item h2 {
  margin: 0.8rem 0 0.4rem 0;
  padding: 0.2rem 1.2rem 0.1rem 1.2rem;
  font-size: 1.63rem;
  line-height: 1.35;
  text-transform: capitalize;
  text-transform: none;
}

.tutcatalog__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.tutcatalog__item a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
  text-decoration-color: var(--tertiary-blue);
}

.tutcatalog__item h3 {
  color: var(--clr-light-2);
  padding: 0 1.2rem 1.2rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

@media only screen and (max-width: 47.94em) {
  .tutcatalog__item h3 {
    font-size: 1.52rem;
  }
}

.tutcatalog__item p {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
  line-height: 1.4;
  text-transform: uppercase;
}

@media only screen and (max-width: 32.64em) {
  .tutcatalog p {
    margin-top: 2rem;
  }
}

.tut__item-date {
  color: var(--primary-blue);
  font-style: italic;
}

@media only screen and (max-width: 47.94em) {
  .tut__item-date {
    margin-top: 1rem;
  }
}

.tut__item-date::after {
  content: "";
  display: block;
  margin-top: 3px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .tut__item-date::after {
    width: 20px;
    height: 2px;
  }
}

/* +++ CONTACT SECTION +++ */

.section-contact {
  margin: 5rem auto;
  width: 100%;
  min-height: 500px;
  max-width: 700px;
  flex: 1 0 80%;
}

@media only screen and (min-width: 47.94em) {
  .section-contact {
    min-height: 700px;
  }
}

.section-contact h1 {
  margin-top: 0;
  margin-bottom: 3.7rem;
  font-size: 4.2rem;
  color: var(--primary-blue);
}

.section-contact h1::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  .section-contact h1 {
    padding: 0 3% 0 3%;
  }
}

@media only screen and (max-width: 43.125em) {
  .contact-info { padding-left: 1.6rem; }
}

.contact-info p {
  font-size: 1.6rem;
  line-height: 1.4;
}

#form {
  margin-top: 2rem;
  font-size: 1.6rem;
}

@media only screen and (max-width: 63.94em) {
  #form {
    font-size: 1.52rem;
  }
}

@media only screen and (max-width: 47.94em) {
  #form {
    padding: 0 3% 0 3%;
  }
}

.form__name,
.form__email,
.form__message,
.form__submit .form__privacycheck {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 32.64em) {
  .form__name,
  .form__email,
  .form__message,
  .form__privacycheck {
    flex-direction: column;
  }

  .form__submit {
    margin-top: 0.5rem;
  }
}

.form__privacycheck {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.form__privacycheck a {
  color: var(--tertiary-blue);
}

.form__name-1,
.form__email-1,
.form__message-1 {
  flex: 0 0 15%;
}

@media only screen and (max-width: 32.64em) {
  .form__name-1,
  .form__email-1,
  .form__message-1 {
    margin-bottom: 1rem;
  }
}

.form__name-2,
.form__email-2,
.form__message-2 {
  flex: 1 0 85%;
}

.form__message-2 textarea {
  min-height: 9rem;
}

.form__privacycheck-1 {
  flex: 0 0 100%;
}

.form__captcha {
  flex: 1 0 100%;
}

.form__submit-1 {
  flex: 1 0 10%;
}

.form-messages {
  width: 30vw;
  height: 70px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 5px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 47.94em) {
  .form-messages {
    width: 65vw;
    height: 5rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    padding: 0.8rem;
    border-radius: 3px;
  }
  .success {
    background-color: #d4edda;
    line-height: 130%;
    font-size: 1.4rem;
  }
  .error {
    background-color: #f8d7da;
    line-height: 130%;
    font-size: 1.4rem;
  }
}

.success {
  background-color: #d4edda;
  line-height: 130%;
}

.error {
  background-color: #f8d7da;
  line-height: 130%;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #f4f4f4;
  resize: vertical;
  transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
#form textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--secondary-blue);
}

input[type="text"]:focus:invalid,
input[type="email"]:focus:invalid {
  border-bottom: 1px solid var(--form-invalid);
}

input[type="checkbox"] {
  margin: 10px 5px 10px 0;
}

button[type="submit"],
input[type="submit"] {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border-radius: 20px;
  color: var(--primary-blue);
  background-color: #fff;
  border: 2px solid var(--primary-blue);
  margin-top: 1.7rem;
  padding: 8px 22px;
  font-size: 1.4rem;
  transition: color 0.2s, background-color 0.2s;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
  color: #fff;
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

@media only screen and (max-width: 47.94em) {
  button[type="submit"],
  input[type="submit"] {
    font-size: 1.52rem;
  }
}

@media only screen and (min-width: 87.5em) {
  button[type="submit"],
  input[type="submit"] {
    font-size: 1.5rem;
  }
}

#form > *:focus {
  outline: none;
}

.contact-button {
  margin: 4rem 0 4rem 0;
}

.contact-button a {
  text-decoration: none;
}

.contact-button button {
  display: block;
  margin-bottom: 2rem;
}

.button-wa {
  min-width: 228px;
  border: 2px solid #25d366;
  border-radius: 20px;
  background-color: #25d366;
  color: #fff;
  cursor: pointer;
  padding: 8px 22px;
  font-size: 1.4rem;
  transition: border 0.2s, background-color 0.2s, transform 0.2s;
}

.button-wa:hover {
  border: 2px solid #20b658;
  background-color: #20b658;
}

.button-wa:active {
  transform: translateY(1px);
}

@media only screen and (max-width: 47.94em) {
  .button-wa {
    margin-left: 3%;
    font-size: 1.52rem;
  }
}

.button-wa svg {
  fill: #fff;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.6rem;
  vertical-align: baseline;
  margin-bottom: -1px;
  transition: all 0.2s;
}

.button-tg {
  min-width: 228px;
  border: 2px solid #0088cc;
  border-radius: 20px;
  background-color: #0088cc;
  color: #fff;
  cursor: pointer;
  padding: 8px 22px;
  font-size: 1.4rem;
  transition: border 0.2s, background-color 0.2s;
}

@media only screen and (max-width: 47.94em) {
  .button-tg {
    margin-left: 3%;
    font-size: 1.52rem;
  }
}

.button-tg:hover {
  border: 2px solid #0071aa;
  background-color: #0071aa;
}

.button-tg:active {
  transform: translateY(1px);
}

.button-tg svg {
  fill: #fff;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.6rem;
  vertical-align: baseline;
  margin-bottom: -1px;
  transition: all 0.2s;
}

.contact-button::before {
  content: "";
  display: block;
  height: 0.4rem;
  width: 5rem;
  background-color: #c3c3c3;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 47.94em) {
  .contact-button::before {
    margin-left: 3%;
  }
}

/* +++ FOOTER +++ */

.col-footer {
  background-color: var(--footer-background);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

@media only screen and (max-width: 47.94em) {
  .col-footer {
    align-self: auto;
  }
}

@media only screen and (min-width: 87.5em) {
  .col-footer {
    padding: 1.5rem 26rem;
  }
}

.footer__info {
  flex: 0 1 70%;
  padding: 0.5rem 0 0.5rem 0;
  color: var(--foreground-color);
}

@media only screen and (max-width: 32.64em) {
  .footer__info {
    flex: 0 1 100%;
  }
}

.footer__info p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 0 0.2rem;
}

@media only screen and (max-width: 32.64em) {
  .footer__info p {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    text-align: center;
  }
}

.info-flexbox {
  background-image: linear-gradient(to bottom, var(--primary-blue), #1c53b1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__social {
  display: flex;
  flex: 0 1 30%;
  justify-content: flex-end;
}

@media only screen and (max-width: 32.64em) {
  .footer__social {
    flex: 0 1 100%;
    justify-content: center;
    margin-bottom: 1.6rem;
  }
}

.footer-iconf,
.footer-iconi,
.footer-iconli {
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  margin-top: 1.3rem;
  fill: var(--foreground-color);
  transition: fill 0.2s 0.1s, transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.footer-iconf:hover {
  fill: #3b5998;
  transform: translateY(-0.4rem);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.17);
}

.footer-iconi:hover {
  fill: #ff165f;
  transform: translateY(-0.4rem);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.17);
}

.footer-iconli:hover {
  fill: #007bb5;
  transform: translateY(-0.38rem);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.17);
}

.footer-iconf:not(last-child),
.footer-iconi:not(last-child),
.footer-iconli:not(last-child) {
  margin-right: 1.35rem;
}

.footer-iconheart {
  fill: #eb1d36;
  display: inline-block;
  height: 1.6rem;
  width: 1.6rem;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  vertical-align: -2px;
}
