html, body {
font-family: 'IBM Plex Sans', sans-serif;
-ms-flex:1;
}
h1, h2, h3, h4, h5, h6 {
  margin:0;
  padding:0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300 !important;
}
h2 {
  font-size: 52px;
  line-height: 64px;
}
h3 {
  font-size:38px;
  line-height: 46px;
}
h4 {
  font-size: 31px;
  line-height: 37px;
}
h5 {
  font-size: 30px;
  line-height: 37px;
}
h6 {
  font-size: 30px;
  line-height: 36px;
}
p, a, button {
  font-weight: 300 !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
}
.btn_custom, .btn__custom {
  color:black;
  border:1px solid black;
  background-color:transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding:.375rem .75rem;
  font-size: 11px;
  line-height: 13px;
  transition:all .3s;
  -webkit-transition:all .3s;
  -moz-transition: all .3s;
}
.btn_custom:hover,
.btn__custom:hover {
  outline:0;
  -webkit-box-shadow:none;
  -moz-box-shadow:none;
  box-shadow:none;
  opacity: 1;
  background-color: #A4D4A2;
  border-color:#A4D4A2;
  text-decoration: none;
  color:black;
}
.bg_dark {
  background-color:#383839;
}
.bg_light {
  background-color:#EDE5DE;
}
a {
  -webkit-transition:all .3s;
     -moz-transition:all .3s;
          transition:all .3s;
}
a:focus, input:focus, button:focus, button:hover, button {
  outline:0;
  outline-color:transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-box-shadow:none;
     -moz-box-shadow:none;
          box-shadow:none;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  font-size: 12px !important;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance:none;
}
input[type=number]{
  -moz-appearance:textfield;
}
.owl-prev:hover,
.owl-next:hover {
  color:#A4D4A2 !important;
}

/*******************************************************************************
                                LOADER
*******************************************************************************/
.overlay_loader {
  position: fixed;
  top:0;
  right:0;
  bottom:0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: .9;
}
.lds-ring {
  width: 64px;
  height: 64px;
  display: inline-block;
  position:fixed;
  top:0;
  left: 0;
  right: 0;
  bottom:0;
  z-index: 1050;
  margin:auto;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #A4D4A2;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #A4D4A2 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*******************************************************************************
                                    HEADER
*******************************************************************************/
:root {
  --mainColor: #fff;
}
:root {
  --backColor: #A4D4A2;
}
.navbar {
  padding: 10px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  transition:all .3s;
}
.navbar .navbar-brand {
  padding:0;
  margin:0;
  max-width: 120px;
}
@media (min-width:768px) and (max-width:1023px) {
  .navbar .navbar-brand {
    max-width: 100px;
  }
}
.navbar #main-menu li {
  position: relative;
  margin:
}
  .navbar #main-menu li a {
    text-transform: uppercase;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    background: linear-gradient(to bottom, var(--mainColor) 0%, var(--mainColor) 0%);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 0;
    color: #000;
    text-decoration: none;
    transition: background-size .2s;
    padding-bottom:0;
    margin: 0 10px;
  }
  .navbar #main-menu li a:hover,
  .navbar #main-menu li a:focus,
  .navbar #main-menu li.active a {
    background-size: 1px 10px;
  }
.navbar.navbar-transparent {
  background-color:transparent;
}
  .navbar.navbar-transparent #main-menu li a {
    color:white;
    background:linear-gradient(to bottom, var(--backColor) 0%, var(--backColor) 0%);
    background-position:bottom;
    background-repeat: repeat-x;
    background-size:0;
    transition: background-size .2s;
  }
  .navbar.navbar-transparent #main-menu li a:hover,
  .navbar.navbar-transparent #main-menu li a:focus {
    background-size:1px 10px;
  }
.navbar.navbar-color {
  background-color:#EDE5DE;
  -webkit-box-shadow:0px 2px 4px rgba(0,0,0,0.2);
     -moz-box-shadow:0px 2px 4px rgba(0,0,0,0.2);
          box-shadow:0px 2px 4px rgba(0,0,0,0.2);
}
.navbar.navbar-color #main-menu li a {
  color:black;
}
@media (min-width:768px) {
  header {
    min-height: 80px;
  }
}
.navbar-toggler {
  border:1px solid transparent;
  border-radius:5rem !important;
  width: 45px;
  height: 45px;
}
.navbar-toggler:focus {
  outline:0 !important;

}
.navbar-transparent .navbar-toggler {
  background-color:rgba(0,0,0,.5);
  color:white;
}
.navbar-color .navbar-toggler {
  background-color:transparent;
  color:black;
  border-color:black;
}
@media (max-width:767px) {
  .navbar {
    padding:0 10px;
    -webkit-transition:none;
    -moz-transition:none;
    transition:none;
  }
  .navbar .navbar-brand {
    max-width:100px;
  }
  #menu-Princial.fade {
    -webkit-transform:scale(0);
    -moz-transform:scale(0);
    transform:scale(0);
    -webkit-transition:all .2s;
    -moz-transition:all .2s;
    transition:all .2s;
  }
  #menu-Principal.fade.in {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }
  #menu-Principal .modal-dialog {
    margin:0;
  }
  #menu-Principal .modal-content {
    width: 100%;
    min-height: 100vh;
  }
  #menu-Principal .modal-header {
    border-bottom:0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background-color:#EDE5DE;
  }
    #menu-Principal .modal-header .brand {
      width: 100%;
      height: auto;
      max-width: 100px;
    }
    #menu-Principal .modal-header .close_menu {
      background:transparent;
      border-radius: 5rem;
      width: 45px;
      height: 45px;
      border:1px solid black;
      color:black;
    }
  #menu-Principal .modal-body {
    color:black;
    background-color:#EDE5DE;
  }
  #menu-Principal .modal-body .menu-mobile li {
    padding:5px 0;
    position: relative;
  }
    #menu-Principal .modal-body .menu-mobile .nav-link {
      color:black;
      text-transform: uppercase;
      font-size:20px;
      font-family: 'IBM Plex Sans', sans-serif;
      position:relative;
      z-index:2;
      cursor:default;
      background:linear-gradient(to bottom, #fff 0%, #fff 0%);
      background-position:bottom;
      background-size:0;
      background-repeat:repeat-x;
      transition:background-size .3s;
      padding:0;
    }
      #menu-Principal .modal-body .menu-mobile li:nth-child(1) .nav-link {
        width:105px;
      }
      #menu-Principal .modal-body .menu-mobile li:nth-child(2) .nav-link {
        width:90px;
      }
      #menu-Principal .modal-body .menu-mobile li:nth-child(3) .nav-link {
        width:110px;
      }
      #menu-Principal .modal-body .menu-mobile li:nth-child(4) .nav-link {
        width:130px;
      }
      #menu-Principal .modal-body .menu-mobile li:nth-child(5) .nav-link {
        width:110px;
      }
      #menu-Principal .modal-body .menu-mobile li:nth-child(6) .nav-link {
        width:105px;
      }
    #menu-Principal .modal-body .menu-mobile .active .nav-link {
       background-size:1px 15px;
    }
    #menu-Principal .modal-body .menu-mobile .nav-link:focus {
      background-size:1px 15px;
    }
}
/*******************************************************************************
                                      HOME
*******************************************************************************/
#home_transparent {
  position: relative;
  width: 100%;
}
  #home_transparent .featured_title {
    min-height: 100vh;
    display: flex;
    -ms-display:flex;
    align-items: center;
    -ms-align-items:center;
  }
#home_transparent .featured_title p {
  font-size:52px;
  line-height: 56px;
  color:white;
  text-transform: none;
  font-family: 'IBM Plex Sans', sans-serif;
}
.IE #home_transparent {
  min-height: 100vh;
}
  .IE #home_transparent .featured_title {
    display: block;
    padding-top:40%;
    min-height: 10px;
  }
#home_box {
  background-color:rgba(237,229,222,.5);
  position: relative;
  padding:60px 0;
}
.back-color {
  background-color: #EDE5DE;
  width: 297px;
  min-height: 100%;
  position: absolute;
  top:0;
  left:0;
}
@media (min-width:1400px) {
  .back-color {
    width:410px
  }
}
@media (min-width:1900px) {
  .back-color {
    width: 575px;
  }
}
  #home_box .row {
    display: flex;
    align-items: center;
  }
    #home_box .col-md-6:nth-child(1) {
      display: flex;
      align-items: flex-start;
      flex-direction: row;
      justify-content: start;
    }
    #home_box .grid-item {
      display: grid;
      grid-template-columns: 85px 291px;
      /* grid-column-gap: 10px; */
    }
      #home_box .img-circle {
        max-width: 100px;
        height: auto;
        width: 100%;
        margin-top:-25px
      }
      #home_box .box_content_text {
        width: 255px;
        margin-left: 40px;
      }
        #home_box .box_content_text h3 {
          font-size:26px;
          line-height: 35px;
          font-family: 'IBM Plex Sans', sans-serif;
          margin-bottom: 43px;
        }
        #home_box .box_content_text p {
          font-size: 14px;
          margin-bottom: 34px;
        }
#home_box #carouselHome img.img-fluid {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
@media (max-width:767px) {
  #home_box .sliderHome {
    width: 100%;
    margin-top:20px;
  }
  #home_transparent .featured_title p {
    font-size:32px;
    line-height: 32px;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #home_box .back-color {
    width:50%;
  }
  #home_box .img-circle {
    width: 85px;
    margin-left:0;
    left:0;
    /* margin-bottom: 20px; */
  }
  #home_box .box_content_text {
    width:100%;
    margin-top: 50px;
    margin-bottom:40px;
    margin-left: 0;
  }
  #home_box .box_content_text h3 {
    font-size:28px;
    /* margin-bottom:20px; */
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #home_box .box_content_text p {
    font-size:15px;
    /* margin-bottom:30px; */
  }
  #home_box .box_content_text .btn_custom {
    font-size:13px;
    /* margin-bottom: 40px !important; */
  }
  #home_box .box_content_text .btn_custom:hover {
    background-color:#A4D4A2 !important;
    opacity: 1 !important;
  }
  #carouselHome {
    margin-top:40px;
  }
  #carouselHome .owl-nav {
    float:right;
    margin-top:20px;
  }
  #carouselHome .owl-nav .owl-next,
  #carouselHome .owl-nav .owl-prev {
    text-transform:uppercase;
    font-size:13px;
  }
  #home_box .grid-item {
    display:flex;
    flex-direction:column;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .back-color {
    width: 20%;
  }
  #home_box .grid-item {
    grid-template-columns: 50px 290px;
  }
    #home_box .box_content_text {
      width: 200px;
      margin-left: 10px;
    }
      #home_box .img-circle {
        max-width: 50px;
      }
      #home_box .box_content_text h3 {
        font-size: 20px;
      }
      #home_box .box_content_text p {

      }
}
@media (min-width:1024px) {
  #home_box .container {
    overflow:hidden;
  }
  #carouselHome {
    display: grid;
    flex-direction:row;
    position:relative;
    grid-template-columns: 88% 10%;
    width: 100%;
  }
  .IE #carouselHome {
    display: flex;
    align-items: center
  }
  #carouselHome .owl-stage-outer {
    z-index: 20;
  }
  #carouselHome .owl-nav {
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    transform: rotate(-90deg);
    display: flex;
  }
  .IE #carouselHome .owl-nav {
    margin-top:20%;
    margin-left: 15px;
  }
    #carouselHome .owl-nav .owl-prev,
    #carouselHome .owl-nav .owl-next {
      font-size: 12px;
    }
}

/*******************************************************************************
                                      PROJECT
*******************************************************************************/
#projectTop {
  position: relative;
  width: 100%;
  min-height: auto;
}
#projectTop img.img-fluid {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
#projectTop .owl-nav {
  position: absolute;
  bottom: 10px;
  right:20px;
}
  #projectTop .owl-nav .owl-prev,
  #projectTop .owl-nav .owl-next {
    color: white;
    text-transform: uppercase;
  }
  #projectTop #carouselProjectTop .item {
    position: relative;
  }
    #projectTop #carouselProjectTop .item .img_name {
      position: absolute;
      bottom: 0;
      left: 10%;
      color: #EDE5DE;
      font-size: 13px;
    }

@media (min-width:768px) {
  #projectTop #carouselProjectTop {
    height: 700px;
  }
}
#projectTop #carouselProjectTop .owl-dots {
  display: none;
}
#project_description {
  background-color:#383839;
  padding:55px 0;
  color:white;
}
#project_description h2 {
  font-size: 28px;
  line-height: 32px;
  margin:0;
  font-family: 'IBM Plex Sans', sans-serif;
}
#project_description h2:nth-child(2) {
  margin-bottom:30px;
}
#project_description p {
  font-size: 15px;
}
@media (min-width:768px) {
  #project_description {
    display: flex;
    align-items: center;
    flex-direction: row;
    /* height: 655px; */
  }
  #project_description .row {
    align-items: center;
  }
  #project_description p {
    font-size:13px;
  }
}
@media (max-width:767px) {
  #projectTop {
    padding-top:70px;
  }
  #project_description img.img-fluid {
    height: 393px;
    object-fit: cover;
  }
  #projectTop #carouselProjectTop .item .img_name {
    width: 40%;
    left:5%;
  }
}
@media (min-width:1900px) {
  #project_description {
    min-height:655px;
  }
  .IE #project_description {
    height: 655px;
  }
    #project_description img.img-fluid {
      height:500px;
    }
}
#projectBottom {
  padding: 85px 0;
}
.teamDesktop {
  position:relative;
  display: grid;
  grid-template-columns: .5fr .5fr 1fr;
  grid-column-gap: 20px;
  flex-direction: row;
  align-items: flex-start;
}
.IE .teamDesktop {
  display: flex;
}
  .teamDesktop .item.odd .team_title {
    margin-bottom: 36px;
  }
  .teamDesktop .item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .IE .teamDesktop .item {
    margin:0 5px;
  }
    .teamDesktop .team_title {
      font-size:12px;
      text-transform: uppercase;
      margin-bottom: 36px;
    }
    .teamDesktop .img_team {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .teamDesktop .logo_team {
      height:95px;
      display:flex;
      align-items:center;
    }
      .teamDesktop .logo_team img.img-fluid {
        width: 250px;
        height: auto;
      }
    .teamDesktop .location_team,
    .teamDesktop .contact_team {
      list-style-type: none;
      margin:0;
      padding:0;
    }
      .teamDesktop .location_team li,
      .teamDesktop .contact_team li {
        font-size: 13px;
        text-transform: uppercase;
      }
        .teamDesktop .location_team li a,
        .teamDesktop .contact_team li a {
          color:black;
          text-decoration: none;
          text-transform: uppercase;
          font-family: 'IBM Plex Sans', sans-serif;
        }
        .teamDesktop .location_team li a:hover,
        .teamDesktop .location_team li a:focus {
          color: #A4D4A2;
          opacity: 1;
        }
    .teamDesktop .custom_row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      width:100%;
    }
    .teamDesktop .slide1 .col-md-6:nth-child(1) .custom_row {
      display:block;
    }

    .teamDesktop .slide2 .col-md-3:nth-child(1) .custom_row,
    .teamDesktop .slide2 .col-md-3:nth-child(2) .custom_row {
      display:block;
    }
      .teamDesktop .slide2 .col-md-6 .logo_team {
        max-width:194px;
      }
      .teamDesktop .location_team {
        margin-bottom:15px;
      }
      .teamDesktop .location_team,
      .teamDesktop .contact_team,
      .teamDesktop .team_right {
        font-size: 12px;
        line-height: 14px;
      }
      .teamDesktop .team_left,
      .teamDesktop .team_right {
        width: 45%;
      }
      .IE .teamDesktop .team_left,
      .IE .teamDesktop .team_right {
        width: 250px;
      }
@media (min-width:768px) {
  .teamMobile {
    display: none;
  }
  .teamDesktop .item:nth-child(1) .logo_team:nth-child(1) {
    max-width: 254px;
  }
  .teamDesktop .item:nth-child(1) .col-md-6:nth-child(2) .logo_team {
    max-width: 194px;
    padding-top:10px;
  }
  .teamDesktop .owl-nav {
    position:absolute;
    top:0;
    right:15px;
  }
    .teamDesktop .owl-nav .owl-prev,
    .teamDesktop .owl-nav .owl-next {
      text-transform: uppercase;
    }
}
@media (max-width:1023px) {
  .teamDesktop {
    display: none;
  }
  .teamMobile {
    display: block;
  }
  #teamCarouselMobile {
    position:relative;
  }
    .teamMobile .owl-nav {
      position:absolute;
      top:-5px;
      right:15px;
      background-color:#EDE5DE;
    }
    .teamMobile .item {
      padding:0 10px;
    }
      .teamMobile .team_title {
        font-size: 12px;
      }
      .teamMobile .odd .team_title {
        margin-bottom: 20px;
      }
      .teamMobile .logo_team {
        width:50%;
        height:auto;
        margin:20px 0;
      }
      .teamMobile .item ul {
        list-style-type:none;
        padding-inline-start:0;
      }
}
@media (max-width:1023px) {
  #project_description .row {
    display:flex;
    flex-direction:column;
  }
  #project_description .col-12:nth-child(1) {
    order:2;
  }
  .teamDesktopMobile .team_title {
    text-transform:uppercase;
    font-size:13px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    /* margin-bottom: 30px; */
  }
  .teamDesktopMobile .img_team {
    width:100%;
    height:393px;
    object-fit:cover;
    margin-top: 55px;
  }
  .teamDesktopMobile .logo_team {
    width: 100%;
    height: auto;
    margin:20px 0;
    max-width: 300px;
  }
  .teamDesktopMobile .location_team,
  .teamDesktopMobile .contact_team {
    text-transform:uppercase;
    list-style-type:none;
    padding-inline-start:0;
  }
  .teamDesktopMobile a {
    color:#383839;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .teamDesktopMobile {
    position:relative;
    min-height:auto;
    margin-bottom:0;
  }
  .teamDesktopMobile .owl-nav {
    position:absolute;
    top: -4px;
    right:0;
    background-color:#EDE5DE;
  }
  .teamDesktopMobile .owl-nav .owl-next,
  .teamDesktopMobile .owl-nav .owl-prev {
    text-transform:uppercase;
    font-size:13px !important;
    -webkit-font-smoothing: antialiased;
  }
}
@media (min-width:768px) and (max-width:1023px) {

}
/*******************************************************************************
                                    GALLERY
*******************************************************************************/
#gallery {
  padding:60px 0;
  position: relative;
  background-color:rgba(237,229,222,.5);
}
@media (min-width:1900px) {
  #gallery {
    padding:80px 0;
    margin-top:30px;
  }
}
  #galleryDesktop .slide1 {
    /* width: 100%; */
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    /* grid-template-columns: .2fr .4fr 1fr; */
    /* grid-column-gap: 20px; */
  }
  #galleryDesktop .owl-nav {
    float: right;
    margin:20px 0;
  }
  @media (min-width:1900px) {
    #galleryDesktop .owl-nav {
      margin:20px 0 0 0;
    }
  }
    #galleryDesktop .slide1 .vertical {
      font-size: 11px;
      font-family: sans-serif;
      -webkit-font-smoothing:antialiased;
      text-transform: uppercase;
      text-align: center;
      -webkit-transform:rotate(-90deg);
      -moz-transform:rotate(-90deg);
      transform:rotate(-90deg);
      margin-bottom: 0;
    }
    #galleryDesktop .slide1 .descript {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 0;
      width: 267px;
    }
  #galleryDesktop .item img.img-fluid {
    height: 500px;
    object-fit: cover;
    width: 668px;
  }
  #galleryDesktop .item-diferent {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: space-between;
  }
    #galleryDesktop .item-diferent.odd {
      display: flex;
      justify-content: space-between;
      position: relative;
      flex-direction: row;
    }
      #galleryDesktop .item.item-diferent.odd img.img-fluid {
        width: 100%;
      }
      #galleryDesktop .item-diferent.even img.img-fluid {
        width: 100%;
        max-width: 550px
      }
@media (min-width:1024px) {
  #galleryMobile {
    display: none;
  }
}
@media (min-width:1024px) and (max-width:1365px) {
  #galleryDesktop .item-diferent.even img.img-fluid {
    max-width: 455px;
  }
}
@media (max-width:1023px) {
  #gallery {
    display: none;
  }
  #galleryMobile {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top:120px;
    position:relative;
    background-color:rgba(237,229,222,.5);
  }
    #galleryMobile .back-color {
      background-color: #EDE5DE;
      width: 50%;
      min-height: 100%;
      position: absolute;
      top:0;
      left:0;
    }
    #galleryMobile .horizontal {
      text-transform: uppercase;
    }
    #galleryMobile .descriptivo {
      font-size: 22px;
    }
    #galleryCarousel .owl-item img {
      width: 100%;
      height: 460px;
      object-fit: cover;
    }
    #galleryCarousel .owl-nav {
      float:right;
      margin:20px 0;
    }
}
/*******************************************************************************
                                    AMENITIES
*******************************************************************************/
#amenitiesSup, #amenitiesMed {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  position:relative;
}
.content_left, .content_right {
  width: 50%;
  height:100%;
}
#amenitiesSup .content_left {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white
}
#amenitiesSup h4, #amenitiesMed h4 {
  text-transform: uppercase;
  font-size: 13px;
  margin:0;
  padding:15px 0;
  font-family: 'IBM Plex Sans', sans-serif;
}
#amenitiesSup .content_left img.img-fluid {
  opacity:1;
  width:100%;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  transition:all .3s;
}
#amenitiesSup .content_left img.img-fluid:hover,
#amenitiesSup .content_left img.img-fluid:focus {
  opacity: .7;
}
#amenitiesMed .content_left img.img-fluid {
  width:100%;
  height:100%;
  object-fit:cover;
}
#amenitiesMed .content_right {
  color:white;

}
#amenitiesIcon {
  width: 100%;
  min-height: 330px;
  background-color: #EDE5DE;
  display: flex;
  align-items: center;
}
.IE #amenitiesIcon {
  height: 330px;
}
#amenitiesIcon .row {
  display: flex;
}
#amenitiesIcon .box_icon {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
#amenitiesIcon .box_icon img.icon_img {
  width: 50px;
  height: auto;
  margin-bottom: 30px;
}
#amenitiesIcon .box_icon .icon_title {
  text-transform:uppercase;
  font-size:13px;
  margin-bottom: 0;
}
.IE #amenitiesIcon .box_icon .icon_title {
  font-size: 11px;
}
#amenitiesIcon .box_icon:nth-child(2) .icon_title,
#amenitiesIcon .box_icon:nth-child(5) .icon_title,
#amenitiesIcon .box_icon:nth-child(7) .icon_title {
  margin-bottom:15%;
}
.IE #amenitiesIcon .box_icon:nth-child(2) .icon_title,
.IE #amenitiesIcon .box_icon:nth-child(5) .icon_title,
.IE #amenitiesIcon .box_icon:nth-child(7) .icon_title {
  margin-bottom:0%;
}
@media (min-width:1900px) {
  #amenitiesSup {
    margin-top:30px;
  }
  #amenitiesSup #sliderAmenities .item .content_left img {
    width: 336px !important;
  }
  #amenitiesSup #sliderAmenities .item .content_left p {
    width: 380px;
  }
}

@media (min-width:768px) {
  #amenitiesSup {
    height: 720px;
    text-align:center;
  }
    #amenitiesSup #sliderAmenities .item {
      height:720px;
      width:100%;
      display:flex;
      align-items:center;
      flex-direction:row;
    }
      #amenitiesSup #sliderAmenities .item .content_left {
        background-color:#383839;
        width:50%;
        color:white;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-direction:column;
        padding: 110px 200px;
        font-size: 13px;
      }
        #amenitiesSup #sliderAmenities .item .content_left img {
          width: 290px;
          height: 450px;
          object-fit:cover;
        }
        #amenitiesSup #sliderAmenities .item .content_left h4 {
          font-size:13px;
          font-family: 'IBM Plex Sans', sans-serif;
        }

      #amenitiesSup #sliderAmenities .item .content_right {
        width:50%;
      }
        #amenitiesSup #sliderAmenities .item .content_right img {
          width:100%;
          object-fit:cover;
          height: 720px;
        }
    #amenitiesSup #sliderAmenities .owl-nav {
      position:absolute;
      bottom:0;
      right:15px;
    }
      #amenitiesSup #sliderAmenities .owl-nav .owl-next,
      #amenitiesSup #sliderAmenities .owl-nav .owl-prev {
        color:white;
      }
@media (min-width:768px) and (max-width:1024px) {
  #amenitiesSup #sliderAmenities .item .content_left {
    padding:110px;
  }
}
#amenitiesMed {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:row;
}
  #amenitiesMed .content_right {
    padding: 110px;
    display: flex;
    align-items: center;
  }
  #amenitiesMed .content_right .internal_content {
    width: 375px;

  }
  #amenitiesMed .content_right h2 {
    font-size: 30px;
    line-height: 34px;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #amenitiesMed .content_right h4 {
    text-align: left;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #amenitiesMed .content_right p {
    font-size: 13px;
  }
  #amenitiesMed {
    height: 570px;
  }
  #amenitiesIcon .row {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    height: 140px;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  #amenitiesSup .owl-nav {
    bottom: 20px !important;
  }
  #amenitiesMed,  #amenitiesIcon {
    height:auto;
  }
  #amenitiesIcon {
    padding:30px 0;
  }
    #amenitiesIcon .row {
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
      grid-row-gap:150px;
      flex-wrap:wrap;
      justify-content:center;
      align-items:center;
      margin:auto;
      width:100%;
    }
}
@media (max-width:767px) {
  .page-template-tmpl-amenities header {
    min-height: 75px;
  }
  #amenitiesSup {
    display:flex;
    flex-direction:column;
    background-color:#383839;
  }
    #amenitiesSup .content_left {
      width:100%;
      padding: 50px 30px;
      background-color:#383839;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      flex-direction:column;
      height:650px;
    }
      #amenitiesSup .content_left img {
        width:100%;
        height:400px;
        object-fit:cover;
        order:3;
        margin-top:20px;
        margin-bottom: 35px;
      }
     #amenitiesSup .owl-nav {
       /* float:right; */
       /* margin:10px; */
       /* margin: 0px 10px 20px 10px; */
       position: absolute;
       right: 7%;
       bottom: 5%;
     }
    #amenitiesSup .content_right {
      display:none;
    }
      #amenitiesSup .owl-nav .owl-next,
      #amenitiesSup .owl-nav .owl-prev {
        color:white;
      }
   #amenitiesMed {
     display:flex;
     flex-direction:column;
   }
      #amenitiesMed .content_left {
        width:100%;
      }
        #amenitiesMed .content_left img.img-fluid {
          height:670px;
          object-fit:cover;
        }
      #amenitiesMed .content_right {
        width:100%;
        padding:60px 30px;
      }
      #amenitiesMed .content_right h2 {
        font-size:30px;
        font-family: 'IBM Plex Sans', sans-serif;
      }
      #amenitiesMed .content_right h4 {
        font-size: 13px;
        font-family: 'IBM Plex Sans', sans-serif;
      }
 #amenitiesIcon {
   padding:60px 35px;
   display: flex;
   justify-content: center;
 }
  #amenitiesIcon .container {
    display: flex;
    justify-content: center;
  }
  #amenitiesIcon .row {
    display:flex;
    justify-content: space-between;
    align-items:flex-start;
    position: relative;
  }
  #amenitiesIcon .box_icon {
    max-width:135px;
  }

}
@media (min-width:1920px) {
  #amenitiesMed {
    height: 584px;
  }
}
@media (min-width:768px) {
  #amenitiesIcon .box_icon.col-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .IE #amenities .box_icon.col-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width:767px) {
  #amenitiesIcon .box_icon {
    margin-bottom:55px;
    margin:10px 0 55px 0
  }
}
@media (min-width:768px) and (max-width:1023px) {
  #amenitiesSup .content_left {
    width: 100% !important;
  }
  #amenitiesSup .content_right {
    display: none;
  }
  #amenitiesSup #sliderAmenities .item .content_left img {
    width: 450px;
  }
  #amenitiesMed {
    flex-direction: column !important;
  }
    #amenitiesMed .content_left,
    #amenitiesMed .content_right {
      width: 100%;
    }
      #amenitiesMed .content_right .internal_content {
        margin:auto;
      }
}
/*******************************************************************************
                                    LOCATION
*******************************************************************************/
#location {
  padding:165px 0;
  width: 100%;
  min-height: 100vh;
  position:relative;
  background-color: rgba(237,229,222,.5);
}

  #location .row {
    display: flex;
    align-items: center;
  }
    #location h2 {
      font-size: 30px;
      line-height: 35px;
      font-family: 'IBM Plex Sans', sans-serif;
    }
    #location .dire_location {
      font-size:21px;
      line-height: 25px;
      margin-bottom:37px;
    }
    #location .descript_location {
      font-size: 13px;
      line-height: 19px;
    }
    #location .btn_location {
      display: flex;
      align-items: center;
      flex-direction: row;
    }
      #location .btn_location .btn_custom:nth-child(1) {
        margin-right: 20px;
      }
#location .reference_map {
  margin-top:20px;
}
  #location .reference_map ul {
    width: 100%;
    align-items: center;
    flex-direction: row;
    display: flex;
    list-style-type: none;
    margin:0;
    padding:0;
  }
  #locationMobile .reference_map ul, {
    width: 100%;
    align-items: center;
    flex-direction: row;
    display: flex;
    list-style-type: none;
    margin:0;
    padding:0;
  }
    #location .reference_map ul > li,
    #locationMobile .reference_map ul > li {
      display: flex;
      align-items: center;
      margin-right:30px;
    }
    #location .reference_map span,
    #locationMobile .reference_map span {
      width: 10px;
      height: 10px;
      border-radius: 7rem;
      display: block;

    }
    #location .reference_map p,
    #locationMobile .reference_map p {
      font-size: 11px;
      text-transform: uppercase;
      margin-bottom:0;
      margin-left: 5px;
    }
      #location .reference_map .college span,
      #locationMobile .reference_map .college span {
        background-color:#F1AA2E;
      }
      #location .reference_map .bank span,
      #locationMobile .reference_map .bank span {
        background-color:#0D78AA;
      }
      #location .reference_map .bar span,
      #locationMobile .reference_map .bar span {
        background-color:#F2A887;
      }
      #location .reference_map .store span,
      #locationMobile .reference_map .store span {
        background-color:#3D4C4F;
      }
@media (min-width:1900px) {
  #location {
    min-height: auto;
    margin-top:30px;
    padding:120px 0;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  #location {
    margin-top:30px;
    padding:170px 0;
    min-height:auto;
  }
}
@media (min-width:768px) {
  #locationMobile {
    display: none;
  }
}
@media (max-width:767px) {
  #location {
    display: none;
  }
  #locationMobile {
    padding: 130px 0 60px 0;
    min-height: 100vh;
    position: relative;
    background-color: rgba(237,229,222,.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }
    #locationMobile .back-color {
      background-color:#EDE5DE;
      width:50%;
      position:absolute;
      top:0;
      left:0;
      bottom: 0;
      display:block;
      /* min-height: 100vh; */
      z-index: -1;
    }
    #locationMobile h2 {
      font-size: 28px;
    }
    #locationMobile .dire_location {
      font-size: 21px;
      margin-bottom:25px;
    }
    #locationMobile .descript_location {
      font-size: 15px;
      margin-bottom:35px;
    }
    #locationMobile .btn_location {
      margin-top:20px;
      width:100%;
      text-align:center;
    }
      #locationMobile .btn_location .btn_custom:nth-child(1) {
        margin-right:10px;
      }
  #locationMobile .reference_map ul {
    display:grid;
    flex-direction:row;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-column-gap:5px;
    padding-inline-start:10px;
  }
    #locationMobile .reference_map ul > li {
      margin:0;
    }
}
/*******************************************************************************
                                    CONTACTO
*******************************************************************************/
#contacto {
  background-color: rgba(237,229,222,.5);
  margin-top:30px;
}

  #contacto h4 {
    font-size: 13px;
    line-height: 19px;
    text-transform: uppercase;
    text-align: left;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #contacto h2 {
    font-size: 38px;
    line-height: 44px;
    text-align: left;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #contacto .right_content .form-control {
    border:0;
    border-bottom:1px solid rgba(151,151,151,.5);
    border-radius:0;
    background-color:transparent;
    margin-bottom: 50px;
  }
  #contacto .right_content .form-control.invalid {
    border-bottom:1px solid red;
    margin-bottom: 0px;
  }
  #contacto .right_content .form-control.invalid:focus {
    border-bottom:1px solid rgba(151,151,151,.5);
  }
  #contacto .right_content .form-control.invalid:focus ~ .error {
    display: none;
  }
    #contacto .form-control:focus {
      outline:0;
      -webkit-box-shadow:none;
         -moz-box-shadow:none;
              box-shadow:none;
    }
    #contacto label {
      font-size:13px;
      text-transform: uppercase;
      color: #383839;
      font-family: 'IBM Plex Sans', sans-serif;
    }
  #contacto textarea {
    height: 100px;
    width:100%;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  #contacto .btn_custom {
    border:1px solid;
    float: right;
    width: 100%;
    max-width: 122px;
    height: 35px;
  }
  #contacto .btn_custom:hover,
  #contacto .btn_custom:focus {
    border:1px solid transparent;
  }
  #contacto .form-group {
    position:relative;
    /* margin-bottom: 50px; */
  }
    #contacto .error {
      font-size: 12px !important;
      position:absolute;
      top: 40px;
      right:6px;
    }
    #contacto .especial-error .error {
      top:105px;
    }
      #contacto .error p {
        color:red;
      }
  #contacto .success_message h2 {
    font-size: 38px;
    margin-bottom:0 !important;
  }
  #contacto .success_message h3 {
    font-size: 22px;
    margin-bottom:20px;
  }
@media (min-width:1900px) {
  #contacto .right_content {
      margin-left: 0 !important;
  }
}
@media (min-width:768px) and (max-width:1000px) {
  #contacto .right_content {
    padding:30px 0;
  }
  #contacto .contactForm {
    margin-bottom:30px;
  }
}
@media (min-width:768px) {
  #contacto .row {
    display:flex;
    align-items:center;
    flex-direction:row;
  }
    #contacto .left_content.col-md-6.col-12 {
      margin-left:0;
      padding-left: 0;
    }
      #contacto .left_content img.img-fluid {
        min-height: 600px;
        object-fit: cover;
      }
    #contacto .right_content {
      width: 490px;
      margin:auto;
    }
      #contacto .right_content h4,
      #contacto .right_content h2 {
        margin-bottom:30px;
        font-family: 'IBM Plex Sans', sans-serif;
      }
      #contacto .right_content h4::after {
        content:'';
        display: block;
        background-color:#EDE5DE;
        width: 100%;
        height: 6px;
        margin:30px 0;
      }
      #contacton .right_content h2 {
        margin-bottom: 50px;
      }
}
@media (max-width:767px) {
  #contacto {
    padding-top:75px;
  }
  #contacto .right_content .btn_custom {
    margin-bottom:30px;
  }
    #contacto .right_content h4 {
      margin-top:30px;
    }
    #contacto .right_content h2 {
      font-size:28px;
      margin-bottom:30px;
    }
    #contacto .right_content h4::after {
      content:'';
      display: block;
      background-color:#EDE5DE;
      width: 100%;
      height: 6px;
      margin:20px 0;
     }
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #383839;
  font-size:13px;
  text-transform:uppercase;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #383839;
  font-size:13px;
  text-transform:uppercase;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #383839;
  font-size:13px;
  text-transform:uppercase;
}
:-moz-placeholder { /* Firefox 18- */
  color: #383839;
  font-size:13px;
  text-transform:uppercase;
}
/*******************************************************************************
                                    FOOTER
*******************************************************************************/
.custom-footer {
  background-color:#383839;
  color:#EDE5DE;
  font-family: 'IBM Plex Sans', sans-serif;
  height: 174px;
  display: flex;
  align-items: center;
}
  .custom-footer .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr .5fr;
    align-items: flex-start;
    justify-content: space-around;
    flex-direction: row;
    grid-column-gap: 50px;
  }
  .custom-footer a {
    color:#EDE5DE;
    font-size: 17px;
    font-family: 'IBM Plex Sans', sans-serif;
    text-decoration: underline;
  }
  .custom-footer a:hover {
    color:#A4D4A2;
  }
  .custom-footer .footer_title {
    text-transform: uppercase;
    font-size: 11px;
    padding-bottom:10px;
  }
  .custom-footer p {
    font-size: 17px;
    margin-bottom:0;
  }
  .custom-footer .whatsapp {
    display: flex;
    align-items: center
  }
    .custom-footer .whatsapp i {
      margin-right: 5px;
    }
.custom-footer .grid-item-different {
  display: flex;
  flex-direction:column;
  align-items: flex-end;
}
  .custom-footer .rrss {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 40px;
  }
    .custom-footer .rrss a{
      width: 20px;
      font-family: 'IBM Plex Sans', sans-serif;
    }
    @media (max-width:767px) {
      .custom-footer {
        height: auto;
      }
        .custom-footer .row {
          display:flex;
          flex-direction:column;
          justify-content:center;
          align-items:center;
          width:100%;
          margin:auto;
          padding:40px;
        }
          .custom-footer .grid-item {
            width:100%;
            margin:auto;
            margin-bottom:20px;
          }
      }
@media (min-width:768px) {
  .custom-footer .phone a {
    pointer-events: none;
    text-decoration: none;
    cursor:text;
  }
  .custom-footer .phone a:hover {
    color:#EDE5DE;
  }
}
.custom-footer .phone .only-ie {
  display: none;
}
.IE .custom-footer .phone .general {
  display: none;
}
.IE .custom-footer .phone .only-ie {
  display: block;
}
