



/*Contacto Formulario*/
.contact-in {
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    box-shadow: 0px 0px 10px 0px #00cc66;

}

.contact-map {
   width: 100%;
   height: auto;
   flex: 50%;

}
.contact-map iframe {
   width: 100%;
   height: 100%;
}

.contact-form {
   width: 100%;
   height: auto;
   padding: 30px;
   flex: 50%;
   text-align: center;

}

.contact-form h1 {
  margin-bottom: 10px;
  font-family: ;
  color: #00cc66;

}

.contact-form-txt {
   width: 100%;
   height: 40px;
   color: #00cc66;
   border: 1px solid #00cc66;
   border-radius: 50px;
   outline: none;
   margin-bottom: 20px;
   padding: 15px;
}

.contact-form-txt::placeholder {
    color: #00cc66;
}

.contact-form-textarea {
   width: 100%;
   height: 130px;
   color: #00cc66;
   border: 1px solid #00cc66;
   border-radius: 50px;
   outline: none;
   margin-bottom: 20px;
   padding: 15px;
   font-family: ;
}

.contact-form-textarea::placeholder {
    color: #00cc66;
    font-family: ;
}

.contact-form-btn {
    width: 100%;
    border: none;
    border-radius: 50px;
    background: #00cc66;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 13px;
}

/*Contacto*/


.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .1rem;
    text-align: center;
}
.section-title span {
    color: crimson;
}



/* contact Section */
#contact .contact {
    flex-direction: column;
    max-width: 1350px;
    margin: 0 auto;
}
#contact .contact-items {
    width: 400px;
}
#contact .contact-item {
    width: 80%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 18px 0 #0000002c;
    transition: .3s ease box-shadow;
}
#contact .contact-item:hover {
    box-shadow: 0px 0px 5px 0 #00cc66;
}
#contact .icon-contact {
    width: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
}
#contact .contact-info h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}
#contact .contact-info h2 {
    font-size: 0.9rem;
    line-height: 1.4rem;
    font-weight: 500;
}


/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
   /*contact*/
    h3.section-title {
        font-size: 3rem;
    }


    #contact .contact {
        flex-direction: column;
        padding: 100px 0;
        align-items: center;
        justify-content: center;
        min-width: 20vh;
    }
    #contact .contact-items {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin: 0;
    }
    #contact .contact-item {
        width: 30%;
        margin: 0;
        flex-direction: row;
    }
    #contact .contact-item .icon {
        height: 100px;
        width: 100px;
    }
    #contact .contact-item .icon img {
        object-fit: contain;
    }
    #contact .contact-item .contact-info {
        width: 100%;
        text-align: left;
        padding-left: 20px;
    }
}
                                                  



