/* Mobile responsive */
@media (max-width: 768px) {
  #servicesSection {
    height: max-content;
    width: 100dvw;
    background-color: #f4f6fc;
    display: grid;
    place-items: center;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    gap: 10px;
    grid-area: 2 / 1;
    padding: 10px;
    margin: auto;
  }

  #service-icon {
    width: 30px;
    border-radius: 30px;
  }

  .services-container > .content > h3 {
    font-size: 20px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / 1;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }

  .services-container > .content > .business {
    grid-area: 3 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }

  .services-container > .content > .personal {
    grid-area: 4 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }

  .services-container > .content > .extras {
    grid-area: 5 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }

  .services-container > .content > .payroll {
    grid-area: 6 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }

  .services-container > .content > .cloud {
    grid-area: 7 / 1;
    background-color: #8e99a2;
    height: max-content;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #servicesSection {
    height: 90dvh;
    background-color: #f4f6fc;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 120px 1fr;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 1fr 1fr;
    gap: 50px;
    grid-area: 2 / 1;
    padding: 10px;
  }

  #service-icon {
    width: 50px;
    border-radius: 50px;
  }

  .services-container > .content > h3 {
    font-size: 32px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / 2;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .business {
    grid-area: 2 / 2;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .personal {
    grid-area: 2 / 3;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .extras {
    grid-area: 3 / 1;
    background-color: #8e99a2;
    height: 300px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 18px !important;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 20px;
    width: 85%;
  }

  .services-container > .content > .payroll {
    grid-area: 3 / 2;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .cloud {
    grid-area: 3 / 3;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #servicesSection {
    height: max-content;
    background-color: #f4f6fc;
    width: 100dvw;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 30px;
    grid-area: 2 / 1;
    padding: 10px;
  }

  #service-icon {
    width: 30px;
    border-radius: 50px;
  }

  .services-container > .content > h3 {
    font-size: 28px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / span 2;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .business {
    grid-area: 2 / 2;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .personal {
    grid-area: 3 / 1;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .extras {
    grid-area: 3 / 2;
    background-color: #8e99a2;
    height: 300px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 20px;
    width: 85%;
  }

  .services-container > .content > .payroll {
    grid-area: 4 / 1;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .cloud {
    grid-area: 4 / 2;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #servicesSection {
    height: max-content;
    background-color: #f4f6fc;
    width: 100dvw;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 1fr 1fr;
    gap: 30px;
    grid-area: 2 / 1;
    padding: 10px;
  }

  #service-icon {
    width: 30px;
    border-radius: 50px;
  }

  .services-container > .content > h3 {
    font-size: 28px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / 2;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: 300px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .business {
    grid-area: 2 / 2;
    background-color: #8e99a2;
    height: 300px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .personal {
    grid-area: 2 / 3;
    background-color: #8e99a2;
    height: 300px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 30px;
    width: 85%;
  }

  .services-container > .content > .extras {
    grid-area: 3 / span 3;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 98%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    text-align: center;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 0px !important;
    width: 85%;
  }

  .services-container > .content > .payroll {
    grid-area: 3 / 2;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .cloud {
    grid-area: 3 / 3;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #servicesSection {
    height: max-content;
    background-color: #f4f6fc;
    width: 100dvw;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 1fr 1fr;
    gap: 10px;
    grid-area: 2 / 1;
    padding: 10px;
    column-gap: 1px !important;
  }

  #service-icon {
    width: 30px;
    border-radius: 50px;
  }

  .services-container > .content > h3 {
    font-size: 28px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / 2;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 450px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px !important;
    margin-left: 30px !important;
    width: 85%;
  }

  .services-container > .content > .business {
    grid-area: 2 / 2;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 450px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px !important;
    margin-left: 30px !important;
    width: 85%;
  }

  .services-container > .content > .personal {
    grid-area: 2 / 3;
    background-color: #8e99a2;
    height: 300px !important;
    border-radius: 10px;
    padding: 20px;
    width: 450px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px !important;
    margin-left: 30px !important;
    width: 85%;
  }

  .services-container > .content > .extras {
    grid-area: 3 / span 3;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 98%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 0px;
    width: 85%;
  }

  .services-container > .content > .payroll {
    grid-area: 3 / 2;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .cloud {
    grid-area: 3 / 3;
    background-color: #8e99a2;
    height: 200px;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    margin-left: 50px;
    width: 85%;
  }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
  #servicesSection {
    height: max-content;
    background-color: #f4f6fc;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr;
  }

  .services-container > .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 1fr 1fr;
    gap: 50px;
    grid-area: 2 / 1;
    padding: 10px;
  }

  #service-icon {
    width: 50px;
    border-radius: 50px;
  }

  .services-container > .content > h3 {
    font-size: 32px;
    font-weight: 600;
    color: #8e99a2;
    grid-area: 1 / 2;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cipc {
    grid-area: 2 / 1;
    background-color: #8e99a2;
    height: 350px !important;
    border-radius: 10px;
    padding: 20px;
    width: 600px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cipc:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cipc > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 18px !important;
  }

  .services-container > .content > .cipc > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px !important;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .business {
    grid-area: 2 / 2;
    background-color: #8e99a2;
    height: 350px !important;
    border-radius: 10px;
    padding: 20px;
    width: 600px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .business:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .business > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 18px !important;
  }

  .services-container > .content > .business > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px !important;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .personal {
    grid-area: 2 / 3;
    background-color: #8e99a2;
    height: 350px !important;
    border-radius: 10px;
    padding: 20px;
    width: 600px !important;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .personal:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .personal > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 18px !important;
  }

  .services-container > .content > .personal > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px !important;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .extras {
    grid-area: 3 / span 3;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 98%;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .extras:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .extras > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    font-size: 18px !important;
  }

  .services-container > .content > .extras > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .payroll {
    grid-area: 3 / 2;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .payroll:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .payroll > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .payroll > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }

  .services-container > .content > .cloud {
    grid-area: 3 / 3;
    background-color: #8e99a2;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    margin: auto;
    transition: all ease-in-out 0.2s;
    border: solid 3px #8e99a2;
  }

  .services-container > .content > .cloud:hover {
    border: solid 3px #ffbde4;
    transform: scale(1.02);
    cursor: pointer;
  }

  .services-container > .content > .cloud > h5 {
    color: white;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
  }

  .services-container > .content > .cloud > p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-left: 50px;
    width: 85%;
  }
}
