.profile-card {
  background-color: #ffffff !important;
  padding: 40px !important;
  height: 100%;
}

.profile-card__top {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 24px !important;
  margin-bottom: 32px !important;
}

.profile-card__image-wrapper {
  flex-shrink: 0 !important;
  width: 160px !important;
  height: 160px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

.profile-card__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.profile-card__top-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.profile-card__title {
  margin: 0 0 12px 0 !important;
}

.profile-card__top-text {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: var(--formoline-black) !important;
  padding-top: 36px;
}

.profile-card__text {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: var(--formoline-black) !important;
}

.profile-card__text p,
.profile-card__top-text p {
  margin: 0 !important;
}

@media (max-width: 991px) {
	.profile-card {
		height: auto
	}
}

@media (max-width: 768px) {
	.profile-card__top {
		flex-direction: column-reverse!important;
	}
	
	.profile-card__image-wrapper {
		width: 86px!important;
		height: 86px!important;
	}
	.profile-card__top {
		gap:16px!important;
		margin-bottom:24px!important;
	}
	
	.profile-card__top-text {
		padding-top:0px!important;
	}
}