/* .contact-input-container,li{
    margin: 0;
    padding: 0;
} */
.contact-container {
    background-color: var(--color-light);
    
}

.contact-container img {
    width: 2em;
    height: 2em;
}

.contact-container .hero-section {
    position: relative;
    width: 100%;
    height: 25em;
    background: url('/static/images/contacts/contact-us2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--secondary-color-light);
    margin: 0;
    padding: 0;
}

.hero-section .content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-direction: column;
    text-shadow: 4px 0 0 var(--color-lighter);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to left, rgb(53, 5, 97, .5), rgb(80, 5, 151, .5));
}

.hero-section .content div {
    color: var(--primary-color);
    font-family: 'Courier New', Courier, monospace;
    font-size: large;
}

.content-section {
    margin: 2em;
}

.contact-socials {
    position: absolute;
    top: 21em;
    display: flex;
    z-index: 10;
}

.contact-socials .social-contacts {
    border-radius: 50%;
    font-weight: bolder;
    font-size: larger;
    padding: .5em;
    height: 1.5em!important;
    width: 1.5em!important;
    background-color: var(--secondary-color-lighter);
    transition: linear .5s;
}

.contact-socials .social-contacts svg {
    height: 1.5em!important;
    width: 1.5em!important;
}

.contact-socials .social-contacts:hover svg {
    animation: contact-svg-icon .75s infinite ease;
}

@keyframes contact-svg-icon {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.content-section {
    display: flex;
    justify-content: space-around;
    flex-flow: wrap;
    margin-top: 3em;
}

.content-section h1 {
    display: flex;
    text-shadow: 2px 0 0 var(--primary-color);
    text-align: center;
}

.content-section h1 div {
    max-height: .25em;
    width: 30%;
    background-color: var(--primary-color);
    color: var(--primary-color);
    margin: .25em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5em;
    border-radius: 50%;
    background-color: var(--secondary-color-lighter);
    border-bottom: 8px solid var(--primary-color);
    transition: linear 1s;
}

.contact-info:hover {
    transition: linear 1s;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: .25em;
}

.contact-info p svg {
    width: 1.5em;
    height: 1.5em;
    font-size: medium;
}
.contact-info-content{
    color: var(--color-dark);
}
.contact-info p:nth-child(6) {
    color: var(--primary-color);
    animation: whatsapp-svg-icon .75s infinite ease;
}

@keyframes whatsapp-svg-icon {
    0% {
        transform: translateY(5px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(5px);
    }
}

.contact-info img {
    width: 1.5em;
    height: 1.5em;
    margin-right: .5em;
    padding: .25em;
}

.contact-info svg {
    margin: 0 .5em;
}

.title-header {
    text-align: center;
    text-transform: initial;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
    margin: 1em;
}

.contact-form {
    display: flex;
    justify-content: center;
}

.contact-form .contact-input-container {
    background-color: var(--secondary-color-lighter);
    padding: 1em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all ease 2s;
    border-bottom: 8px solid var(--primary-color);
}

.contact-form .contact-input-container:hover {
    transition: all ease 2s;
}

.contact-form .contact-input {
    display: flex;
    justify-content: center;
    margin: .5em;
    min-width: 15em;
}

.contact-form input {
    height: 2em;
    border-radius: 5px;
    padding-left: .5em;
}

.contact-form  input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.5em 0.75em;
    border-radius: 5px;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-bottom: 2px solid var(--secondary-color-light); 
}
.contact-form .submit {
    width: 100%;
    height: 3em;
    padding:.5em ;
    font-weight: bold;
}


.map-section {
    width: 100%;
    height: 25em;
    margin-top: 3em;
}

.map-section iframe {
    width: 100%;
    height: 25em;
}

@media screen and (max-width:600px) {
    .contact-info {
        border-radius: 10px;
        margin-bottom: 2.5em;
    }
    .contact-info p {
        flex-direction: column;
        justify-content: center;
        margin-top: 1em;
        text-align: center;
    }
    
}