.contact__container {
    background: var(--color-bg1);
    padding:4rem;
    display:grid;
    grid-template-columns: 40% 60%;
    gap:4rem;
    /* height: 30rem; */
    margin: 7rem auto;
    border-radius: 1rem;
}

/* ================ASIDE================= */

.contact__aside {
    background: var(--color-primary);
    border-radius: 1rem;
    position:relative;
    bottom: 10rem;
    width: auto;
        padding: 1.5rem;
        bottom: 0;
}

.aside__image {
    width: 12rem;
    margin-bottom: 2rem;
}

.contact__aside h2 {
    text-align: left;
    margin-bottom:1rem;
}

.contact__aside h2 {
    font-size: 1.5rem;
}

.contact__aside p {
    font-size: 1.1rem;
    margin-bottom:2rem;
}

.contact__details li {    
    display:flex;
    gap:1rem;
    align-items: center;
    margin-bottom: 1rem;
}


.contact__socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 3rem;    
}

.contact__socials a {
    background-color: var(--color-bg1);
    padding: 0.5rem;
    border-radius:50%;
    font-size: 1rem;
    transition: var(--transition);  
}

.contact__socials a:hover {
    background:transparent;
}

/* ================ASIDE END================= */

/* ================ CONTACT FORM================= */

.contact__form {
    display: flex;
    flex-direction: column;
    gap:1.2rem;
    margin-right: 4rem;    
}

.form__name {
    display:flex;
    gap: 1.2rem;
}

.contact__form input[type="text"] {
    width: 50%;
}

input, textarea {
    font-family: 'Share Tech';
    width: 100%;
    padding: 0.5rem;
    background:var(--color-bg3);
    color: white;
    font-size: 1rem;
}



::placeholder {
    font-size: 15px; 
    color: white;
    opacity: 1; 
  }


.contact__form .btn {
    width: max-content;
    margin-top: 1rem;
    cursor: pointer;
}

.contact__details img {
    width: 30px;
}

.contact__details {
    font-size: 30px;
    margin: 0;
}

.contact__details h5 {
    font-size: 15px;
}

/* ================ MEDIA QUERIES FOR TABLES ( 1024px================= */

@media screen and (max-width: 1024px) {
    

    .contact__container {
        gap:1.5rem;
        margin-top: 3rem;
        height: auto;
        padding: 1.5rem;
    }

    .contact__aside {
        width: auto;
        padding: 1.5rem;
        bottom: 0;
    }

    .contact__aside p {
        width: auto;
        bottom: 0;
    }

    .contact__form {
        align-self: center;
        margin-right: 1.5rem;
    }
}

/* ================ MEDIA QUERIES FOR PHONES ( 600px================= */

@media screen and (max-width: 700px) {

    
    

    .contact__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top:0;
        padding: 0;        
    }

    .contact__form {
        margin: 0 1.5rem 3rem;
    }

    .form__name {
        flex-direction: column;
    }

    .form__name input[type="text"] {
        width: 100%;
    }

    
}



