  .button {
	  outline:none !important;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .pdf-file {
    align-items: center;
  }

  .pdf-file-image {
    flex: auto;
    display: flex;
    align-items: center;
  }

  .pdf-file-image img {
    width: auto;
    height: auto;
    max-height: 48px;
  }
  
  .about-us-text a {
    color: rgb(51, 204, 102);
    text-decoration: none;
  }
  
  .about-us-text a:hover {
    border-bottom: 1px solid rgba(51, 204, 102, .5);
  }
  
  .documents-grid {
    gap: 16px 24px;
  }
  
  .documents-grid>div {
    min-width: calc(33.3% - 32px);
    width: calc(33.3% - 32px);
  }
  
  @media screen and (max-width: 960px) {
    .documents-grid>div {
      min-width: calc(50% - 32px);
      width: calc(50% - 32px);
    }
  }
  
  @media screen and (max-width: 560px) {
    .documents-grid>div {
      min-width: 100%;
      width: 100%;
    }
  }

  .info-grid__short .info-grid-item {
    width: 25%;
    padding: 56px 24px;
  }

  .info-grid__short .info-grid-item-title:before {
    display: none;
  }

  .info-grid__short .info-grid-item-title {
    font-size: 16px;
    line-height: 25px;
  }

  .info-grid__short .info-grid-item-subtitle {
    font-size: 16px;
    line-height: 25px;
    margin-top: 8px;
  }
  
  @media screen and (max-width: 960px) {
    .info-grid__short .info-grid-item {
      width: 100%;
      padding: 12px 16px;
    }
  }

  .info-grid-item-num {
    color: #287CDF;
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .services-title__margin {
    padding-top: 0;
  }

  .banner-alt h1, .banner-alt h1 span {
    font-size: 32px;
    line-height: 48px;
    padding: 0;
  }

  .banner-alt {
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin: 144px 0 112px 0;
    align-items: flex-end;
  }

  .banner-alt img {
    width: 100%;
    height: auto;
  }
  
  @media screen and (max-width: 1200px) {
    .banner-alt h1, .banner-alt h1 span {
      font-size: 24px;
      line-height: 32px;
    }
    .banner-alt {
      margin: 128px 0 96px 0;
    }
  }
  
  @media screen and (max-width: 960px) {
    .banner-alt {
      display: flex;
      flex-direction: column;
      gap: 32px;
      text-align: center;
      align-items: center;
      justify-content: center;
      margin: 16px 0 56px 0;
    }
    .banner-alt img {
      max-width: 640px;
    }
  }