@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,400;1,600&display=swap");
#map {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.btn-primary {
  background-color: #BF0811;
  border: solid 1px #BF0811;
  padding: 0.2rem 1rem;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
}
.btn-primary:hover {
  border: solid 1px #BF0811;
  background-color: #ffffff;
  color: #BF0811;
}

.line:hover {
  stroke: red;
}

.line2 {
  stroke: black;
  stroke-width: 4;
  fill: red;
}

.line3 {
  stroke: purple;
  stroke-width: 6;
  stroke-dasharray: 8, 12;
}

.line4 {
  stroke: black;
  stroke-width: 6;
  stroke-dasharray: 8, 2;
  fill: yellow;
}

.line5 {
  stroke: gold;
  stroke-width: 2;
  fill: yellow;
}

.shared_btn {
  background-color: #25d366;
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px;
}

.shared_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: bold;
}

.shared_btn a img {
  width: 25px;
  margin-right: 5px;
}

.property.lotes::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.property.lotes.Disponible::after {
  background-color: #25d366;
}

.property.lotes.Reservado::after {
  background-color: #FDAE4B;
}

.property.lotes.Comprado::after {
  background-color: #E34340;
}

.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
  border-top: 5px solid #5B5A5D;
}

body {
  background-color: #f1eeee;
  font-family: "Poppins", sans-serif;
}

a {
  color: #BF0811;
  text-decoration: none;
}
a:hover {
  color: #2b2b2b;
}

p {
  opacity: 1;
}

h1 {
  color: #BF0811;
  border-bottom: 0;
  font-weight: bold;
}

h2, h3, h4, h5 {
  color: #BF0811;
}

header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: rgba(255, 253, 253, 0.7411764706);
  transition: all ease-in-out 0.3s;
}
header.navbar-scrolled {
  transition: all ease-in-out 0.2s;
  background-color: #ffffff;
}
header nav.navbar {
  padding: 10px 0;
}
header nav.navbar ul.navbar-nav li a.nav-link {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
}
header nav.navbar ul.navbar-nav li a.nav-link.active {
  color: #BF0811;
}
header nav.navbar ul.navbar-nav li a.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 10px;
  height: 1px;
  background-color: #BF0811;
  width: 0;
  transition: all ease-in-out 0.4s;
}
header nav.navbar ul.navbar-nav li a.nav-link.active::after, header nav.navbar ul.navbar-nav li a.nav-link:hover::after {
  width: 40px;
  transition: all ease-in-out 0.2s;
}
@media only screen and (min-width: 990px) {
  header nav.navbar ul.navbar-nav li {
    padding: 10px 5px;
  }
}

.cumbre_banner {
  height: 100vh;
  position: relative;
  background-color: antiquewhite;
}
@media only screen and (min-width: 768px) {
  .cumbre_banner {
    height: 100vh;
    margin-top: 0;
  }
}
.cumbre_banner img, .cumbre_banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.cumbre_banner .text-content {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  z-index: 150;
}
.cumbre_banner .text-content h1, .cumbre_banner .text-content p {
  color: #fff;
  opacity: 1;
  font-weight: bold;
}
.cumbre_banner .text-content p {
  font-size: 1.8rem;
}
@media only screen and (min-width: 612px) {
  .cumbre_banner .text-content h1 {
    font-size: 2.7rem;
  }
  .cumbre_banner .text-content p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .cumbre_banner .text-content h1 {
    font-size: 4.5rem;
  }
  .cumbre_banner .text-content p {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .container-fluid {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.float_cta {
  position: fixed;
  right: 30px;
  bottom: 85px;
  padding: 0;
  background-color: rgba(191, 8, 17, 0.7058823529);
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  z-index: 999;
}
@media only screen and (min-width: 720px) {
  .float_cta {
    bottom: 45px;
  }
}
.float_cta h3 {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
.float_cta .icon {
  width: 50px;
  height: 50px;
  background-color: #36BB22;
  border-radius: 50%;
  position: absolute;
  left: -35px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  color: #ffffff;
  font-size: 2.2rem;
}
.float_cta .icon img {
  width: 65%;
  height: 65%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 1100px) {
  .float_cta {
    right: 50px;
  }
  .float_cta h3 {
    font-size: 1.5rem;
  }
}

.float_notifications {
  width: 220px;
  position: absolute;
  right: 30px;
  top: 25%;
  text-align: center;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7294117647);
  border-radius: 16px;
  padding: 15px;
}
.float_notifications .close_btn {
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 9px;
  top: 9px;
  color: #BF0811;
  border-radius: 50%;
  border: none;
  font-size: 18px;
}
.float_notifications.hide_notification {
  display: none;
}
.float_notifications h2 {
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
.float_notifications p {
  font-size: 1rem;
  margin: 10px 0 0;
  line-height: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .float_notifications {
    top: 60%;
    right: 16%;
  }
}
@media only screen and (min-width: 1100px) {
  .float_notifications {
    width: 276px;
  }
  .float_notifications h2 {
    font-size: 2.5rem;
  }
}

.cumbre_section {
  padding: 50px 0;
}
@media only screen and (min-width: 720px) {
  .cumbre_section {
    padding: 100px 0;
  }
}

.great_title {
  font-size: 3rem;
  color: #BF0811;
  font-weight: bold;
  margin: 0;
  border: 0;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: lighter;
  margin: 15px 0 25px;
  opacity: 1;
  line-height: 1.7rem;
}
@media only screen and (min-width: 720px) {
  .subtitle {
    font-size: 1.5rem;
  }
}

.btn-section {
  text-align: center;
  margin: 25px 0 0 0;
}
.btn-section img {
  margin-right: 10px;
  margin-left: -20px;
}

.btn.btn-primary.cumbre {
  background-color: #BF0811;
  border-radius: 12px;
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.8rem 2.5rem;
}

.divider span {
  display: inline-block;
  width: 50%;
  background-color: #BF0811;
  height: 4px;
}

.wrapper .navigation {
  background-color: rgba(255, 255, 255, 0.662745098);
  z-index: 9999;
  transition: all ease-in-out 0.3s;
  /* Cambio de color al hacer scroll */
}
.wrapper .navigation .navbar .navbar-nav > li a {
  font-size: 1.8rem;
  color: #2a2a2a;
  opacity: 1;
  font-weight: bold;
}
.wrapper .navigation .navbar .navbar-nav > li.active a::after {
  background-color: #BF0811;
  width: 30px;
}
.wrapper .navigation.navbar-scrolled {
  background-color: rgba(42, 42, 42, 0.7607843137); /* Color negro transparente */
}
.wrapper .navigation.navbar-scrolled .navbar .navbar-nav > li a {
  color: #ffffff;
}

.geo-location-wrapper {
  display: none;
}

#social_rounded {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#social_rounded .agent-social {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 5px;
}
#social_rounded .agent-social a {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #BF0811;
  background-color: #fff;
  font-size: 20px;
  line-height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
}
#social_rounded .agent-social a img {
  width: 65%;
  height: 65%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.adds-info-siler {
  padding: 70px 0;
}

.slider-container {
  position: relative;
}

.box-item-slider {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  height: 450px;
}
.box-item-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.box-item-slider .text-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}
.box-item-slider .text-content .great_title {
  text-align: center;
  font-size: 80px;
  margin: 0;
  line-height: 85px;
}
.box-item-slider .text-content .square {
  background-color: #BF0811;
  padding: 1rem;
  width: 300px;
  margin: 0 auto;
}
.box-item-slider .text-content .square p {
  font-size: 20px;
  padding: 0;
  margin: 0;
}
.box-item-slider .text-content p {
  font-weight: bold;
  font-size: 2rem;
  margin: 1px 0;
}
@media only screen and (max-width: 668px) {
  .box-item-slider .text-content .square {
    width: 220px;
  }
  .box-item-slider .text-content p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 720px) {
  .box-item-slider.contain-box {
    border-radius: 15px;
    height: auto;
  }
  .box-item-slider.contain-box img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .box-item-slider.contain-box .text-content {
    display: none;
  }
}

.owl-theme .owl-nav {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  color: #BF0811;
  background-color: rgba(255, 255, 255, 0.6039215686);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.owl-carousel .owl-nav button.owl-prev span {
  line-height: 0.5;
  font-size: 5rem;
  margin: -8px 3px 0 0;
}

.owl-carousel .owl-nav button.owl-next span {
  line-height: 0.5;
  font-size: 5rem;
  margin: -7px -3px 0 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #BF0811;
  color: #FFF;
  text-decoration: none;
}

.cumbre_loteamiento_view {
  border: solid 1px #f1eeee;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.cumbre_loteamiento_view.cumbre_loteamiento_view {
  padding-top: 20px;
  padding-bottom: 5px;
}

.property.lotes {
  padding: 1em;
  text-align: center;
  background-color: #BF0811;
}
.property.lotes .property-status {
  display: inline-block;
  margin: 0 auto 5px auto;
  background-color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7rem;
}
.property.lotes .shared_btn {
  padding: 5px 0;
  margin: 5px 0 0 0;
}
.property.lotes .info h3, .property.lotes .info figure {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
  text-align: left;
}
.property.lotes .info h3 {
  margin-bottom: 10px;
}

.leaflet-container a.leaflet-popup-close-button {
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  font-weight: bold;
  top: 6px;
  right: 1px;
}

.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
  border-top: none !important;
}

.shared_btn a img {
  width: 20px !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background-color: #BF0811;
}

.line_services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin-top: 40px;
  padding: 0 70px;
}
.line_services .container::after, .line_services .container::before {
  display: none;
}
.line_services .box_services {
  text-align: center;
  display: block;
  position: relative;
  z-index: 50;
}
.line_services .box_services img {
  height: 40px;
  width: auto;
  margin: 10px auto;
}
.line_services .box_services .doc {
  width: 14px;
  height: 14px;
  background-color: #BF0811;
  border-radius: 50%;
  margin: 10px auto;
  z-index: 5;
}
.line_services .box_services .doc::after, .line_services .box_services .doc::before {
  content: "";
  width: 50%;
  height: 10px;
  background-color: #e4c206;
  position: absolute;
  top: 72px;
  z-index: -1;
}
.line_services .box_services .doc::after {
  left: 0;
}
.line_services .box_services p {
  opacity: 1;
  font-size: 13px;
  font-weight: bold;
  color: #BF0811;
  max-width: 150px;
  margin: 0 auto;
}
.line_services .box_services:first-child .doc::after {
  border-radius: 5px 0 0 5px;
}
.line_services .box_services:last-child .doc::before {
  border-radius: 0 5px 5px 0;
}
.line_services.counter {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.line_services.counter .box_counter {
  width: 250px;
  height: 200px;
  background-color: #BF0811;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
}
.line_services.counter .box_counter p {
  color: #f1eeee;
  font-size: 1.5rem;
  margin: 0;
}
.line_services.counter .box_counter p.great {
  color: #e4c206;
  font-size: 10rem;
  line-height: 10rem;
}

.section-map {
  width: 100%;
  padding: 10px;
  margin-top: 80PX;
}
@media only screen and (min-width: 1204px) {
  .section-map .col {
    height: 550px;
  }
}
.section-map .map #map {
  margin: 0;
  height: 550px !important;
}
.section-map > div:first-child {
  padding: 0;
  border-radius: 0 0 0 16px;
  overflow: hidden;
}
.section-map > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.section-map > div:first-child .btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  bottom: 50px;
  width: 180PX;
}
.section-map > div:last-child {
  padding: 0;
  border-radius: 0 0 16px 0;
  overflow: hidden;
}

.news-launch-slider {
  display: flex;
  flex-wrap: nowrap;
}
.news-launch-slider .box-launch {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 450px;
  height: 300px;
  margin-right: 30px;
}
.news-launch-slider .box-launch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-launch-slider .box-launch .content {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 50;
}
.news-launch-slider .box-launch .content h4 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: solid 1px #FFFFFF;
  color: #BF0811;
  margin: 0 0 5px 0;
}
.news-launch-slider .box-launch .content p {
  font-size: 15px;
  font-weight: bold;
  opacity: 1;
  color: #FFFFFF;
}

#page-footer {
  display: block;
}

.popup_form {
  min-width: 300px;
  max-height: 500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25%;
  margin: auto 0;
  background-color: rgba(235, 235, 235, 0.874);
  border-radius: 16px;
  padding: 20px;
  visibility: hidden;
  border: solid 1px rgba(191, 8, 17, 0.5882352941);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  z-index: 999;
}
.popup_form .close_btn {
  background-color: #000000;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -6px;
  top: -13px;
  color: #ffffff;
  border-radius: 50%;
  border: none;
  font-size: 23px;
}
.popup_form form {
  display: none;
}
.popup_form form button {
  width: 100%;
  margin-top: 30px;
}
.popup_form.show_form {
  transition: all ease-in-out 0.3s;
  visibility: visible;
}
.popup_form.show_form form {
  display: block;
}
.popup_form .great_title {
  font-size: 30px;
  text-align: center;
  margin: 0;
}
.popup_form .subtitle {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  text-align: center;
}

.new_blog .container-fluid .great_title_content {
  border-top: solid 1px #BF0811;
  padding-top: 50px;
}
.new_blog .blog_content {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 50px;
}
@media only screen and (min-width: 604px) {
  .new_blog .blog_content {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .new_blog .blog_content {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.new_blog .blog_content .box_blog {
  padding: 15px;
  margin: 15px 0;
  border-radius: 20px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
}
.new_blog .blog_content .box_blog .feature_box {
  width: 100%;
  height: 250px;
  background-color: #2b2b2b;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.new_blog .blog_content .box_blog .feature_box img, .new_blog .blog_content .box_blog .feature_box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.new_blog .blog_content .box_blog .feature_box .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  color: #ffffff;
  font-size: 4rem;
}
.new_blog .blog_content .box_blog .title {
  color: #BF0811;
  font-size: 21px;
  font-weight: bold;
  margin-top: 20px;
}
.new_blog .blog_content .box_blog p {
  font-size: 16px;
}
.new_blog .blog_content .box_blog .text-center {
  margin-top: 30px;
}
@media only screen and (min-width: 720px) {
  .new_blog .blog_content .box_blog {
    padding: 30px;
  }
}

.fraction_content {
  background-color: #fff;
  border-radius: 32px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.fraction_content .overlay {
  position: absolute;
  left: 0;
  top: -100%;
  background-color: rgba(244, 244, 244, 0.6039215686);
  width: 100%;
  height: 100%;
  transition: all ease-in-out 0.1s;
}
@media only screen and (max-width: 1024px) {
  .fraction_content .overlay {
    height: 97px;
    top: inherit;
    bottom: -3px;
  }
}
.fraction_content .overlay .container-fluid {
  height: 100%;
}
.fraction_content .overlay .container-fluid .row {
  height: 100%;
}
.fraction_content .overlay a.btn-primary {
  width: 200px;
}
@media only screen and (min-width: 1024px) {
  .fraction_content:hover .overlay {
    transition: all ease-in-out 0.3s;
    top: 0;
  }
}
.fraction_content .item {
  padding: 5px;
  font-weight: bold;
  font-size: 0.8rem;
}
.fraction_content .item img {
  max-width: 50px;
  width: 80%;
  margin: 0 auto;
}
.fraction_content .feature-content {
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
}
.fraction_content .feature-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media only screen and (max-width: 604px) {
  .fraction_content .feature-content {
    border-radius: 0;
    height: 300px;
  }
}

footer {
  border-radius: 32px;
  background-color: #ffffff;
}
footer div[class^=col-md]:first-child {
  border-right: solid 2px #BF0811;
}
footer div[class^=col-md]:nth-child(2) {
  border-left: solid 2px #BF0811;
}
footer .footer-logo img {
  width: 100%;
  max-width: 180px;
}

.footer-social-icon {
  margin: 25px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
}
@media only screen and (max-width: 604px) {
  .footer-social-icon {
    justify-content: center;
  }
}
.footer-social-icon p {
  margin: 0 20px 0 0;
}
.footer-social-icon a {
  width: 35px;
  height: 35px;
  background-color: #fff;
  margin: 0 3px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: solid 1px #BF0811;
  transition: all ease-in-out 0.3s;
}
.footer-social-icon a img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer-social-icon a:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: solid 1px #2a2a2a;
}
.footer-social-icon.contact-view {
  justify-content: start;
  margin: 15px 0 0 0;
}
.footer-social-icon.contact-view a {
  width: 45px;
  height: 45px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact-info a {
  margin: 5px 0;
  display: flex;
  align-items: center;
}
.contact-info a .icon {
  margin: 0 10px 0 0;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.contact-info a img {
  width: 35px;
}
.contact-info.contact-view a img {
  width: 20px;
}

.icons-services {
  padding: 39px 0 !important;
  margin: 50px 0;
  border-top: solid 2px #BF0811;
}
.icons-services .icon {
  width: 60px;
  height: 60px;
  background-color: #BF0811;
  border-radius: 50%;
  margin: 0 auto;
  margin: 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons-services .icon img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.content-internas {
  padding-top: 100px;
}

.btn-general {
  background-color: #BF0811;
  padding: 7px 18px;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  margin: 10px 5px;
  border: solid 1px #BF0811;
  transition: all ease-in-out 0.3s;
}
.btn-general:hover {
  background-color: #ffffff;
  color: #BF0811;
}

section.cta-int {
  padding: 30px 0;
  color: #ffffff;
  font-weight: bold;
  overflow: hidden;
  margin: 50px 0;
}
section.cta-int p {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  color: #2a2a2a;
  margin: 15px 0;
}
@media only screen and (max-width: 604px) {
  section.cta-int p {
    justify-content: center;
  }
}
section.cta-int p .icon img {
  width: 50px;
  height: auto;
  margin: 0 10px 0 0;
}

.nav.nav-tabs {
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 0;
}
.nav.nav-tabs .nav-item {
  padding: 5px 50px;
}
.nav.nav-tabs .nav-item .nav-link {
  color: #000000;
  font-weight: bold;
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
}
.nav.nav-tabs .nav-item .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #BF0811;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all ease-in-out 0.3s;
}
.nav.nav-tabs .nav-item .nav-link.active::after, .nav.nav-tabs .nav-item .nav-link:hover::after {
  width: 55%;
}

.form-content {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 32px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.form-control {
  border: solid 1px #BF0811 !important;
  border-radius: 8px;
}/*# sourceMappingURL=main.css.map */