body {
    background-image: url(./image/services.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "IBM Plex Sans", sans-serif;
  }
  
  
  .card {
    width: 100%;
    height: 100%;
    margin: auto;
    height: 900px;
    box-shadow: 0px 35px 70px 0px rgba(255, 163, 125, 0.65), 0px 30px 40px -10px rgba(255, 100, 124, 0.55);
    display: flex;
    flex-direction: column;
    
    background: rgb(4,113,134);
    background: linear-gradient(187deg, rgba(4,113,134,0.5410539215686274) 7%, rgba(8,174,252,0.7315301120448179) 100%);
    
    width: 100%;
    height: 100vh;
    
  }
  
  
  
  
  
  @media screen and (max-width: 512px) {
       body {
           background-position-x: -390px;
       }
      
      
    .card {
      width: 100%;
      height: 100%;
      border-radius: 0;
      box-shadow: none;
    }
  
    .content .title-holder h1 {
      font-weight: bold;
      font-size: 3rem !important;
      margin-bottom: 12px;
    }
  }
  
  .header {
    display: flex;
    padding: 8px 48px 48px 48px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5em;
    transition: opacity 0.05s ease;
  }
  
  .logo:hover {
    opacity: 0.75;
  }
  
  .social {
    display: flex;
  }
  
  .social a {
    display: inline-block;
    margin-right: 12px;
    transition: opacity 0.05s ease;
  }
  
  .social a:last-child {
    margin-right: 0;
  }
  
  .social a:hover {
    opacity: 0.75;
  }
  
  .social .icon {
    width: 18px;
    fill: #fff;
  }
  
  .content {
    flex: 1 1 auto;
    min-height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .content .title-holder {
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .content .title-holder h1 {
    font-weight: bold;
    font-size: 6rem;
    margin-bottom: 12px;
    font-family: "IBM Plex Sans", sans-serif;
  }
  
  .content .title-holder p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    font-family: "IBM Plex Sans", sans-serif;
  }
  
  @media screen and (max-width: 768px) {
    .content .title-holder {
      max-width: 80%;
    }
  }
  
  .content .cta {
    min-width: 64px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    transform: none;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.25, 0.315, 1.35), transform 0.1s linear;
    font-family: "IBM Plex Sans", sans-serif;
  }
  
  .content .cta:hover {
    transform: translateY(-1px);
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.3);
  }
  
  .footer {
    display: flex;
    flex-direction: row;
    padding: 48px;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
  }
  
  a.underlined:hover {
    border-bottom: 1px dotted #fff;
  }
  