.container__contact {
    /* background-color: #0000009d; */
    border: #000;
    /* margin: 2rem 0rem; */
    padding: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* @keyframes animside {
      0%{
          top: -10rem;
      }
      100%{
          top: -7rem;
      }
  } */

.contact_aside {
    border: 1px solid black;
    box-shadow: 2px 2px 5px black;
    /* margin-left: 2rem; */
    padding: 1rem 3rem;
    border-radius: 1rem;
    background-color: #e8ebed;
    bottom: 10rem;
    /* animation: animside 2s infinite; */
    /* animation-direction: alternate; */
}
.aside_image {
    /* width: 20rem; */
    margin-bottom: 1rem;
}

.aimg {
    background-image: url(../Image/4575f6_ec4b613c4b6c4e9b89ad9c530b51c52a_mv2.gif);
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contact_aside h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact_aside p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact_aside ul {
    padding-left: 0rem !important;
}

.contact_details li {
    display: grid;
    gap: 1rem;
    grid-template-columns: 10% 90%;
    padding-right: 2rem !important;
    align-items: center;
    margin-bottom: 1rem;
}

.contact_details li a {
    color: #000;
}

.contact_socials {
    display: flex;
    gap: 1rem;
}

.contact_socials a {
    background: #000;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
}

.contact_socials a:hover {
    transition: 0.3s ease-in;
    background: transparent;
}

.contact__form {
    border: 1px solid black;
    display: flex;
    border-radius: 1rem;
    box-shadow: 2px 2px 5px black;
    flex-direction: column;
    background-color: #e8ebed;
    gap: 1.2rem;
    padding: 1rem;
    color: #000;
    justify-content: center;
    /* margin-right: 4rem !important; */
}

.form__name {
    display: flex;
    gap: 1.2rem;
}

.contact__form input[type="text"] {
    width: 50%;
}

input,
textarea {
    width: 100%;
    color: black;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid black;
}

/* media queries */
/* tablet */

@media screen and (max-width: 1024px) {
    .ctn {
        padding-bottom: 3rem;
    }

    .container__contact {
        gap: 2rem;
        /* margin-top: 2rem; */
        margin-bottom: 0rem;
        height: auto;
        padding: 1.5rem;
    }

    .contact_aside {
        width: auto;
        font-size: 0.2rem;
        padding: 1.5rem;
        margin: 1rem;
        bottom: 0;
    }

    .contact__form {
        margin-right: 1rem;
    }
}

/* media queries */
/* phone */

@media screen and (max-width: 770px) {
    .container__contact {
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .contact_aside {
        margin: 0rem 1rem;
    }

    .contact__form {
        margin: 0rem 1rem;
    }

    .form__name {
        flex-direction: column;
    }

    .form__name input[type="text"] {
        width: 100%;
    }
}