/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');



/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--main-font);
  font-size: var(--normale-font-grootte);
}

body {
  margin: var(--header-hoogte) 0 0 0;
  background-color: var(--body-kleur);
  color: var(--text-kleur);
  transition: .4s;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1,
h2,
h3 {
  color: var(--zwarte-kleur);
  font-weight: var(--font-semi-bold);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none;
}

p {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  height: auto;
}

underline {
  border-bottom: 4px solid var(--secundaire-kleur);
}

bold {
  color: var(--secundaire-kleur)
}


@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes headerBackground {
  0% {
    background-image: url("../../img/home/header/header.png");
  }

  20% {
    background-image: url("../../img/home/header/header.png");
  }

  40% {
    background-image: url("../../img/home/header/header1.png");
  }

  60% {
    background-image: url("../../img/home/header/header1.png");
  }

  80% {
    background-image: url("../../img/home/header/header2.png");
  }

  100% {
    background-image: url("../../img/home/header/header2.png");
  }
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 5.5rem 0 1rem;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
  /*For animation*/
}

/*=============== HEADER ===============*/
.header {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== HOME ===============*/
.home {
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -100px;
  background-image: url("../../img/home/header/header.png");
  animation: headerBckground 45s infinite alternate;
  padding: 7rem 0 0rem;
}

.home__container {
  position: relative;
  row-gap: 2rem;
}

.home__img {
  height: auto;
  max-width: 100%;
  justify-self: center;
  animation: float 4s ease-in-out infinite;
  transform: translatey(0px);
}

.home__title {
  font-family: var(--main-font);
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
  width: 500px;
  line-height: 140%;
  margin-bottom: var(--mb-1);
}

/*=============== INFO ===============*/

.info__container {
  row-gap: 2rem;
  margin-bottom: 2.5rem;
}

.info__img {
  width: 280px;
  justify-self: left;
}

.info__title {
  color: var(--main-kleur);
  font-family: var(--main-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.info__description {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  font-family: var(--secundaire-font);
}

/*============== projecten ==============*/

.projecten {
  background-color: var(--section-kleur);
}

.projecten__data {
  margin-top: -100px;
  padding: 5.5rem 0 5rem;
}

/*=============== option TABS===============*/

.option__content {
  padding: .375rem;
  border-radius: 1.5rem;
  display: flex;
  justify-content: space-between;
  column-gap: .5rem;
  margin: auto;
  width: 100%;
  padding: 10px;
}

.option__button {
  text-transform: uppercase;
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem;
  color: var(--zwarte-kleur);
  font-size: .813rem;
  font-family: var(--secundaire-font);
  font-weight: 600;
  border-radius: 1.5rem;
  cursor: pointer;
  background-color: transparent;
  transition: .3s;
}

.option__button:hover {
  background-color: var(--container-kleur);
  color: var(--main-kleur);
}

/* Hide and show projecten & skills */
.option [data-content] {
  display: none;
}

.option__active[data-content] {
  display: grid;
}

/* Activate button filter */
.filter-tab-active {
  background-color: var(--secundaire-kleur);
  color: var(--container-kleur);
}

/* Activate button filter */
.filter-tab-active:hover {
  background-color: var(--secundaire-donker-kleur);
  color: var(--container-kleur);
}


/*=============== projecten ===============*/

.projecten__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.projecten__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projecten__modal {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: linear-gradient(180deg, #ffbb0038, #ffbb009a);
  display: grid;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
  transition: .4s;
}

.projecten__title {
  color: var(--container-kleur);
}

.projecten__title {
  font-size: var(--h3-font-grootte);
}

.projecten__button {
  color: var(--container-kleur);
  transition: .3s;
}

.projecten__button:hover {
  color: #cecece;
  transition: .3s;
}

.projecten__card:hover .projecten__modal {
  bottom: 0;
}

/* Card styles */

.blog {
  margin-top: -50px;
  margin-bottom: 100px;
}

.blog .card {
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  background-color: #F2F8FE;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.blog .card-img {
  position: relative;
  width: 50%;
  height: 0;
  padding-bottom: 29.5%;
}

.blog .card-img img {
  border-radius: 0px 15px 0px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog .card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
  color: #fff;
  z-index: 1;
  transition: .3s;
  padding: 5px 10px 6px 10px;
  background-color: #ffbb00;
  color: #fff;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
}

.blog .card-category:hover {
  background-color: #f8b600;
  transition: .3s;
}

.blog .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  width: 50%;
}

.blog .card-title {
  color: #5865f2;
  font-family: 'Secular One', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0;
}

.blog .card-date {
  font-size: .90rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.blog .card-description {
  font-size: 16px;
  color: #666;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 767px) {

  .blog .card {
    flex-direction: column;
    height: auto;
    padding-bottom: 0;
  }

  .blog .card-img {
    height: 300px;
    width: 100%;
  }

  .blog .card-content {
    width: 100%;
  }
}

.reviews__container {
  background-color: #e8edf3;
  padding: 5.5rem 0 5rem;
}

#reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.review-box-container {
  display: flex;
  justify-content: center;
  flex: 50%;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.review-box {
  transition: .3s;
  width: 500px;
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  border-radius: 25px;
  cursor: pointer;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile {
  display: flex;
  align-items: center;
}

.name-user {
  display: flex;
  flex-direction: column;
}

.name-user strong {
  color: var(--main-kleur);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.name-user span {
  font-family: var(--secundaire-font);
  color: #979797;
  font-size: 0.8rem;
}

.review {
  color: #ffbb00;
}

.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.client-comment p {
  font-family: var(--secundaire-font);
}

.review-box:hover {
  transform: scale(1.025);
  transition: .3s;
}

/*=============== CONTACT ===============*/

.contact__container {
  row-gap: 3.5rem;
}

.contact__data {
  display: grid;
  row-gap: 1rem;
}

.contact__description {
  font-family: var(--secundaire-font);
  font-size: var(--normale-font-grootte);
  font-weight: var(--font-medium);
  color: var(--text-kleur);
  margin-bottom: var(--mb-0-5);
  transition: .3s;
}


.contact__description:hover {
  color: var(--main-kleur);
  transition: .3s;
}

.contact__subtitle {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: 20px;
  color: var(--main-kleur);
  font-weight: 700;
}

.contact__icon {
  color: var(--secundaire-kleur);
  font-size: 1.25rem;
}

.contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content {
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-kleur-licht);
  margin-right: 10px;
}

.contact__input {
  font-family: var(--secundaire-font);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;
  color: var(--text-kleur);
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label {
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--kleinere-font-grootte);
  color: var(--text-kleur-licht);
  transition: .3s;
}

.contact__area {
  height: 7rem;
}

.contact__area textarea {
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus+.contact__label {
  top: -.75rem;
  left: 0;
  font-size: var(--kleinste-font-grootte);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
  top: -.75rem;
  font-size: var(--kleinste-font-grootte);
  z-index: 10;
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img {
    width: 300px;
  }
}

@media screen and (max-width: 375px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
}

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

  .home__title {
    margin-top: -40px;
    width: auto;
    font-size: 35px;
  }

  .button__header {
    margin-bottom: 40px;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .projecten__content {
    grid-template-columns: 332px;
    justify-content: center;
    gap: 2rem 3rem;
  }

  .option__content {
    width: 332px;
    margin: 3rem auto;
  }

}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .home__container,
  .info__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home {
    padding: 10rem 0 5rem;
  }

  .home__container {
    align-items: center;
  }

  .home__img {
    width: 280px;
    order: 1;
  }

  .home__social {
    top: 30%;
  }
}

@media screen and (min-width: 776px) {

  .projecten__content {
    grid-template-columns: repeat(2, 332px);
  }

  .contact__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 8rem 0 1rem;
  }

  .home {
    padding: 13rem 0 5rem;
  }

  .home__img {
    width: 350px;
  }

  .home__description {
    padding-right: 7rem;
  }

  .info__img {
    width: 380px;
  }


  .projecten__content {
    gap: 2rem 3rem;
  }

  .projecten__modal {
    padding: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (min-width: 1200px) {

  .info__container {
    column-gap: 7rem;
  }

  .scrollUp {
    right: 3rem;
  }
}