* {
  margin: 0;
  padding: 0;
  border: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #192640;
  overflow-x: hidden;
}

.content {
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  padding: 50px 25px;
}
.content h4 {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
.content h5 {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.overflow-hidden {
  overflow: hidden;
}

.modal {
  background-color: rgba(46, 46, 46, 0.5019607843);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal.active {
  display: flex;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.modal_content {
  max-width: 500px;
  background-color: #fff;
}
.modal_content_header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #192640;
  padding: 15px;
  padding-bottom: 0;
  box-sizing: border-box;
}
.modal_content_header h4 {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.modal_content_header button {
  background-color: transparent;
  color: #192640;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 27px;
}
.modal_content_header button:hover {
  background-color: #192640;
  color: #fff;
}
.modal_content_body {
  padding: 15px 25px;
}
.modal_content_body img {
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  margin-bottom: 1rem;
}
.modal_content_body_alert {
  font-size: 18px;
  padding: 25px;
  text-align: center;
}

.btn {
  font-family: "Libre Baskerville", serif;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid transparent;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 700;
}

.btn_lg {
  font-size: 28px;
}
@media only screen and (max-width: 799px) {
  .btn_lg {
    font-size: 22px;
  }
}

.btn_gold {
  background-color: transparent;
  border: 2px solid #F2CF66;
  color: #F2CF66;
}
.btn_gold:hover {
  background-color: #F2CF66;
  color: #192640;
}

.btn_blue {
  background-color: #192640;
  color: #F2CF66;
}
.btn_blue:hover {
  background-color: #F2CF66;
  color: #192640;
}

.btn_green {
  background-color: #25D366;
  color: #fff;
  border: 2px solid transparent;
}
.btn_green:hover {
  background-color: transparent;
  color: #25D366 !important;
  border: 2px solid #25D366 !important;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.whatsapp-button img {
  width: 100%;
  height: auto;
}

.banners {
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  z-index: -999;
}
.banners .banner {
  width: 100%;
  height: calc(100vh - 70px);
}
.banners .banner .background {
  background-position: center;
  background-size: cover;
}
footer {
  margin-top: 20px;
  margin-bottom: 20px;
}
footer .content {
  padding: 0 25px !important;
}
footer .subtitle {
  text-align: center;
  font-size: 10px;
}
footer .copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 14px;
}

.alert {
  display: none;
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #192640;
  z-index: 999;
}
header .content {
  padding: 0 25px !important;
}
header .menu {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu .logo {
  font-family: "Libre Baskerville", serif;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}
header .menu .menu-list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .menu .menu-list li a {
  font-size: 14px;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border: 2px solid transparent;
}
header .menu .menu-list li a:hover {
  color: #F2CF66;
}
header .menu .menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}
header .menu .menu-toggle .hamburger {
  color: #fff;
}

@media only screen and (max-width: 799px) {
  header .menu .menu-list {
    display: none;
  }
  header .menu .menu-toggle {
    display: block;
  }
  header .menu .menu-list.open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #192640;
    z-index: 9999;
  }
  header .menu .menu-list.open li {
    display: block;
    padding: 10px 25px;
  }
  header .menu .menu-list.open li a {
    padding: 10px;
    color: #fff;
  }
}
.container .header {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.container .header .content {
  padding: 0 25px !important;
}
.container .header_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 799px) {
  .container .header_text {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 799px) {
  .container .header_text_redirect {
    margin: 0 auto;
  }
}
.container .header_text_title {
  font-family: "Libre Baskerville", serif;
  color: #F2CF66;
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 799px) {
  .container .header_text_title {
    font-size: 32px;
  }
}
.container .header_text_subtitle {
  color: #fff;
  font-size: 22px;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 799px) {
  .container .header_text_subtitle {
    font-size: 16px;
  }
}
.container .header .color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #192640;
  opacity: 0.9;
  z-index: -998;
}
.container .header .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -999;
}
.container .about {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 799px) {
  .container .about {
    flex-direction: column;
  }
}
.container .about_image {
  padding-right: 25px;
}
@media only screen and (max-width: 799px) {
  .container .about_image {
    padding-right: 0;
    padding-bottom: 25px;
    margin: 0 auto;
  }
}
.container .about_image img {
  max-width: 250px;
  max-height: 250px;
  border-radius: 50%;
}
.container .about_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 25px;
}
@media only screen and (max-width: 799px) {
  .container .about_text {
    padding-left: 0;
  }
}
.container .about_text_title {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}
.container .about_text p {
  font-size: 18px;
}
@media only screen and (max-width: 799px) {
  .container .about_text p {
    text-align: center;
  }
}
.container .services .card {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 75px;
}
@media only screen and (max-width: 799px) {
  .container .services .card {
    flex-direction: column;
  }
}
.container .services .card_box {
  position: relative;
  background-color: #C5C8C9;
  width: 30%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  box-sizing: border-box;
}
@media only screen and (max-width: 799px) {
  .container .services .card_box {
    width: 100%;
    margin-top: 100px;
  }
  .container .services .card_box:first-child {
    margin-top: 0;
  }
}
.container .services .card_box .icon {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #192640;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container .services .card_box .icon img {
  width: 75px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.container .services .card_box .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .services .card_box .text_title {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 27px;
}
.container .services .card_box .text_description {
  height: 170px;
  text-align: center;
}
.container .services_redirect {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.container .locale {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 799px) {
  .container .locale {
    flex-direction: column;
  }
}
.container .locale_box {
  width: 50%;
  padding: 0 25px;
  box-sizing: border-box;
}
@media only screen and (max-width: 799px) {
  .container .locale_box {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.container .locale_box .thumb {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.container .locale_box .thumb img {
  width: 100%;
  height: 100%;
}
.container .locale_box .city {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 700;
}
.container .locale_box .address {
  margin-top: 1rem;
  font-size: 18px;
}
.container .contact {
  width: 100%;
  height: auto;
}
.container .contact_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 75px;
}
@media only screen and (max-width: 799px) {
  .container .contact_links {
    flex-direction: column;
  }
}
.container .contact_links_box {
  width: 33%;
}
.container .contact_links_box:first-child {
  width: 100%;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 799px) {
  .container .contact_links_box {
    width: 100%;
    margin-bottom: 2rem;
  }
  .container .contact_links_box:last-child {
    margin-bottom: 0;
  }
}
.container .contact_links_box .icon {
  position: relative;
  background-color: #192640;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 799px) {
  .container .contact_links_box .icon {
    width: 60px;
    height: 60px;
  }
}
.container .contact_links_box .icon img {
  width: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 799px) {
  .container .contact_links_box .icon img {
    width: 30px;
  }
}
.container .contact_links_box .title {
  text-align: center;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #192640;
}
@media only screen and (max-width: 799px) {
  .container .contact_links_box .title {
    font-size: 12px;
    margin-top: 1rem;
  }
}
.container .contact .form {
  max-width: 640px;
  margin: 0 auto;
}
.container .contact .form h5 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}
.container .contact .form_title {
  text-align: center;
}
.container .contact .form_box {
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}
.container .contact .form_box input, .container .contact .form_box textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  padding: 13px 23px;
  font-size: 14px;
  margin-bottom: 1rem;
  color: #192640;
  background-color: #C5C8C9;
  box-sizing: border-box;
  resize: none;
  border: 2px solid transparent;
}
.container .contact .form_box input::-moz-placeholder, .container .contact .form_box textarea::-moz-placeholder {
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
  color: #192640;
}
.container .contact .form_box input::placeholder, .container .contact .form_box textarea::placeholder {
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
  color: #192640;
}
.container .contact .form_box input:focus, .container .contact .form_box textarea:focus {
  border: 2px solid #192640;
  outline: none;
}
.container .contact .form_box button {
  text-transform: uppercase;
  font-weight: 700;
}