@import url('https://fonts.googleapis.com/css?family=Overpass:400,700&display=swap');

body {
  font-family: 'Overpass', sans-serif;
  background-color: #E52E40;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

.card {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  border: none;
  /* margin-top: 75px; */
}
.profilepicfix {
  padding-top: 75px;
}

.profilepic {
  border-radius: 20px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  margin-top: -75px;
}

@media (max-width: 575px) {
  .profilepic {
    width: 75%;
  }
}

.title {
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  /* font-size: 54px; */
  font-size: 2.75rem;
  color: #17181A;
}

.subtitle {
  color: #A1A9B2;
  font-size: 24px;
  font-weight: 500;
}

.links-title {
  color: #A1A9B2;
  font-weight: 700;
  font-size: 20px;
}

.link-item .icon {
  font-size: 1.2em;
  width: 38px;
}

.link-item .icon> :first-child {
  color: #EDF2F7;
  transition: .15s ease-in-out;
}

.link-item .icon> :last-child {
  color: #17181A;
  transition: .15s ease-in-out;
  font-size: 1.1em;
}

.link-item .d-inline-flex {
  background: linear-gradient(to right, #EDF2F7 50%, #fff 50%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-size: 200% 100%;
  background-position: right bottom;
}
.link-item:hover .d-inline-flex {
  background-position: left bottom;
}

/* .link-item:hover .d-inline-flex {
  background-color: #EDF2F7;
} */

/* .link-item:hover .icon> :first-child {
  color: #17181A;
}

.link-item:hover .icon> :last-child {
  color: #EDF2F7;
} */

.link-text {
  font-weight: bold;
  color: #45494D;
  font-size: 20px;
  padding-right: 10px;
}

.link-item:hover .link-text,
.link-item:hover {
  text-decoration: none;
}

.link-item .d-flex,
.link-item .d-inline-flex {
  margin-bottom: 1rem;
  transition: .2s ease-in-out;
  border-radius: 20px;
}

.custom-btn {
  color: #EDF2F7;
  background-color: #17181A;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(23, 24, 26, 0.2), 0px 4px 8px rgba(23, 24, 26, 0.22);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-btn:hover {
  text-decoration: none;
  color: #EDF2F7;
  background-color: #E52E40;
}