<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

body, html {
    background: white;
}

.navbar{
    position: sticky;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    box-shadow: -2px 5px 13px #9e9e9e69;
}

.container_logo{
    margin: 5px;
}

.logo{
    height: 90px;
}

.container_items{
    width: auto;
    display: flex;
}

ul{
    display: flex;
    flex-direction: row;
    margin: 5px;
    list-style: none;
    padding: 10px;
}

.nav-item{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nav-link{
    color: #03658C !important;
}

.nav-item:hover{
    background-color: #03658C;
    color: white !important;
}

.nav-item:active{
    background-color: #03658C;
    color: white !important;
}

.nav-link:hover{
    color: white !important;
}

.container_info{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),url('./img/Fondo2.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 85vh;
    justify-content: space-evenly;
    text-align: center;

   
}

H1{
    font-size: xxx-large;
    color: white;
    font-weight: 700;
}

p{
    color: white; 
}

.buttons{
    display: flex;
    justify-content: space-evenly;
}

button{
    background-color: white;
    color: #03658C !important;
}

button:hover{
    background-color: #03658C !important;
    color: white !important;
}

.title{
    color: #03658C;
    margin: 5%;
}

.dropdown-item.active{
    background-color: #03658C !important;
    color: white !important;
}

.container_info_div{
    overflow: hidden;
    width: 50%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: coral; */
}

.container_img{
    margin: 5%;
}
.container_img img{
    display: flex;
    justify-content: center;
    height: 70vh;
    border-radius: 50%;
    position: absolute;
}

.container_img .cricular{
    /* height: 30px; */
    position: relative;
}

.container_info_div_form{
    display: flex;
    flex-direction: column;
    background-color: aqua;
    height: 100%;
}

.btn-send{
    background-color: #75AABF !important;
    color: white !important;
    padding: 5%;
    border-radius: 10vh;
    font-weight: 600;
}</pre></body></html>