.navbar {
    background:white;
    padding-left: 80px;
    padding-right: 80px;
    font-size: 16px;
}
.nav-link,
.navbar-brand {
    color: #1D6B7E;
    cursor: pointer;
    font-weight: 700;
}

.navbar-toggler-icon {
    color: #000;
    background-color: #145AB1;
}

.nav-link {
    margin-right: 1em !important;
}
.nav-link:hover {
    color: #000;
}
.navbar-collapse {
    justify-content: flex-end;
}

.justify{
    text-align: justify;
}

ul {
    text-align: justify;
}

.calltoaction {
    background-color: #145AB1;
    padding: 10px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    width: 70%;
    margin: auto;
    border-radius: 10px;
}

img {
    border-radius: 20px;
}

.secciongris {
    background-color: #F4F5F8;
}

h1 {
    color: #1D6B7E;
}

h2 {
    color: #1D6B7E;
    font-weight: 600;
}

h3 {
    color: #1D6B7E;
}


form {
    display: inline-block;
    background-color: #1d6b7e;
    padding: 30px;
    border-radius: 20px;
    color: white;
    
    
}


label {
    
    margin-bottom: -1px;
    margin-top: 5px;
    
}

input,
textarea {
  /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
  font: 1em sans-serif;
  /* Uniform text field size */
  width: 100%;
  box-sizing: border-box;
  /* Match form field borders */
  border: 1px solid #999;
  border-radius: 10px;
  height: 40px;
}

input:focus,
textarea:focus {
  /* Additional highlight for focused elements */
  border-color: #000;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;
  /* Provide space to type some text */
  height: 8em;
}

.button {
  /* Align buttons with the text fields */
  padding-left: 90px; /* same size as the label elements */
  
}

button {
  /* This extra margin represent roughly the same space as the space
     between the labels and their text fields */
  margin-left: 0.5em;
  background-color: green;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  width: 30%;
  height: 40px;
}

button:hover {
    background-color: green;
}

a {
    color: #2942BC;
}