/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  --dark-color: hsl(240, 3.6%, 16.3%);
  --secondary-color: hsl(0, 100%, 98%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --title-font-size: 2.8rem;
  --large-font-size: 1.8rem;
  --normal-font-size: 1.1rem;
  --small-font-size: .9rem;
  --smaller-font-size: .85rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  --d: 400ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);

}
@media screen and (max-width: 1118px) {
  :root {
    --title-font-size: 2.4rem;
    --large-font-size: 1.4rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.95rem;
    --smaller-font-size: 0.85rem;
  }
}

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

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== HERO ===============*/

.hero__container {
    width: 100%;
    height: 50vh;
    background-image: url(https://images.unsplash.com/photo-1616432043562-3671ea2e5242?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: 55%;
}

.hero__content {
    text-align: center;
}

.hero__title {
    display: flex;
    font-size: var(--title-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--body-color);
    margin-bottom: 0rem;
}

/*=============== WHO ===============*/

.who__container {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--body-color);

    @media(max-width: 1118px){
        flex-direction: column;
    }
}

.who__content {
    width: 70%;
    text-align: left;
    padding: 2rem;

    @media(max-width: 1118px){
        text-align: center;
    }
}

.who__title {
    font-size: var(--title-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 1rem;
}

.who__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: 1rem;


    @media(max-width: 1118px){
        font-size: var(--small-font-size);
    }

}

.who__img {
    width: 30%;
    height: 100%;
    padding: 2rem;

    @media(max-width: 1118px){
        width: 60%;
    }
}

.who__image {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.333);
}

.who__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4%;
}

.body__button {
font-size: var(--normal-font-size);
}