/*!************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/card-prof/style.scss ***!
  \************************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.card-prof {
  position: relative;
  padding: 32px 24px;
}
.card-prof h3 {
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 24px 0;
}
.card-prof h3 {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  .card-prof h3 {
    font-size: calc(16px + 2 * ((100vw - 375px) / 991));
  }
}
@media screen and (min-width: 1366px) {
  .card-prof h3 {
    font-size: 18px;
  }
}
.card-prof p,
.card-prof ul li {
  font-size: 16px;
  line-height: 22px;
}
.card-prof p {
  margin: 24px 0 0 0;
}
.card-prof ul {
  margin: 16px 0 0 0;
  opacity: 0.5;
}
.card-prof ul li {
  margin-bottom: 8px;
  margin-left: 25px;
  position: relative;
}
.card-prof ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -15px;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
}
.card-prof ul li:last-child {
  margin-bottom: 0;
}
.card-prof h3, .card-prof p, .card-prof ul {
  position: relative;
  z-index: 2;
}
.card-prof:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#0C0C0C), to(rgba(47, 44, 34, 0.85)));
  background: linear-gradient(360deg, #0C0C0C 0%, rgba(47, 44, 34, 0.85) 100%);
  opacity: 0.5;
  z-index: 0;
  border-radius: 32px;
}
@supports ((-webkit-backdrop-filter: blur(25.5px)) or (backdrop-filter: blur(25.5px))) {
  .card-prof:after {
    -webkit-backdrop-filter: blur(25.5px);
            backdrop-filter: blur(25.5px);
  }
}
