
  .contactContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contactFormContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contactFormTitle{
    height: 22px;
    font-size: 16px;
    color: #B1B1B1;
    letter-spacing: 0;
    text-align: center;
    font-weight: 400;
    margin: 60px 0 54px 0;
  }

  .contactCard{
    width: 1234px;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 2px 28px 0px rgba(204,204,204,0.5);
    border-radius: 6px;
    display: flex;
    margin: 91px 0 107px 0;
  }
  .contactCardImg{
    width: 620px;
    height: auto;
    overflow: hidden;
  }
  .contactCardImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contactCardInfoBox{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
    
  .contactIcon{
    width: 16px;
    height: 16px;
    overflow: hidden;
    margin-right: 16px;
  }
  .contactIcon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
 .contactCardPhone,.contactCardWebsite{
    display: flex;
    align-items: center;
  }
  .contactCardAddress{
    display:flex;
    flex-direction: column;
  }
  .contactCardPhone>div:nth-child(2){
    width: 259px;
    font-size: 15px;
    color: #343434;
    letter-spacing: 0;
    line-height: 27px;
    font-weight: 400;
  }
  .contactCardWebsite>div:nth-child(2){
    width: 259px;
    font-size: 15px;
    color: #343434;
    letter-spacing: 0;
    line-height: 27px;
    font-weight: 400;
  }
  .contactCardInfoTitle{
    height: 24px;
    font-size: 22px;
    color: #343434;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 600;
  }
  .contactCardInfoBox{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding:70px;
  }
  .addressTextInfo{
    margin-top:20px;
  }
  .addressText1{
    font-size:15px;
    font-weight:600;
  }
  .addressText2{
    font-size:15px;
    letter-spacing:1px;
  }
  @media(max-width:1300px){
    .contactCard {
      width: 950px;
      height: auto;
    }

  }

  @media(max-width:990px){
    .contactFormTitle{padding:0 35px}
    .contactCard {flex-direction: column;width: 360px;height: auto;}
    .contactCardImg,.contactCardInfoBox,.contactForm{width:100% !important;}
    .contactCardInfoBox{padding:30px 20px;}
    .contactCardInfo{margin-top: 18px;}
    .contactCardImg{overflow: visible;}
  }