
/* Contact Start */

#contact-us {
    background-repeat: no-repeat;
    background-size: cover;
    height: 423px;
    padding: 96px;
    position: relative; /* Make it a positioned element for the pseudo-element */
    overflow: hidden; /* Ensure the pseudo-element stays within the container */
  }
  
  #contact-us h2 {
    margin-left: 25%;
    color: var(--White, #fff);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 111.111% */
    text-transform: uppercase;
    width: 55%;
  }
  
  #contact-us a:active,
  #contact-us a:hover {
    outline: 0;
  }
  
  #contact-us .link-arrow {
    display: inline-block;
    flex: 0 auto;
    -webkit-box-flex: 0;
    width: 400px;
    position: relative;
    text-align: left;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-top: 90px !important;
    padding-bottom: 14px;
    border-bottom: 1px solid white;
  }
  
  #contact-us .link-arrow:hover {
    color: var(--Red, #ca202e);
    border-bottom: 1px solid var(--Red, #ca202e);
  }
  
  #contact-us .link-arrow::before,
  #contact-us .link-arrow::after {
    content: url("images/arrow-right-white.svg");
    display: block;
    font-family: Inter;
    font-size: inherit;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0%, -50%);
    transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
  }
  
  #contact-us .link-arrow:hover::before {
    content: url("images/arrow-right-red.svg");
  }
  
  #contact-us .link-arrow.font-reg::before,
  #contact-us .link-arrow.font-reg::after {
    font-weight: 300;
  }
  
  #contact-us .link-arrow::before {
    opacity: 0;
    transform: translate(-100%, -50%);
  }
  
  #contact-us .link-arrow:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
  }
  
  #contact-us .link-arrow:hover::after {
    opacity: 0;
    transform: translate(100%, -50%);
  }
  
  /* Adjustments for medium screens */
  @media screen and (max-width: 1200px) {
  }
  
  @media screen and (max-width: 767px) {
    #contact-us {
      padding: 40px 12px;
      height: 365px;
    }
  
    #contact-us h2 {
      color: var(--White, #fff);
      font-size: 36px;
      font-style: normal;
      font-weight: 600;
      line-height: 40px; /* 111.111% */
      text-transform: uppercase;
      width: 100%;
      margin: 0px;
    }
  
    
  
    #contact-us .row {
      margin-top: 0px;
    }
  
    #contact-us .link-arrow {
      width: 100%;
      margin-top: 32px !important;
    }
  }
  
  /* Contact end */
  