.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    justify-items: stretch;
    justify-content: stretch;
}
.services-card {
    display: flow;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    align-content: center;
    border: 1px solid hsl(var(--border));
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
}
.category-tree-item {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
    overflow-y: auto;
}

.category-tree-item .parent-category a {
  
    align-items: center;
    gap: 15px;
}

.category-tree-item a img {
    width: 50px !important;
}

.category-tree-item a .title {
    font-weight: 500;
    transition: 0.3s;
    font-size: 1rem;
}

.category-tree-item a .title:hover {
    color: hsl(var(--base)) !important;
}
        /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /* background: #f1f1f1; */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2b92f3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:#3c9bf4;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: left;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

        .embedstyle {
            position: relative; 
            padding-bottom: 76.25%; 
            height: 0; 
            overflow: hidden; 
            max-width: 100%; 
            height: auto;
        }
        embed {
            position: absolute; 
            top: 0; 
            left: 0; 
            width:100%; 
            height:100%; 
            border: none; 
            overflow: hidden;
        }