.content {
  display: grid;
  grid-template-rows: 10rem auto auto auto auto auto auto; }
  .content .header-text-container {
    display: grid;
    grid-template-rows: auto auto auto;
    width: fit-content;
    justify-self: center;
    justify-items: center;
    color: white;
    text-align: center; }
  .content .home-image-container {
    display: grid; }
    @media screen and (min-width: 1024px) {
      .content .home-image-container {
        grid-template-columns: auto 1fr; } }
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      .content .home-image-container {
        grid-template-columns: auto 1fr; } }
    @media screen and (max-width: 767px) {
      .content .home-image-container {
        grid-template-rows: auto auto; } }
    .content .home-image-container .personalimage {
      height: calc(100vh - 10rem);
      width: auto; }
    .content .home-image-container .button-container {
      display: grid;
      grid-template-rows: auto 1fr; }
      @media screen and (min-width: 1024px) {
        .content .home-image-container .button-container {
          padding-top: 10rem; } }
      @media screen and (min-width: 768px) and (max-width: 1023px) {
        .content .home-image-container .button-container {
          padding-top: 10rem; } }
      @media screen and (max-width: 767px) {
        .content .home-image-container .button-container {
          padding: 2rem; } }
      .content .home-image-container .button-container .golden-btn {
        width: fit-content;
        justify-self: center; }
  .content .service-header {
    justify-self: center; }
  .content .service-table {
    display: flex;
    flex-flow: column;
    gap: 4rem;
    justify-content: center;
    padding: 2rem; }
    .content .service-table ul {
      gap: 4rem;
      list-style: none;
      padding: 0; }
      .content .service-table ul.two-col-grid {
        display: grid; }
        @media screen and (min-width: 1024px) {
          .content .service-table ul.two-col-grid {
            grid-template-columns: 1fr auto auto 1fr; } }
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          .content .service-table ul.two-col-grid {
            grid-template-columns: 1fr auto auto 1fr; } }
        @media screen and (max-width: 767px) {
          .content .service-table ul.two-col-grid {
            grid-template-rows: auto auto;
            justify-items: center; } }
        @media screen and (min-width: 1024px) {
          .content .service-table ul.two-col-grid > *:nth-child(1) {
            grid-column: 2; } }
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          .content .service-table ul.two-col-grid > *:nth-child(1) {
            grid-column: 2; } }
        @media screen and (min-width: 1024px) {
          .content .service-table ul.two-col-grid > *:nth-child(2) {
            grid-column: 3; } }
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          .content .service-table ul.two-col-grid > *:nth-child(2) {
            grid-column: 3; } }
      .content .service-table ul.three-col-grid {
        display: grid; }
        @media screen and (min-width: 1024px) {
          .content .service-table ul.three-col-grid {
            grid-template-columns: repeat(3, 1fr); } }
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          .content .service-table ul.three-col-grid {
            grid-template-columns: repeat(3, 1fr); } }
        @media screen and (max-width: 767px) {
          .content .service-table ul.three-col-grid {
            grid-template-rows: repeat(3, 1fr);
            justify-items: center; } }
      .content .service-table ul li .service-table-col {
        display: flex;
        flex-direction: column;
        display: grid;
        grid-template-rows: auto auto auto;
        justify-items: center;
        max-width: 20rem;
        text-align: center;
        text-decoration: none; }
        .content .service-table ul li .service-table-col img {
          height: 10rem;
          width: auto; }
        .content .service-table ul li .service-table-col span {
          color: white;
          padding: 1rem;
          text-align: center; }
        .content .service-table ul li .service-table-col:hover, .content .service-table ul li .service-table-col:focus {
          color: white;
          box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px #fae385;
          border-radius: 1rem; }
        .content .service-table ul li .service-table-col :visited {
          color: white; }
  .content .social-proof-container {
    display: grid;
    grid-template-rows: auto auto;
    grid-row-gap: 2rem;
    justify-items: center;
    padding-top: 2rem; }
    .content .social-proof-container h2 {
      text-align: center; }
    .content .social-proof-container .social-proof {
      display: grid;
      align-items: center; }
      @media screen and (min-width: 1024px) {
        .content .social-proof-container .social-proof {
          grid-auto-flow: column; } }
      @media screen and (min-width: 768px) and (max-width: 1023px) {
        .content .social-proof-container .social-proof {
          grid-auto-flow: column; } }
      @media screen and (max-width: 767px) {
        .content .social-proof-container .social-proof {
          grid-auto-flow: row;
          justify-items: center; } }
      .content .social-proof-container .social-proof .svg-img {
        width: 20rem; }
      .content .social-proof-container .social-proof img {
        max-width: 20rem;
        max-height: 10rem; }
