.n-h .s-hd {
    /* Narrow header */
    max-width: 500px;
}

.officies .s-grd,
.careers .s-grd {
    display: grid;
    max-width: 1200px;
    gap: 50px;
}

.officies .s-grd .itm {
    box-shadow: 1px 1px 1px gainsboro;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.officies .s-grd .itm:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 5px gainsboro;
}

.officies .s-grd .itm .img-con {
    height: 150px;
    overflow: hidden;
}

.officies .s-grd .itm .txt-con {
    padding: var(--spacing-md);
}

.officies .s-grd .itm ul li {
    list-style: none;
}

.officies .s-grd .itm ul li span {
    padding-right: 10px;
}

.careers .s-grd .itm {
    border: 1px solid rgb(241, 241, 241);
    padding: var(--spacing-md);
}

.careers .s-grd .itm:hover {
    transform: scale(1.03);
    background-color: rgb(248, 248, 248);
}
 
.e-cm1 .s-grd {
    align-items: center;
}

.e-cm1 .s-grd a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.e-cm1 .s-grd a :hover {
  background: #2c5aa0;
  color: white;
   text-decoration: none;
  transform: translateY(-1px);
}

.e-cm2 .s-grd {
    gap: 50px;
}

.e-cm2 .s-grd .itm {
    background-image: linear-gradient(orange, red, rgb(243, 16, 54));
    border-radius: 20px;
    text-align: center;
    padding: 50px 10px;
    color: white;
    cursor: pointer;
}

.e-cm2 .s-grd .itm:hover {
    transform: scale(1.05);
}

.success-stories .s-grd .itm {
    box-shadow: 5px 5px 5px gainsboro;
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 20px;
}

.strategy {
    background-color: rgb(17, 16, 16);
    color: white;
    padding: 100px 0;
}

.strategy .s-grd {
    align-items: center;

}

.strategy img {
    height: 250px;
    border-radius: 50px;
}


.col-2 .s-grd {
    display: grid;
    grid-template-columns: repeat(1, 1fr);

}

.get-in-touch {
    margin: var(--spacing) auto;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
}
.get-in-touch a {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    display: block;
    padding: var(--spacing-md) calc(var(--spacing-md) * 2);
    border-radius: 30px;
    text-align: center;
}
.support-content {
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 2px -4px 19px 5px #aba2a2;
}
@media(min-width : 800px) {
    .officies .s-grd,
    .how .s-grd,
    .careers .s-grd {
        grid-template-columns: repeat(3, 1fr);
    }
    .col-2 .s-grd {
        grid-template-columns: repeat(2, 1fr);
    }
}