@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-light.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-extra-bold.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-extra-bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-regular.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-regular.woff") format("woff");
  font-weight: 400l;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-bold.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-bold.woff") format("woff");
  font-weight: bold;
  font-style: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-medium.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.content .specialisations {
  display: flex;
  column-gap: 48px;
  row-gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 128px 0;
}
.content .specialisations a.specialisation {
  position: relative;
  height: 300px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.content .specialisations a.specialisation:hover .backdrop {
  background: rgba(64, 15, 20, 0);
}
.content .specialisations a.specialisation .title {
  color: #ffffff;
  font-size: 30px;
  font-family: Gilroy;
  font-weight: 500;
  z-index: 1;
  text-align: center;
}
.content .specialisations a.specialisation .backdrop {
  transition: background 0.3s;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(64, 15, 20, 0.2);
  border-radius: 50%;
}
.content .specialisations a.specialisation img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.specialisation-detail {
  background: url("/assets/svgs/up-background.svg");
}