@import url("/assets/css/bootstrap.min.css");
@import url("/assets/css/reset.css");
@import url("/assets/css/form.css");
@import url("/assets/css/calculadora.css");
@import url("/assets/css/confirm.css");

:root {
    --background-img: url(../img/background.webp);
}

.contact-section,
.calc-section {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.50) 0%, rgba(34, 34, 34, 0.50) 35%), var(--background-img);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 5rem 0;
}

.calc-section .logo,
.contact-section .logo {
    width: 15rem;
    margin: 1.5rem auto;
    display: block;
}

.calc-section h1,
.contact-section h1 {
    color: #fff;
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.calc-section hr,
.contact-section hr {
    border: .3rem solid var(--color-primary);
    margin: 0 auto 2rem;
}

.calc-section h3 {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 500;
    margin-bottom: 2rem;
}

.calc-section .form-header {
    color: whitesmoke;
    font-size: var(--font-size-md);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.contact-section ul {
    color: white;
}

.contact-section ul li {
    font-size: var(--font-size-md);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.calc-section .blue-box {
    background-color: rgba(89, 197, 224, 0.50);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 5rem;
}

.calc-section a {
    background-color: rgba(89, 197, 224, 0.50);
    color: white;
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50%;
    text-align: center;
}

.calc-section a:hover {
    background-color: var(--color-primary);
}

.contact-section a {
    background-color: var(--color-primary);
    color: white;
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50%;
    text-align: center;
    margin: 2rem auto;
    display: block;
}

.contact-section a:hover {
    background-color: var(--color-secondary);
}

.contact-section p {
    color: white;
    font-size: var(--font-size-lg);
    line-height: normal;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
}

#calculadora {
    background-color: rgba(89, 197, 224, 0.596);
}

#calculadora .btn {
    background-color: transparent;
    border: 2px solid black;
    border-radius: 50%;
    height: 5rem;
    color: black;
    font-size: var(--font-size-md);
}

#calculadora p {
    color: white;
    font-size: var(--font-size-md);
    font-family: var(--font-secondary);
    font-weight: 500;
}

#calculadora #montos,
#calculadora h4 {
    color: white;
}

#formulario {
    background-color: rgba(255, 255, 255, 0.25);
}

#formulario label {
    color: whitesmoke;
    font-weight: 500 !important;
}

#formulario input,
#formulario select,
#formulario textarea {
    border-radius: 10rem;
}

#formulario .conditions {
    color: white;
    font-size: var(--font-size-sm);
    font-family: var(--font-secondary);
    font-weight: 500;
}

@media (width >=1200px) {}
