@font-face {
  font-family: "Livret";
  src: url("./fonts/TT Livret Text Trial Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #f0f0f0;
}

.myservices_dark .myservices__title,
.myservices_dark .myservices__card-name {
  color: white;
}

.myservices__container {
  max-width: 1160px;
  width: calc(100% - 40px);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  background-color: transparent;
  padding:  0;
}

.myservices__container_other{
  margin-top: 45px;
}

.myservices__title {
  font-family: "Livret", "CommonsPro", "Inter";
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #2e2e2e;
}

.myservices__subtitle{
  font-family: "Livret", "CommonsPro", "Inter";
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  margin: 15px 0 0 0;
  color: #2e2e2e;
}

.myservices__card-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  row-gap: 0;
  margin-top: 15px;
}

.myservices__card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 20px;
  text-decoration: none;
  min-height: 65px;
  border-bottom: 0.2mm solid #bad3ff;
}

.myservices__card-link_hovered {
  background-color: #e4ebff !important;
}
.myservices__card-name_hovered_darktheme{
    color: #2e2e2e;
}



.myservices__card-name {
  font-family: "Inter", "CommonsPro";
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #2e2e2e;
  width: 90%;
  margin: 20px 0;
}

.myservices__card-button {
  height: 20px;
  width: 20px;
}

@media screen and (max-width: 640px) {
  .myservices__card-box {
    grid-template-columns: repeat(1, 1fr);
  }

  /* .myservices__card-name {
    font-size: 20px;
  } */

  .myservices__title {
    font-size: 24px;
  }

  .myservices__subtitle {
    font-size: 20px;
  }
}