@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
a{
text-decoration: none;
color: white;
}
a:active{
  color: #076240;
}
p{
    color:#d1d1d1;
}
.main{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  /*background-image: url(16x9.png);*/
  background-position: center;
  background-size: cover;
}
.profile-card{
    overflow:hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  border-radius: 25px 25px 0 0;
  padding: 0px;
  /*border: 1px solid #ffffff40;*/
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  /*background:linear-gradient(90deg, rgba(250,103,34,1) 0%, rgba(201,64,0,1) 50%, rgba(250,103,34,1) 100%);*/
  background:linear-gradient(180deg, rgba(234,93,36,1) 0%, rgba(242,97,37,1) 100%)
}
.image{
  position: relative;
  height: 80px;
  width: 150px;
}
.image .profile-pic{
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4); */
}
.data{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.data h2{
  font-size: 33px;
  font-weight: 600;
}
span{
  font-size: 18px;
}
.row{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.row .info{
  text-align: center;
  padding: 0 0px 15px 0;
}
.buttons{
  display: flex;
  align-items: center;
  margin-top: 30px;
  width: 75%;
  justify-content: center;
}
.buttons .btn{
  color: black;
  text-decoration: none;
  margin: 0 20px;
  padding: 8px 25px;
  /*border-radius: 25px;*/
  font-size: 18px;
  white-space: nowrap;
  /*background: linear-gradient(90deg, rgba(19,155,217,1) 0%, rgba(52,58,153,1) 50%, rgba(144,43,135,1) 100%);*/
  background: #f6aa47;
}
.buttons .btn img{
    border-radius: 50%;
    margin-right: 10px;
}
.buttons .btn:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}
.row .info img{
  width: 50%;
}
.phone{
  background: rgba(255, 255, 255, 0.2);
  height: 40px;
  width: 64%;
  border-radius: 50px;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap:10px
}
.phone img{
    margin-left:5px;
}