main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

.content{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 2rem;

    flex: 1 1 100%;

    height: 100%;
}

.map{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 50rem;
}

.map span{
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 50rem;
    margin-bottom: 2rem;
}

iframe{
    height: 100%;
    width: 100%;
    border: 0;
}

form{
    display: grid;
    place-items: center;
    width: 50%;
    min-width: 32rem;
    padding: 2rem;

    background-color: var(--white);
    border-radius: 8px;
}

form span{
    font-size: 2.9rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: var(--montserrat);
}

form input, textarea{
    width: 80%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid var(--primary);
    outline: none;
    margin-bottom: 2rem;
}

form input::placeholder, textarea::placeholder{
    color: var(--light-gray);
    font-size: 1.3rem;
}

form input:focus, form textarea:focus{
    border-bottom: 2px solid var(--secondary);
    color: var(--primary);
}

form button{
    padding: 1.5rem 2.3rem;
    outline: none;
    color: var(--white);
    font-size: 1.6rem;
    font-family: var(--montserrat);
    font-weight: 600;
    background-image: linear-gradient(to left, rgb(115, 25, 51), rgb(83, 5, 27));
    border: 2px solid var(--dark);
    border-radius: 8px;
    transition: all .3s;
    /* 115, 25, 51, 5, 63, 198 , rgb(115, 25, 51), rgb(179, 53, 88)*/
}

form button:hover{
    box-shadow: 5px 5px 1px rgba(0,0,0,0.5);
    cursor: pointer;
}

form button:focus{
    box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

textarea{
    resize: none;
}

@media (max-width: 1040px){
    .content {
        justify-content: center;
    }

    form{
        margin: 5rem 0 5rem 0;
    }
}

@media (max-width: 729px){
    section.content{
        height: calc(100% - 85.63px);
    }
}

@media (max-width: 550px){
}

#preloader{
    margin-bottom: 2rem;
}

.sk-chase + span {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.sk-chase {
width: 40px;
height: 40px;
position: relative;
animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0; 
animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
content: '';
display: block;
width: 25%;
height: 25%;
background-color: var(--primary);
border-radius: 100%;
animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
50% {
    transform: scale(0.4); 
} 100%, 0% {
    transform: scale(1.0); 
} 
}