@import url("index.css");
body{
    background-color: #006ae3;
}
  .contact {
    width: 100%;
    height: auto;
    background-color: #006ae3;
    padding: 40px;
  }

  .contact_header{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
  }

  

  
  .contact_container {
    display: flex;
    justify-content: space-between;
  }
  
  .contact_left {
    width: 60%;
    height: auto;
  }
  
  .contact_left h1,.contact_right h1 {
    color: #fff;
    font-size: 50px;
  }
  
  .contact_left p, .contact_right p {
    color: #fff;
    font-size: 24px;
  }
  
  .contact_icon {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .ci_item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-weight: 700;
    color: #ffffff;
  }
  
  .ci_item i {
    font-size: 34px;
    margin-right: 20px;
  }
  
  .contact_right {
    width: 40%;
  }

  @media screen and (max-width : 1020px) {
    .contact_container{
      flex-direction: column;
    }
    .contact_right{
      width: 100%;
    }
    .contact_right iframe{
      width: 100%; 
    }
  }
  