
.contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 2400px;
    gap: 100px;
    align-self: center;
    justify-self: center;
  }
  
  .details {
    order: 0;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    width: 400px;
    height: 500px;
  }
  
  .contact-info {
    width: 100%;
    color: var(--white-color);
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* flex-wrap: wrap; */
    column-gap: 20px;
  }
  
  .contact-info .icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: linear-gradient(180deg, var(--first-color), var(--second-color));
  }
  
  .contact-info img {
    width: 100px;
    /* filter: invert(80%); */
  }
  
  .contact-info .text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  
  .contact-info h1 {
    font-size: 30px;
  }
  
  .contact-info h3 {
    font-size: 20px;
    font-weight: 300;
  }
  
  .email-form {
    border: 1px solid var(--second-color);
    border-radius: 40px;
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(
      180deg,
      var(--form-bg-first-color),
      var(--form-bg-second-color)
    );
  }
  
  .email-form h1 {
    color: var(--white-color);
    font-size: 35px;
  }
  
  .email-form form {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  
  .email-form input::placeholder,
  .email-form textarea::placeholder {
    font-size: 17px;
    color: #dadada;
  }
  
  .email-form input:focus,
  .email-form textarea:focus {
    border: 2px solid var(--email-form-input-focus-border);
  }
  
  .email-form input {
    width: 100%;
    height: 50px;
    padding: 10px;
    padding-left: 20px;
    border-radius: 15px;
    background-color: rgba(114, 114, 114, 0.5);
    color: var(--white-color);
    font-size: 17px;
    outline: none;
    box-shadow: none;
    border: 1px solid #bebebe;
    margin-bottom: 20px;
  }
  
  .email-form textarea {
    padding: 10px;
    padding-left: 20px;
    color: var(--white-color);
    resize: none;
    font-size: 17px;
    border-radius: 15px;
    background-color: rgba(114, 114, 114, 0.5);
    border: 1px solid rgb(190, 190, 190);
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    outline: none;
    /* border: none; */
  }
  
  .email-form .submit-btn {
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 25px;
    width: 45%;
    text-align: center;
    vertical-align: middle;
    align-self: center;
    justify-self: center;
    font-weight: 600;
    padding: 0;
    background: linear-gradient(to left, var(--second-color), var(--first-color));
    border-radius: 100px;
    color: #292929;
  }

  /* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {

    .details {
        width: 100%;
        height: 250px;
        row-gap: 25px;
        /* column-gap: ; */
        /* border: 1px solid red; */
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        align-content: center;
      }
    
      .contact-info {
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 400px;
        height: max-content;
        gap: 10px;
      }
    
      .contact-info .icon,
      .contact-info img {
        width: 100px;
        height: 100px;
      }
    
      .contact-info h1 {
        font-size: 30px;
      }
    
      .contact-info h3 {
        font-size: 25px;
        font-weight: 300;
      }
}


/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {

  .contact {

  }
  
  .details {
    width: 100%;
    height: 250px;
    row-gap: 25px;
    /* column-gap: ; */
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  
  .contact-info {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 200px;
    height: max-content;
    gap: 10px;
  }
  
  .contact-info .icon , .contact-info img {
    width: 70px;
    height: 70px;
  }
  
  
  .contact-info h1 {
    font-size: 20px;
  }
  
  .contact-info h3 {
    font-size: 15px;
    font-weight: 300;
  }
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {

    .contact {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 100px;
      }
    
      .details {
        /* border: 1px solid red; */
        order: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        row-gap: 50px;
        width: 100%;
        height: max-content;
      }
    
      .contact-info {
        width: 80%;
      }
    
      .contact-info .icon,
      .contact-info img {
        width: 100px;
        height: 100px;
      }
    
      .contact-info h1 {
        font-size: 30px;
      }
    
      .contact-info h3 {
        font-size: 20px;
        font-weight: 300;
      }
    
      .email-form {
        align-content: center;
        border-radius: 40px;
        width: 90%;
        height: 400px;
      }
    
      .email-form h1 {
        font-size: 25px;
      }
    
      .email-form form {
        display: flex;
        flex-direction: column;
        width: 80%;
      }
    
      .email-form input::placeholder,
      .email-form textarea::placeholder {
        font-size: 17px;
        color: #dadada;
      }
    
      .email-form input:focus,
      .email-form textarea:focus {
        border: 2px solid var(--email-form-input-focus-border);
      }
    
      .email-form input {
        width: 100%;
        height: 50px;
        padding: 10px;
        padding-left: 20px;
        border-radius: 15px;
        background-color: rgba(114, 114, 114, 0.5);
        color: var(--white-color);
        font-size: 17px;
        outline: none;
        box-shadow: none;
        border: 1px solid rgb(190, 190, 190);
        margin-bottom: 20px;
      }
    
      .email-form textarea {
        resize: none;
        font-size: 17px;
        border-radius: 15px;
        width: 100%;
        height: 100px;
      }
    
      .email-form .submit-btn {
        font-size: 20px;
        width: 55%;
        height: 50px;
      }
}

