* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

/*Temes*/
:root {
  --color-primary: #191d2b;
  --color-secondary: #27AE60;
  --color-white: #FFFFFF;
  --color-black: #000;
  --color-grey0: #f8f8f8;
  --color-grey-1: #dbe1e8;
  --color-grey-2: #b2becd;
  --color-grey-3: #6c7983;
  --color-grey-4: #454e56;
  --color-grey-5: #2a2e35;
  --color-grey-6: #12181b;
  --br-sm-2: 14px;
  --box-shadow-1: 0 3px 15px rgba(0,0,0,.3);
}

body {
  background-color: var(--color-primary);
  font-family: "Poppins", sans-serif, sunny;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: all 0.4s ease;
}

section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 18rem;
}

/*Portfolio-altres*/
.gifs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
  background-color: var(--color-primary);
}
.gifs .gifs-item {
  position: relative;
  border-radius: 15px;
}
.gifs .gifs-item h2 {
  font-size: 4rem;
  font-family: sunny;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  justify-content: center;
  text-transform: uppercase;
}
.gifs .gifs-item img {
  width: 90%;
  height: 90% px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.gifs .gifs-item .hover-items {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.gifs .gifs-item .hover-items h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.gifs .gifs-item .hover-items .icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gifs .gifs-item .hover-items .icons .icon {
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.gifs .gifs-item .hover-items .icons .icon i {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 1rem;
}
.gifs .gifs-item .hover-items .icons .icon:hover {
  background-color: var(--color-white);
}
.gifs .gifs-item .hover-items .icons .icon:hover i {
  color: var(--color-primary);
}

.gifs-item:hover .hover-items {
  opacity: 0.8;
  transform: scale(1);
}

/*Independed components*/
.main-title {
  text-align: center;
  top: 5%;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
}
.main-title h2 span {
  color: var(--color-secondary);
}

.found-title {
  text-align: center;
  top: 5%;
}
.found-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
}
.found-title h2 span {
  color: var(--color-secondary);
}

header {
  min-height: 100%;
  color: var(--color-white);
  overflow: hidden;
}

/*Header-content*/
.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  min-height: 100vh;
  top: 15%;
}
.header-content .left-header {
  display: flex;
  align-items: center;
  position: relative;
}
.header-content .left-header .image {
  border-radius: var(--br-sm-2);
  height: 50%;
  width: 100%;
  margin-left: 4rem;
  transition: all 0.4s ease-in-out;
}
.header-content .left-header .image img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
}
.header-content .left-header .image img:hover {
  filter: grayscale(0);
}
.header-content .right-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-right: 18rem;
}
.header-content .right-header .name {
  font-size: 3rem;
}
.header-content .right-header .name span {
  color: var(--color-secondary);
}
.header-content .right-header p {
  margin: 1.5rem 0;
  line-height: 2rem;
}

@media screen and (max-width: 970px) {
  header {
    padding: 0 !important;
  }
  .header-content {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
  }
  .left-header .image {
    height: 100%;
  }
  .right-header {
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }
  .header-content .left-header .image {
    grid-row: 1;
    margin: 0 auto;
    width: 90%;
  }
  .section {
    padding: 2rem 2.5rem !important;
  }
  .gifs {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
    margin-top: 1rem;
  }
  .main-title h2 {
    top: 5%;
    font-size: 2.5rem;
  }
  .main-title h2 .bg-text {
    font-size: 3rem;
  }
  .found-title h2 {
    top: 5%;
    font-size: 2.5rem;
  }
  .found-title h2 .bg-text {
    font-size: 3rem;
  }
}
@media screen and (min-width: 971px) and (max-width: 1070px) {
  .main-title h2 {
    top: 5%;
    font-size: 3rem;
  }
  .main-title h2 .bg-text {
    font-size: 4rem;
  }
  .found-title h2 {
    top: 50%;
    font-size: 3rem;
  }
  .found-title h2 .bg-text {
    font-size: 3.5rem;
  }
  header {
    padding: 0 !important;
  }
  .header-content {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 6rem;
  }
  .left-header .image {
    height: 100%;
  }
  .right-header {
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }
  .header-content .left-header .image {
    grid-row: 1;
    margin: 0 auto;
    width: 90%;
  }
  .section {
    padding: 2rem 2.5rem !important;
  }
}
@media screen and (min-width: 1071px) and (max-width: 1250px) {
  .main-title h2 {
    top: 5%;
    font-size: 4rem;
  }
  .main-title h2 .bg-text {
    font-size: 5rem;
  }
  .found-title h2 {
    top: 5%;
    font-size: 4rem;
  }
  .found-title h2 .bg-text {
    font-size: 4.5rem;
  }
  .gifs {
    grid-template-columns: repeat(2, 1fr);
  }
  header {
    padding: 0 !important;
  }
  .header-content {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 6rem;
  }
  .left-header .image {
    height: 100%;
  }
  .right-header {
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }
  .header-content .left-header .image {
    grid-row: 1;
    margin: 0 auto;
    width: 90%;
  }
  .section {
    padding: 2rem 2.5rem !important;
  }
}
@media screen and (min-width: 1251px) and (max-width: 1920px) {
  .section {
    padding: 7rem 11rem;
  }
  .main-title h2 {
    top: 5%;
    font-size: 4.5rem;
  }
  .main-title h2 .bg-text {
    font-size: 5.5rem;
  }
  .found-title h2 {
    top: 5%;
    font-size: 4rem;
  }
  .found-title h2 .bg-text {
    font-size: 5rem;
  }
  header {
    padding: 0 !important;
  }
  .header-content {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 6rem;
  }
  .left-header .image {
    height: 100%;
  }
  .right-header {
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }
  .header-content .left-header .image {
    grid-row: 1;
    margin: 0 auto;
    width: 90%;
  }
  .section {
    padding: 2rem 2.5rem !important;
  }
}/*# sourceMappingURL=styles.css.map */