main {
  font-family: var(--font_family_poppins);

}

.section {
  position: relative;
  padding: 2rem;
  padding-top: 6rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  text-align: center;
}

.profile{
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;  
  
}

.profile_left{
  display: flex ;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.profile_title {
  width: 100%;
  margin: 0 0;
  font-size: 1.9rem;
  white-space: nowrap;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  line-height: 35px;
  font-weight: 700;
}

.profile_title> span {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg,#4ca5ff 2.34%,#b673f8 100.78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;

}

.profile_btncontainer{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  
}

.profile_btn{
  width: 7rem;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: .8rem;
  border: 0.0625rem solid transparent;
  background: linear-gradient(90deg, #4ca5ff 2.34%, #b673f8 100.78%);
  color: #ffffff;
  transition: 1.5s background-color, 0.5s color;
  align-items: end;
  padding: .5rem;
  cursor: pointer;
  margin-left: 2rem;
  text-align: center;
  text-decoration: none;
}
.profile_btn:first-child{
  margin-left: 0;
}

.profile_photo {
  width: 12rem;
  height: auto;
  border-radius: 100%;
}

.profile_paragraph{
  width: 85%;
  font-size: .75rem;
  text-align: justify;
  color: rgb(163 179 188);
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}


@media screen and (min-width:768px) {
  
  .profile{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: center;
  }
  .profile_left{
    place-self: center;
  }
  
  .profile_title {
    font-size: 2.2rem;
    padding-top: 1rem;
  }
  
  .profile_title span {
    font-size: 1.7rem;
  }
  
  .profile_right{
    place-self: center;
   
   
  }

  .profile_photo {
    width: 15rem;
    
    
  }
  
  .profile_paragraph{
    width: 90%;
    font-size: 1rem;
  }
  .profile_btn{
    width: 10rem;
    padding: .8rem;
    font-size: .9rem;
  }
  
}

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

  .profile{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: center;
  }
  .profile_left{
    place-self: center;
    padding-left: 2rem;
  }
  
  .profile_title {
    font-size: 3.2rem; 
    line-height: 50px; 
  }
  
  .profile_title span {
    font-size: 2.5rem;
  }

  .profile_right{
    place-self: center;
   
  }
  .profile_photo {
    width: 18rem;
  }
  
  .profile_paragraph{
    width: 98%;
    font-size: 1.2rem;
  }
  .profile_btn{
    width: 12rem;
    padding: .8rem;
    font-size: 1rem;
  }
  
}