.contact-section {
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    padding: 60px;
    flex-direction: column;
    overflow: hidden;
    align-items: start;
  }
  
  .contact-heading {
    leading-trim: both;
    text-edge: cap;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    font-family:
      Druk Text Trial,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    margin: 0;
  }
  
  .contact-heading span {
    color: rgba(255, 255, 255, 1);
  }
  
  .contact-container {
    margin-top: 40px;
    margin-left: 80px;
    /* width: 500px; */
    max-width: 100%;
    font-family:
      "FONTSPRING DEMO - Tenon Medium",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 500;
  }
  
  .contact-group {
    width: 100%;
    margin-top: 20px;
  }
  
  .contact-group:first-child {
    margin-top: 0;
    white-space: nowrap;
  }
  
  .contact-category {
    leading-trim: both;
    text-edge: cap;
    align-self: stretch;
    width: 100%;
    gap: 20px;
    font-size: 30px;
    color: #fff;
    margin: 0;
    font-weight: 500;
  }
  
  .contact-items {
    display: flex;
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
    align-items: start;
    font-size: 20px;
    color: #ff5c3e;
    justify-content: start;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: start;
  }
  
  .contact-item + .contact-item {
    margin-top: 8px;
  }
  
  .contact-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 28px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
  }
  
  .contact-text {
    leading-trim: both;
    text-edge: cap;
    align-self: stretch;
    margin: auto 0;
  }

  .contact-content{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .tele_illustration {
    max-width: 90%;
    rotate: -20deg;
  }

  @media (max-width: 640px) {
    .contact-section {
        padding: 50px 20px !important;
    }
  }

  @media (max-width: 991px) {
    .contact-section {
      padding: 100px 50px;
    }
  
    .contact-heading {
      max-width: 100%;
      font-size: 40px;
    }
  
    .contact-container {
      margin-top: 40px;
      margin-left: 0px;
    }
  
    .contact-group:first-child {
      max-width: 100%;
      white-space: initial;
    }
  
    .contact-category {
      max-width: 100%;
    }
  
    .contact-items {
      max-width: 100%;
      white-space: initial;
    }
  
    .contact-item {
      white-space: initial;
    }
  
    .contact-group {
      max-width: 100%;
      margin-top: 40px;
    }

    .contact-content{
      display: flex;
      flex-direction: column-reverse;
      gap: 40px;
      align-items: flex-start;
    }
  }
  