@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
.logo {
    max-width: 200px;
}

.text-custom {
    color: #3535A7;
}

.bg-custom {
    background-color: #3535A7;
}

header .links a {
    color: #3535A7;
    font-weight: bold;
    padding: 0 0.5rem;
    text-decoration: none;
}

.networks {
    display: flex;
    align-items: center;
}

.networks a {
    color: black;
    text-decoration: none;
    font-size: 1.5rem !important;
    padding: 0.5rem !important;
}

.form-control {
    border-radius: 0;
}

.navbar {
    background-color: #3535A7;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: bold;
    padding: 1rem !important;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    background-color: white;
    color: #3535A7;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eee;
    border: thin solid lightgray;
    box-shadow: 0px 0px 3px #dfdfdf inset;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border: thin solid gray;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
}

.contact_fixed {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact_fixed a {
    color: white;
    text-decoration: none;
    margin: 0.2rem 0.5rem;
    border: 2px solid white;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

.contact_fixed a:hover {
    opacity: .7;
}

.contact_fixed .whatsapp {
    padding: 0.5rem 1rem;
    background-color: #00A051;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 30px;
}

.contact {
    position: fixed;
    bottom: 0;
    left: 20px;
    width: 25vw;
    z-index: 9999;
    background: white;
    border-top: 4px solid #3535A7;
    border-right: 4px solid #3535A7;
    border-left: 4px solid #3535A7;
}

.contact .open {
    color: #3535A7;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.contact {
    transition: all .2s ease-in-out;
}

.contact:hover {
    transform: scale(1.05);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}


/* 
.contact form {
    display: none;
}

.contact:hover form {
    display: block;
} */

.contact form input[type=text],
.contact form textarea {
    border-radius: 0;
    border: 2px solid #3535A7;
    margin: 1rem 0 !important;
}

.contact form input[type=submit] {
    border-radius: 0;
}