/* profile */
.profile__row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .profile__column-img  {
    width: 35%;
    border: 2px solid #dbdbdb;
    padding: 1.5em;
    border-radius: 200px;
    position: relative;
  }
  .profile__column-img::before{
    position: absolute;
    content: "";
    background-image: url(/img/about-me-bg.png);
    background-repeat: no-repeat;
    right: 50px;
    top: -100px;
    height: 100% ;
    width: 100%;
  }
  .profile__column-img--mobile{
    display: none;
  }
  .profile__column-img img{
    border-radius: 200px;
    object-fit: cover;
  }
  .profile__column-left, .profile__column-right{
    width: 20%;
  }
  .profile__column-right{
    text-align: right;
  }
  .profile__tag{
       padding: .5em 1em;
       background-color: var(--clr-light-gray);
       border-radius: 100px;
       font-size: .8rem;
       text-transform: uppercase;
  
  }
  .profile__item{
    margin-bottom: 3em;
  }
  .profile__detail, .profile__detail-bold{
    margin-top: 1em;
  }
  .profile__detail{
    font-size: 1.2rem;
  }
  .profile__detail-bold{
    /* text-align: right; */
    font-weight: 700;
    font-size: 2.2rem;
  }


  /* BRANDS */

.brand{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
margin: 6rem 0;
gap: 2em;

}
.brand__item{
  width: 20%;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand__img{
  opacity: .5;
  transition: all 1.2s ease;
}
.brand__img:hover{
  opacity: 1;
  cursor: pointer;
}

/** skill sets**/

.skill__list{
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(min(100%, 150px),2fr));
  width: 100%;
}
.skill__item{
  width: 150px;
  height: 200px;
  background-color: var(--clr-light-gray);
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  
}
.skill__icon{
  opacity: 100%;
  transition: all 2.5s ease;
  filter: grayscale(100%);
}
.skill__icon:hover{
  filter: grayscale(0%);
  animation: bounce 1.1s ease-out 0s;
  cursor: pointer;
}
.skill__icon:hover{
  opacity: 1;
}

@keyframes bounce{
  0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform:     translateY(-30px);
		transform:         translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform:     translateY(-15px);
		transform:         translateY(-15px)
	}
}

/* EXPERIENCE & EDUCATION */
.timeline{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:2em;
}

.timeline__year{
  color: var(--clr-dark-gray);
  margin-bottom: 2.5em;
}

.timeline__item{
  margin-bottom: 2em;
}
.timeline__title{
  font-size: var(--fs-600);

}
.timeline__description{
  color: var(--clr-dark-gray);
}


/*****************/
/* MOBILE + TABLET */
/*****************/
@media (max-width:575px), (min-width: 576px) and (max-width:768px){
   /* PROFILE */
      .profile__column-img{
        width: 100%;
       margin-bottom: 2em;
      }
      .profile__column-img--desktop{
        display: none;
      }

      .profile__column-img--mobile{
        display: block;
      }

      .profile__column-left, .profile__column-right{
        width: 35%;
      }
      .profile__title{
        font-size: var(--fs-600);
      }
 /* brand */
      .brand__item{
        width: 50%;
        margin-bottom: 2em;
        /* align-self: center; */
      }
    
    
      
  }
  

  @media (max-width:575px){
    /* PROFILE */
    .profile__row{
        flex-direction: column;
      }

      .profile__column-right{
        width: 100%;
        text-align: left;
      }
      .profile__column-left{
        width: 100%;
      }
  }