/* xs */
/* @media screen and (min-width: 475px) {

} */

/* sm */
/* @media screen and (min-width: 640px) {

} */

/* md */
/* @media screen and (min-width: 768px) {

} */

/* lg */
/* @media screen and (min-width: 1024px) {

} */

/* xl */
/* @media screen and (min-width: 1280px) {

} */

/* 2xl */
/* @media screen and (min-width: 1536px) {

} */


/* Containers */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}


/* xs */
@media screen and (min-width: 475px) {
  .container {
    max-width: 475px;
  }
}

/* sm */
@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

/* md */
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

/* lg */
@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .section {
    margin-top: 5rem;
  }
}

/* xl */
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* 2xl */
@media screen and (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}



/* Header */

.nav {
  display: flex;
}

.nav__logo {
  height: 10rem;
}


/* xs */
@media screen and (min-width: 475px) {
  .nav__logo {
    height: 11rem;
  }
}

/* sm */
@media screen and (min-width: 640px) {
  .nav__logo {
    height: 12rem;
  }
}

/* md */
@media screen and (min-width: 768px) {
  .nav__logo {
    height: 14rem;
  }
}

/* lg */
/* @media screen and (min-width: 1024px) {

} */

/* xl */
/* @media screen and (min-width: 1280px) {

} */

/* 2xl */
/* @media screen and (min-width: 1536px) {

} */



/* About Section */

.about {
  border-radius: 10rem 0 10rem 0;
  color: var(--color-light);
  background: var(--color-primary);
  margin-top: 3rem;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__header {
  font-size: var(--size-6xl);
  margin-top: 7rem;
}

.about__media {
  display: grid;
  grid-template-columns: repeat(1, auto);
  grid-template-rows: repeat(2, auto);
  gap: 3rem;
  margin-top: 4.5rem;
  margin-bottom: 6rem;
}

.about__holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about__portrait {
  background-color: white;
  height: 200px;
  width: 200px;
  border-radius: 9999px;
}

.about__caption {
  font-family: 'Roboto', sans-serif;
  font-size: var(--size-4xl);
  margin-top: 1.5rem;
}

.about__text {
  font-size: var(--size-xl);
  padding: 0 1rem;
}


/* xs */
@media screen and (min-width: 475px) {
  .about__header {
    font-size: var(--size-7xl);
  }

  .about__portrait {
    height: 250px;
    width: 250px;
  }
  
  .about__caption {
    font-size: var(--size-5xl);
  }
  
  .about__text {
    font-size: var(--size-2xl);
  }
}

/* sm */
@media screen and (min-width: 640px) {
  .about__header {
    font-size: var(--size-8xl);
  }

  .about__portrait {
    height: 300px;
    width: 300px;
  }
  
  .about__caption {
    font-size: var(--size-6xl);
  }
  
  .about__text {
    font-size: var(--size-3xl);
  }
}

/* md */
@media screen and (min-width: 768px) {
  .about__media {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(1, auto);
    gap: 5rem;
  }

  /* Grid Change */

  .about__header {
    font-size: var(--size-8xl);
  }

  /* .about__portrait {
    height: 300px;
    width: 300px;
  } */
  
  .about__caption {
    font-size: var(--size-6xl);
  }
  
  .about__text {
    font-size: var(--size-3xl);
  }
}

/* lg */
@media screen and (min-width: 1024px) {
  .about__media {
    gap: 8rem;
  }

  .about__header {
    font-size: var(--size-9xl);
  }

  .about__portrait {
    height: 350px;
    width: 350px;
  }
  
  .about__caption {
    font-size: var(--size-7xl);
  }
  
  .about__text {
    font-size: var(--size-4xl);
  }
}

/* xl */
@media screen and (min-width: 1280px) {
  .about__media {
    gap: 15rem;
  }

  .about__portrait {
    height: 400px;
    width: 400px;
  }
}

/* 2xl */
@media screen and (min-width: 1536px) {
  .about__media {
    gap: 20rem;
  }

  .about__portrait {
    height: 500px;
    width: 500px;
  }
}



/* Contact Section */

.contact {
  display: grid;
  grid-template-columns: repeat(1, auto);
  grid-template-rows: repeat(2, auto);
  margin-top: 7rem;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.contact__header {
  font-size: var(--size-6xl);
  font-weight: 700;
}

.contact__holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__button {
  font-family: 'Roboto', sans-serif;
  font-size: var(--size-4xl);
  font-weight: 700;
  padding: 1.5rem 6rem;
  border: 2px solid var(--color-dark);
  border-radius: 9999px;
  margin-top: 4.5rem;
  transition: all 0.2s;
}

.contact__button:hover {
  color: var(--color-light);
  background: var(--color-dark);
}

.icon__holder {
  display: flex;
}

.contact__icon {
  height: 50px;
  width: 50px;
}

#fb {
  margin-right: 5rem;
}

.contact__email {
  font-size: var(--size-3xl);
  font-weight: 700;
  margin-top: 3rem;
}


/* xs */
@media screen and (min-width: 475px) {
  .contact__header {
    font-size: var(--size-7xl);
  }
  
  .contact__button {
    font-size: var(--size-5xl);
  }

  .contact__icon {
    height: 65px;
    width: 65px;
  }

  .contact__email {
    font-size: var(--size-4xl);
  }
}

/* sm */
@media screen and (min-width: 640px) {
  .contact__header {
    font-size: var(--size-8xl);
  }
  
  .contact__button {
    font-size: var(--size-6xl);
  }

  .contact__icon {
    height: 75px;
    width: 75px;
  }

  .contact__email {
    font-size: var(--size-5xl);
  }
}

/* md */
@media screen and (min-width: 768px) {
  .contact {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(1, auto);
    gap: 10rem;
  }

  /* Grid Change */

  .contact__button {
    font-size: var(--size-5xl);
  }

  .contact__email {
    font-size: var(--size-4xl);
  }
}

/* lg */
@media screen and (min-width: 1024px) {
  .contact__button {
    font-size: var(--size-6xl);
  }

  .contact__email {
    font-size: var(--size-5xl);
  }
}

/* xl */
/* @media screen and (min-width: 1280px) {

} */

/* 2xl */
/* @media screen and (min-width: 1536px) {

} */



/* Footer */

.footer {
  color: white;
  background: #232323;
  margin-top: 6rem;
  padding: 1rem;
}

.footer__title {
  font-size: var(--size-xl);
  padding-top: 3rem;
}


/* xs */
@media screen and (min-width: 475px) {
  .footer__title {
    font-size: var(--size-2xl);
  }
}

/* sm */
@media screen and (min-width: 640px) {
  .footer__title {
    font-size: var(--size-3xl);
  }
}

/* md */
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: var(--size-4xl);
  }
}

/* lg */
@media screen and (min-width: 1024px) {
  .footer__title {
    font-size: var(--size-3xl);
  }
}

/* xl */
/* @media screen and (min-width: 1280px) {

} */

/* 2xl */
/* @media screen and (min-width: 1536px) {

} */