/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

li {
  list-style-type: none;
}



:root { --primary-color: #4EC48F; --secondary-color: #222; --tertiary-color: #fff; }

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--tertiary-color);
  opacity: 1;
  transition: all ease-in-out 0.8s;
  font-size: 16px;
  background-image: url("../img/me-12.png");
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto;
  /* background-blend-mode: multiply; */
  overflow-x: hidden;
}

.magic {
  opacity: 1;
}

p {
  line-height: 28px;
  font-weight: 200;
}


h1, h2, h3, h4 {
  font-weight: 400;
}

h1 {
  font-size: 40px;
  letter-spacing: 1px;
}

h2 {
  font-size: 30px;
}


section h2 {
  font-size: 85px;
  font-weight: 200;
  text-align: left;
  display: inline-block;
}

section {
  /* min-height: 100vh; */
  /* border: solid red 1px; */
  /* background-color: var(--secondary-color); */
  backdrop-filter: blur(20px);
  padding-bottom: 40px;
}

.section-title {
  margin-top: 120px;
  margin-bottom: 60px;
  font-family: 'Cormorant', serif;
  font-size: 96px;
}


.aboutme, .testimonials, .portfolio, .contact {
  padding-bottom: 200px;
  /* padding-top: 200px; */
  min-height: 100vh;
}

.gray-bg {
  background-color: #f3f3f3;
}

.go-down {
  text-align: left;
  margin-top: 50px;
}

.go-down i {
  color: var(--primary-color);
  transition: all 0.5s;
}

.go-down a img:hover {
  transform: scale(.75,.75);
  transition: all 0.5s;
}

.big-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  /* min-height: 100vh; */
}

.wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
}

.shadow {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.expertise .big-wrapper {
  min-height: 100vh;
}

.serif-font {
  font-family: 'Cormorant', 'Serif';
  font-size: 48px;
}

.serif-font-contact {
  font-family: 'Cormorant', 'Serif';
  font-size: 42px;
}

.green {
  color: var(--primary-color);
}


/* -------------------------------------------------------------------------
HEADER
------------------------------------------------------------------------- */

header {
  /* background-image: url("../img/home-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: var(--secondary-color);
  height: 75px;
  width: 100%;
  color: #fff;
  position: fixed;
  z-index: 900;
  transition: all 0.5s;
}

.no-background {
  /* background-image: none; */
  background-color: rgba(1, 1, 1, 0);
}

header .big-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}


nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  list-style-type: none;
  width: 50vw;
}



nav ul li a {
  font-weight: 200;
  text-decoration: none;
  color: #fff;
  margin: 0 20px;
  opacity: 0.3;
  padding-bottom: 10px;
  transition: all 0.1s;
  text-transform: lowercase;
}

nav ul li a:hover {
  opacity: 1;
  border-bottom: solid 1px var(--primary-color);
  transition: all 0.3s ease;
}



nav i.fas {
  display: none;
}

.mobile-nav {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  background: linear-gradient(220deg, rgba(0,0,0,1) 0%, rgba(74,32,105,1) 48%, rgba(0,169,157,1) 100%);
  text-align: center;
  overflow-y: hidden;
  transition: opacity 0.5s;
}

.show {
  display: flex;
  opacity: 1;
}

.hide {
  display: none;
}

.mobile-nav ul {
  width: 90%;
  margin-bottom: 25%;
}

.mobile-nav ul li {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav ul li a {
  font-weight: 100;
  text-decoration: none;
  color: #fff;
  font-size: 21px;
}

.mobile-nav ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav i {
  color: #fff;
  font-size: 24px;
  align-self: flex-end;
  margin-right: 5%;
  margin-top: 7%;
}

.selected {
  opacity: 1;
  border-bottom: solid 1px #ffffff;
}


.mobile-nav-new {
  display: none;
}

.mobile-nav-new ul li a {
  /* display: flex;
  flex-direction: row;
  width: 16px;
  height: 16px;
  background-color: #fff; */
}



/* -------------------------------------------------------------------------
HOME
------------------------------------------------------------------------- */

section.home {
  /* height: 100vh; */
  height: calc(100vh - 100px);
  /* background-color: var(--secondary-color); */
  color: #fff;
  display: flex;
  align-items: center;
  /* background-image: url("../img/home-bg.png"); */
  /* background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  min-height: 800px;
  /* background-image: url("../img/me-12.png");
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto; */
  /* background-blend-mode: multiply; */
  overflow-x: hidden;
}

.home-content {
  margin-top: 120px;
  display: flex;
  flex-direction: row;
}

.home-content .text {
  flex: 3;
}

.home-content .text img {
  margin-top: 40px;
}

.home-content .text img.home-icons-desktop {
  
}

.home-content .text img.home-icons-mobile {
  display: none;
}

/* .home-content .visual {
  flex: 2;
  background-color: var(--tertiary-color);
  min-height: 300px;
  opacity: 0.10;
}

.home-content .visual:hover {
  background-color: var(--primary-color);
  opacity: 1;
} */

.home-content .visual {
  text-align: center;
  flex: 2;
  /* background-color: var(--primary-color); */
  /* min-height: 300px; */
  opacity: 1;
  transition: all ease-out 1s;
}

/* .home-content .visual:hover {
  background-color: var(--secondary-color);
  opacity: 0; */
  /* flex: 4; */
  /* transition: all ease-out 1s;
} */

.home-content h1 {
  font-family: 'Cormorant', serif;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 100;
  line-height: 56px;
}

.home-content h2 {
  font-size: 20px;
  line-height: 32px;
}

.home-content p {
  line-height: 24px;
  margin-bottom: 40px;
  font-size: 17px;
}

.home-image {
  width: 50%;
  margin-top: 50px;
  padding: 0 25px;
}

.home-image figure img {
  max-height: 400px;
  width: auto;
}

.home .home-content a {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 108, 227, 0);
  border: solid 1px #fff;
  padding: 10px 30px;
  transition: all 0.2s;
  display: block;
  width: 80%;
  text-align: center;
}

.home .home-content a:hover {
  color: #662d91;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.9);
}

.home .big-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.home .go-down i {
  color: #fff;
  transition: all 0.5s;
}

.home-icons {
  justify-content: space-between;
  align-items: center;
}

.icons-home-mobile {
  display: none;
}

.home-icons figure img {
  margin-top: 50px;
  width: auto;
}


.me {
  position: fixed;
  right: 0;
  /* top: 60px; */
  mix-blend-mode: multiply;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.me2 {
  position: fixed;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.me img {
  /* mix-blend-mode: multiply; */
  pointer-events: none;
}

/* .contact {
  background-image: url(../img/me-1.jpg);
  background-repeat: no-repeat;
  background-size: initial;
  background-position: 100% 47%;
  background-blend-mode: multiply;
} */

/* -------------------------------------------------------------------------
ABOUT ME
------------------------------------------------------------------------- */


.aboutme article {
  margin: 0 40px 0 0;
  text-align: left;
}

.aboutme article figure {
  margin-bottom: 25px;
}

.aboutme article figure img {
  width: 50%;
}

h3.about-me-feature {
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 25px;
}

.aboutme .wrapper {
  align-items: flex-start;
  justify-content: space-between;
}

.aboutme .wrapper article {
  width: 30%;
}

.aboutme .wrapper article:nth-child(2) {
  margin-top: 75px;
}

.aboutme .wrapper article:nth-child(3) {
  margin-top: 150px;
}

p.quote {
  text-align: left;
  width: 60%;
  font-size: 24px;
  font-weight: 300;
  line-height: 35px;
  font-style: italic;
  margin: 50px 0;
  line-height: 36px;
}


.cv a {
  color: #662d91;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 50px 0 25px 0;
  text-decoration: none;
  border-bottom: solid 2px #662d91;
  padding-bottom: 5px;
  transition: all 0.2s ease-in-out;
}

.cv a i {
  font-size: 21px;
  padding-top: 5px;
  margin-right: 10px;
}

.cv a:hover {
  font-size: 18px;
}



/* new */



.aboutme .wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
}

.aboutme .main-content {
  flex: 4;
  /* padding-right: 64px; */
}

.aboutme .main-content p {
  margin-bottom: 16px;
}

.aboutme .sidebar {
  flex: 4;
}

.aboutme .sidebar li {
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px;
}

.aboutme .sidebar li:hover {
  background-color: #111;
  transition: all ease 1s;
}

.role {
  text-transform: uppercase;
  margin-bottom: 4px;
}

.company {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.date{
  font-size: 12px;
  margin-bottom: 4px;
}


/* -------------------------------------------------------------------------
EXPERTISE
------------------------------------------------------------------------- */

/* .expertise-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.expertise-text {
  max-width: 33%;
}

.expertise-text p{
  margin-bottom: 24px;
}

.expertise-image {
  max-width: 33%;
} */

.expertise .big-wrapper .wrapper .main-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}


.expertise-text p {
  margin-bottom: 24px;
}


.expertise-text, .expertise-image {
  flex: 1;
  /* max-width: 400px; */
}

.expertise-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.expertise .big-wrapper .wrapper ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  overflow-x: scroll;
}



.expertise .big-wrapper .wrapper li {
  min-width: 200px;
  background-color: #333;
  height: 80px;
  padding: 8px;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

.expertise .big-wrapper .wrapper li:last-child {
  min-width: 400px;
  background-color: #333;
  height: 100%;
}

/* -------------------------------------------------------------------------
PORTFOLIO
------------------------------------------------------------------------- */

.portfolio {
  display: flex;
  flex-direction: column;
}


.portfolio article {
  /* max-width: 500px; */
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  min-height: 400px;
  flex: 1 1 calc(50% - 32px);
}

.portfolio .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 64px;
}

.portfolio-item-image {
  /* margin-left: 40px;
  width: 60%; */
  position: relative;
  height: 400px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(220deg, rgba(0,0,0,1) 0%, rgba(74,32,105,1) 48%, rgba(0,169,157,1) 100%); */
  opacity: 1;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  mix-blend-mode: saturation;
}

.overlay figure img {
  width: 50px;
  height: auto;
}

.overlay:hover {
  opacity: 0;
  transition: all 0.5s;
  /* mix-blend-mode: normal; */
}

.portfolio-item-image figure img {
  width: 100%;
}

.portfolio-item-content {
  padding-top: 15px;
  /* width: 40%; */
}

.portfolio-item-content a {
  color: var(--tertiary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.portfolio-item-content a:hover {

}

.portfolio .big-wrapper {
  max-width: 1200px;
}

h3.portfolio-item-title {
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
  /* border-bottom: solid 1px #333; */
  /* padding-bottom: 16px; */
  line-height: 30px;
  padding-left: 8px;
}

p.portfolio-item-description {
  margin-bottom: 25px;
}

.portfolio-item-tags {
  color: #662d91;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}

/* .portfolio-item-tags li {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 0px;
  margin-right: 8px;
  border-radius: 10px;
  margin-top: 5px;
} */

.portfolio-item-tags li {
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  margin-right: 8px;
  border-radius: 32px;
  margin-top: 5px;
}


.portfolio-item-tags li:before {
}

.project-thumbnails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}


a.portfolio-little {
  box-sizing: border-box;
  width: 30%;
  height: auto;
  color: var(--tertiary-color);
  text-align: left;
  text-decoration: none;
  padding: 32px;
  transition: all 0.3s;
  margin-right: 5px;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0);
  border: solid .5px #333;
}

a.portfolio-little:hover {
  background-color: #333
}

.portfolio-little:last-child {
  margin-right: 0;
}

a.portfolio-little:hover h4 i {
  color: #662d91;
}


.portfolio-little h4 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--tertiary-color);
  border-bottom: solid 1px #333;
  padding-bottom: 15px;
  transition: all 0.5s;
}

.portfolio-little h4 i {
  float: right;
}


.portfolio-little p {
  margin-bottom: 10px;
}

.portfolio-item-image.portfolio-kriu  {
  background-image: url("../img/kriu-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.portfolio-item-image.portfolio-idoven  {
  background-image: url("../img/2024/thumb-idoven.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.portfolio-item-image.portfolio-boxrun  {
  background-image: url("../img/boxrun-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.portfolio-item-image.portfolio-simavr  {
  background-image: url("../img/2024/thumb-sima.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.portfolio-item-image.portfolio-holalucas  {
  background-image: url("../img/2024/thumb-lucas.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}







.new-portfolio {
  
}


.items-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 64px;
}

.new-portfolio-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 400px;
}

.single-item-image {
  /* background-image: url("../img/mockup-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  height: 400px;
  overflow: hidden;
  background-image: url(../img/idoven-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.single-item-image img {
  height: 100%;
}

.item-info h2 {
  font-size: 24px;
  margin: 16px 0;
}

.item-info h3 {
  text-transform: uppercase;
  font-size: 16px;
}

.single-item-text {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

.cta {
  margin-bottom: 8px;
}

.cta a {
  text-decoration: none;
  border: var(--tertiary-color) 1px solid;
  color: var(--tertiary-color);
  text-transform: uppercase;
  padding: 8px 16px;
  font-size: 12px;
}


.image-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  /* flex: 1 3; */
}



/* NEW PORTFOLIO OCT */

.portfolio-alt .big-wrapper .wrapper {
  display: flex;
  gap: 32px;
  margin: 24px 32px 64px 32px;
  /* overflow-x: scroll; */
  min-height: 600px;
  flex-wrap: wrap;
}

/* .portfolio-alt .big-wrapper .wrapper a:last-child {
  max-width: 33%;
} */

.portfolio-alt .big-wrapper .wrapper a {
  border: solid 1px var(--secondary-color);
  text-decoration: none;
  border-radius: 4px;
  min-width: 350px;
  min-height: 474px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  flex: 1;
  transition: all ease-in-out 0.5s;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: initial;
  /* flex-shrink: initial; */
  flex-basis: min-content;
}

.portfolio-alt .big-wrapper .wrapper a:hover {
  border: solid 1px #fff;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-alt .big-wrapper .wrapper .big-card {
  flex: 2.05;
}

.portfolio-alt .big-wrapper .wrapper .reverse-card {
  flex-direction: column-reverse;
}

.card-image {
  min-height: 300px;
  height: 300px;
  background-color: #1d1d1d;
  border-radius: 4px 4px 0px 0px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  transition: all ease-out 0.8s;
}

.card-image img:hover {
  transform: scale(1.25,1.25);
  transition: all ease-out 0.8s;
}

.card-text {
  padding: 16px;
}

/* .card-text * {pointer-events: none;} */

.card-title, .card-description, .new-chips {
  color: var(--tertiary-color);
}

.card-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-description {
  margin-bottom: 12px;
  min-height: 48px;;
  font-size: 14px;
}

.new-chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 8px;
}

.new-chips li {
  background-color: #333;
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 8px;
  margin-right: 4px;
}


/* .big-wrapper-portfolio {
  max-width: none;
  margin-right: 0;
  margin-left: calc((100vw - 1200px) / 2);
} */


/* -------------------------------------------------------------------------
CONTACT
------------------------------------------------------------------------- */

.contact h1 {
  font-family: 'Cormorant', serif;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 100;
  line-height: 56px;
}

.contact h2 {
  font-size: 20px;
  line-height: 32px;
}


section.contact {
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  backdrop-filter: none;
}

.contact {
  min-height: 80vh;
}

.contact p {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 30px;
}

.contact-btn-container {
  margin-top: 64px;
}


.contact a {
  border: solid 1px var(--tertiary-color);
  color: var(--tertiary-color);
  text-decoration: none;
  padding: 16px 24px;
  font-size: 18px;
  transition: all ease-out 0.3s;

}

.contact a:hover {
  /* background-color: rgba(256, 256, 256, 0.2) */
  border: solid 1px var(--primary-color);
  background-color: var(--primary-color);
}


.contact .wrapper {
  display: flex;
  gap: 64px;
}

.contact-content {
  flex: 4;
}

.contact-image {
  flex: 3;
  /* background-color: var(--tertiary-color); */
  opacity: 0.1;
  min-height: 300px;
}

/* .contact-image:hover {
  flex: 6;
  background-color: var(--primary-color);
  opacity: 1;
  transition: all ease-out 0.3s;
} */

.contact-image img{
  width: 85%;
  margin: -200px 20% 0 20%;
}

.highlighted {
  background-color: #333;
  /* color: #4EC48F; */
  font-weight: 300;
}

.highlighted-text {
  background-color: #333;
  /* color: #4EC48F; */
  font-weight: 500;
}

.highlighted-contact {
  font-size: 44px;
}


/* -------------------------------------------------------------------------
FOOTER
------------------------------------------------------------------------- */

footer {
  /* background-image: url("../img/home-bg.png");
  background-attachment: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff; */
  height: 100px;
  background-color: #333;
}

footer p {
  font-size: 14px;
}

footer i {
  color: #fff;
  font-size: 20px;
}

footer .wrapper {
  height: 100px;
  justify-content: space-between;
}

footer ul li {
  display: inline-block;
  margin-left: 25px;
}

footer a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* -------------------------------------------------------------------------
PROJECTS
------------------------------------------------------------------------- */


.project-subheader {
  /* background-color: var(--secondary-color); */
  height: auto;
  backdrop-filter: blur(20px);
}

.project-subheader .portfolio-item-tags {
  color: #fff;
}

.big-wrapper-project {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 75px;
  color: #fff;
}

.big-wrapper-project h2 {
  padding-top: 25px;
  margin-bottom: 25px;
  font-weight: 100;
}

.big-wrapper-project p {
  opacity: 0.5;
}

.project {
  padding-top: 64px;
}

.project-nav {
  margin-top: 25px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.project-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  opacity: 0.5;
  transition: all 0.2s;
}

.project-nav a:hover {
  opacity: 1;
}


.project-nav i {
  margin-right: 10px;
}

.project-image-logos {
  flex: 3;
  /* width: 75%; */
  background-color: rgba(255, 255, 255, 0.1);
  /* height: 500px; */
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 32px;

}

.project-image-new {
  flex: 3;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 32px;
  min-width: 40%;
  flex-direction: row;
  flex-wrap: wrap;
}

.project-image-row {
  display: flex;
} 

.project-image-new img {
  width: 100%;
  height: auto;
}

.project-image-logos figure img {
  width: 100%;
  max-height: 400px;
}

.project-image-logos figure {
  /* margin-bottom: 50px; */
}

.project-image-full {
  width: 100%;
}

.project-image-full figure img {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.project-image-logos figure img.shadow {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}





.project-image {
  /* width: 75%; */
  flex: 3;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 32px;
  flex-direction: column;

}

.project-image figure img {
  width: 100%;
  /* max-height: 400px; */
}

.project-image figure {
}


.project-image figure img.shadow {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

figcaption {
  padding-top: 10px;
  font-size: 10px;
  text-align: center;
}

.project-text {
  /* width: 25%; */
  flex: 1;
  /* padding-right: 32px; */
}

.project .big-wrapper .wrapper {
  align-items: flex-start;
  margin-bottom: 120px;
}

.project-title {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: bold;
}

.project-btn {
  /* background: linear-gradient(220deg, rgba(0,0,0,0) 0%, rgba(74,32,105,0) 48%, rgba(0,169,157,0) 100%); */
  display: block;
  color: var(--tertiary-color);
  border: solid 1px var(--tertiary-color);
  text-align: center;
  text-decoration: none;
  padding: 15px;
  margin-top: 25px;
  transition: all 0.3s;
}

.project-btn:hover {
  /* background: linear-gradient(220deg, rgba(0,0,0,1) 0%, rgba(74,32,105,1) 48%, rgba(0,169,157,1) 100%); */
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}


/* .project-subheader {
  background-image: url("../img/home-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */







/* -------------------------------------------------------------------------
MEDIA QUERIES
------------------------------------------------------------------------- */

@media screen and (max-width: 1200px) {
  .big-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
  .big-wrapper-project {
    max-width: 1000px;
  }

  .portfolio .big-wrapper {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1000px) {
  .big-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
  .portfolio .big-wrapper {
    max-width: 800px;
  }
  .portfolio-little {
    width: 100px;
    height: 100px;
    padding: 15px 10px 10px 10px;
    margin-right: 0;
  }
  .portfolio-little h4 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .portfolio-little p {
    font-size: 16px;
  }
  .overlay {
    height: 100%;
  }
  .portfolio-item-content {
    padding-top: 0;
  }
  p.portfolio-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  .portfolio-image img {
    height: 340px;
    object-fit: cover;
  }
  a.portfolio-little {
    width: 45%;
  }
  .big-wrapper-project {
    max-width: 700px;
  }
  .contact-content {
    width: 100%;
  }

  .contact-image {
    width: 100%;
  }
}


@media screen and (max-width: 481px) {

  body {
    background-color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--tertiary-color);
    opacity: 1;
    transition: all ease-in-out 0.8s;
    font-size: 16px;
    background-image: url("../img/me-12.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    /* background-blend-mode: multiply; */
  }

  .big-wrapper {
    max-width: 90%;
    margin: 0 auto;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section {
    padding-bottom: 50px;
    /* min-height: 100vh; */
  }

  .section-title {
    margin-top: 100px;
    margin-bottom: 24px;
    font-size: 64px;
  }

  section h2 {
    font-size: 60px;
  }

  .desktop-nav-new ul {
    display: none;
  }
  nav i.fas {
    display: inline;
  }
  .home-content {
    width: auto;
    margin-top: -50px;
    flex-direction: column;
  }
  .home-content h1 {
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 100;
    line-height: 48px;
  }
  .home-image {
    width: auto;
    margin-top: 50px;
  }
  .home-image figure img {
    max-height: 300px;
    width: 100%;
  }
  section.home {
    padding-top: 100px;
  }
  .home-icons {
    flex-direction: column-reverse;
    margin-top: 32px;
    align-items: flex-start;
  }
  .home-icons figure img {
    width: 100%;
    margin-top: 32px;
    display: none;
  }

  img.icons-home-mobile {
    display: flex!important;
  }

  .aboutme .wrapper {
    flex-flow: column;
    align-items: flex-start;
  }

  .aboutme .wrapper article {
    width: 90%;
    margin: 0 0 50px 0px !important;
  }
  p.quote {
    width: 100%;
  }
  .portfolio .big-wrapper {
    max-width: 90%;
  }
  .portfolio article {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0px;
    width: 100%;
  }
  .portfolio-item-image, .portfolio-item-content {
    width: auto;
  }
  .portfolio-item-content {
    margin-left: 0;
    margin-top: 25px;
  }
  .portfolio-item-image {
    margin-top: 25px;
    margin-left: 0px;
    height: 400px;
  }
  .project-thumbnails {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  a.portfolio-little {
    width: 100%;
    /* height: 75px; */
    padding: 16px;
    /* margin-bottom: 50px; */
  }
  a.portfolio-little:hover {
    border: solid 0px #333;
  }

  .portfolio-little h4 {
    font-size: 24px;
    padding-bottom: 15px;
  }

  .big-wrapper-project {
    max-width: 90%;
  }
  .project .big-wrapper .wrapper {
    flex-direction: column;
  }
  p.portfolio-item-tags {
    margin-bottom: 25px;
  }
  .project {
    padding-top: 25px;
  }
  .project-nav {
    align-items: flex-start;
  }
  .project-image-logos {
    flex-direction: column;
    width: fit-content;
  }
  /* .project-image {
    flex-direction: column;
    width: fit-content;
  } */
  .project-text {
    width: 100%;
    padding-left: 0;
    margin-bottom: 25px;
    padding-right: 0px;
  }
  .contact-content {
    width: 100%;
  }
  .contact-image {
    width: 100%;
    display: none;
  }
  .contact-image img{
    width: 100%;
    margin: 0 auto;
  }
  .contact a {
    width: auto;
  }
  footer .wrapper {
    justify-content: space-around;
  }
  footer ul li {
    margin-left: 25px;
    margin-right: 25px;
  }
  .picos-abajo {
    display: none;
  }

  .picos-arriba {
    display: none;
  }
  .parallax-wrapper .wrapper {
    display: none;
  }

  /* new */

  .aboutme {
    overflow-x: hidden;
  }

  .aboutme .wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .aboutme .main-content {
    flex: 3;
    padding-right: 0px;
  }

  .aboutme .sidebar {
    flex: 1;
    overflow-x: scroll;
    width: 100%;
    margin-top: 32px;
  }

  .aboutme .sidebar ul {
    display: flex;
    flex-direction: row;
    overflow-x: visible;
  }

  .aboutme .sidebar li {
    min-width: 150px;
  }

  .me {
    right: -480px;
  }

  .contact h1{
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 100;
    line-height: 40px;
  }

  .home-content .text {
    flex: 5;
  }
  
  .home-content .visual {
    opacity: 1;
    flex: 1;
    margin-top: 40px;
    text-align: left;
  }

  .serif-font {
    font-size: 42px;
  }

  .image-row {
    flex-direction: column;
  }

  .expertise .big-wrapper .wrapper .main-content {
    flex-direction: column-reverse;
  }

  .expertise-image img {
    max-width: 90vw;
  }

  footer {
    padding: 24px 0;
  }

  .desktop-nav-new {
    display: none;
  }

  .mobile-nav-new {
    display: flex;
    gap: 24px;
  }

  .mobile-nav-new a {
    opacity: 0.8;
  }

  .mobile-nav-new img {
    width: 12px;
  }

  .wrapper.project-nav{
    flex-direction: row;
  }

  .portfolio-alt .big-wrapper .wrapper {
    margin: 24px 0px 64px 0px;
  }

  .home-content .text img.home-icons-desktop {
    display: none;
  }
  
  .home-content .text img.home-icons-mobile {
    display:block;
  }


}
