body {
  font-family: 'Open Sans', sans-serif;
   color: var(--color-black);
  font-size: 12px;
  font-weight: normal;
  background: #fff;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 15px !important;
  overflow: hidden;
}
html {
  overflow-x: hidden;
}
:root {
    --color-primary: #BDB298;
    --color-secondary: #191919;
    --color-black: #191919;
    --color-white: #FAFAFA;
    --color-gray: #A8A8A8;
    --color-light-gray: #E8E9E8;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 60px;
  color: var(--color-white);
}
h1 strong {
  color: var(--color-primary);
  font-weight: normal;
}
h2, .h2 {
  font-size: 40px;
  color: var(--color-black);
}
h2 strong {
  color: var(--color-primary);
  font-weight: 600;
}
h3, .h3 {
  font-size: 30px;
}
h4, .h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
h5, .h5 {

}
h6, .h6 {}
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li,
ol li,
p {
  font-size: 16px;
  color: var(--color-black);
  line-height: 140%;
  margin-bottom: 15px;
}
.intro p {
  font-size: 18px;
}
*:focus-visible {
    outline: none;
    box-shadow: none;
}
a {
  color: #1B4381;
  text-decoration: none;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: gray;
}
b, strong {
  font-weight: 800;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e6e6e6;
}
.oh {
  overflow: hidden;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.clear {
  clear: both;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.left {
  float: left;
}
.cover { 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
ul.bullets li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
ul.bullets li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #1B4381;
}
/*////////////////////////
///       Header      ////
////////////////////////*/
header {
  position: absolute;
  width: calc(100% - 30px);
  height: 110px;
  top: 15px;
  left: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 10px;
 /* box-shadow: 0px 1px 8px rgba(0,0,0,.4);*/
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  right: 15px;
  left: 15px;
  border-radius: 30px 30px 0 0;
}
header.smaller {
  animation: .8s ease 0s normal none 1 running fadeInDown;
  position: fixed;
  height: 100px;
  padding-top: 0;
  border: 1px solid rgb(25 25 25);
  background: rgb(25 25 25 / 90%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
}
header.smaller img {
  height: 80px;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header-navigation {
	display: flex;
    align-items: center;
    justify-content: flex-end;
}
/*////////////////////////
///       Footer      ////
////////////////////////*/
footer {
  background-color: var(--color-black);
  border-radius: 30px;
  padding-top: 40px;
  padding-bottom: 10px;
}
footer h4 {
  color: var(--color-white);
}
footer p,
footer a {
  color: var(--color-gray);
}
footer a:hover {
  color: var(--color-white);
}
footer .copyright p {
  font-size: 13px;
}
.ft-col {
  padding-top: 40px;
}

/*///////////////////////
///        Menu       ///
///////////////////////*/
nav {
  display: inline-block;
  vertical-align: top;
}
nav ul {
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 35px;
  position: relative;
}
nav ul li a {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  padding-top: 2px;
  display: inline-block;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
nav ul li a:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
nav ul li a:hover:after,
nav ul li.current-menu-item a:after,
nav ul li.current-page-ancestor a:after {
  width: 100%;
  background: var(--color-white);
}
nav ul li a:hover,
nav ul li.current-menu-item a,
nav ul li.current-page-ancestor a {
  color: var(--color-white);
} 
/*///////////////////////
///    Mobile Menu    ///
///////////////////////*/
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  padding: 25px 20px;
  width: 350px;
  height: 100%;
  right: -350px;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
  background: #122c54;
}
#mobile-menu nav {
  float: none;
}
.cerrar-menu {
  cursor: pointer;
}
#mobile-menu .icon-close {
  cursor: pointer;
  font-size: 20px;
  color: white;
  margin-bottom: 40px;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  padding: 11px;
  text-align: center;
  transition: all 300ms;
  border: 1px solid #ffffff82;
}
#mobile-menu .icon-close:hover {
  border-color: white;
}
#mobile-menu .language a span {
  color: white;
}
#mobile-menu .language a:hover {
  background: #1B4381;
}
.hamburger {
  color: white;
  float: right;
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 300ms;
  background: #1B4381;
}
.hamburger:hover {
  background: #48689A;
}
.cerrar-menu img:hover {
  opacity: 0.7;
}
#mobile-menu nav {
  display: block;
}
#mobile-menu nav ul {
  margin-bottom: 40px;
}
#mobile-menu nav ul li a {
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}
#mobile-menu nav ul li a:hover,
#mobile-menu nav ul li.current-menu-item a,
#mobile-menu nav ul li.current-page-ancestor a  {
  color: #ffffff;
  background: #ffffff1f;
}
#mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0;
  margin-right: 0;
}
#mobile-menu nav ul li a:hover:after, 
#mobile-menu nav ul li.current-menu-item a:after,
#mobile-menu nav ul li.current-page-ancestor a:after {
  background: transparent;
}
body.open-menu {
  height: 100vh;
  overflow-y: hidden;
}
body.open-menu .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}
body.open-menu #mobile-menu {
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
/*///////////////////////
///       Layout      ///
///////////// /////////*/
.mt40 { margin-top: 40px; }
.pr5 { padding-right: 5px; }
.pl5 { padding-left: 5px;}
.h5px  { height: 5px;  }
.h10px { height: 10px; }
.h15px { height: 15px; }
.h20px { height: 20px; }
.h30px { height: 30px; }
.h40px { height: 40px; }
.h50px { height: 50px; }
.h60px { height: 60px; }
.h70px { height: 70px; }
.h80px { height: 80px; }
.p0    { padding: 0; }
.m0    { margin: 0; }
.pt5   { padding-top: 5px;  }
.pt10  { padding-top: 10px; }
.pt15  { padding-top: 15px; }
.pt20  { padding-top: 20px; }
.pt30  { padding-top: 30px; }
.pt40  { padding-top: 40px; }
.pt50  { padding-top: 50px; }
.pt60  { padding-top: 60px; }
.pt70  { padding-top: 70px; }
.pt80  { padding-top: 80px; }
.pt90  { padding-top: 90px; }
.pt100 { padding-top: 100px; }
.pt120 { padding-top: 120px; }
.pt140 { padding-top: 140px; }
.pt150 { padding-top: 150px; }
.pt160 { padding-top: 160px; }
.pt180 { padding-top: 180px; }
.pt200 { padding-top: 200px; }
.pb10  { padding-bottom: 10px; }
.pb15  { padding-bottom: 15px; }
.pb20  { padding-bottom: 20px; }
.pb30  { padding-bottom: 30px; }
.pb40  { padding-bottom: 40px; }
.pb50  { padding-bottom: 50px; }
.pb60  { padding-bottom: 60px; }
.pb70  { padding-bottom: 70px; }
.pb80  { padding-bottom: 80px; }
.pb90  { padding-bottom: 90px; }
.pb100 { padding-bottom: 100px; }
.pb110 { padding-bottom: 110px; }
.pb120 { padding-bottom: 120px; }
.pb130 { padding-bottom: 130px; }
.pb140 { padding-bottom: 140px; }
.pb150 { padding-bottom: 150px; }
.pb160 { padding-bottom: 160px; }
.pb180 { padding-bottom: 180px; }
.pb190 { padding-bottom: 190px; }
.pb200 { padding-bottom: 200px; }
.mb0   { margin-bottom: 0;    }
.mb10  { margin-bottom: 10px; }
.mb20  { margin-bottom: 20px; }
.mb25  { margin-bottom: 25px; }
.mb30  { margin-bottom: 30px; }
.mb35  { margin-bottom: 35px; }
.mb40  { margin-bottom: 40px; }
.mb50  { margin-bottom: 50px; }
.mb60  { margin-bottom: 60px; }
.mt-site { margin-top: 100px; }
.show-md,
.show-xl,
.display-none { display: none; }
.img-cover {
  position: relative;
  height: 100%;
}
.img-cover > img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
/*////////////////////////
///      Sections     ////
////////////////////////*/
.btn {
  font-size: 16px;
  color: white;
  background: var(--color-primary);
  font-weight: 600;
  border-radius: 60px;
  height: 44px;
  border: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  padding: 0 20px;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
  gap: 10px;
}
.btn:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}
.btn i {
  font-size: 12px;
  transform: rotate(-45deg);
  transition: 0.4s;
}
.btn.static i {
  transform: none;
  font-size: 15px;
} 
.btn:hover i {
  transform: rotate(0deg);
}
.btn.big {
  height: 55px;
}
.btn--primary {

}
.btn--secondary {
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.btn--secondary:hover,
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}
.btn:focus {
	color: var(--color-white);
}
p.tag {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-white);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); 
  margin-bottom: 5px;
}
ul.social {
  display: flex;
  gap: 14px;
  padding: 10px 0 0 0;
  margin: 0;
}
ul.social li {
  margin: 0;
}
ul.social li a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: var(--color-gray);
  border: 1px solid var(--color-gray);
  border-radius: 100px;
}
.herobanner-medium {
  height: 340px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.herobanner-medium:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.3);
  position: absolute;
  z-index: 1;
}
.herobanner-medium .caption {
  position: relative;
  width: 100%;
  z-index: 2;
}
.br30 {
  border-radius: 30px;
}
.address {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 20px;
  text-align: center;
  padding: 70px 40px 40px 80px;
  position: relative;
}
.address i {
  background-color: var(--color-black);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  font-size: 30px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  position: absolute;
  left: 10px;
  top: 10px;
}
.contact-banner {
  padding: 60px;
  border-radius: 30px;
  overflow: hidden;
}
.contact-banner .contact-form {
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  width: 100%;
  max-width: 620px;
  padding: 40px;
  border-radius: 20px;
}
.contact-banner .contact-form h3,
.contact-banner .contact-form  p {
  color: var(--color-white);
}
.contact-banner .contact-form h3 {
  margin-bottom: 5px;
}
.contact-banner .contact-form a {
  color: var(--color-white);
  font-size: 14px;
}
.highlight {
	width: 237px;
	border-radius: 20px;
	border: 1px solid rgb(255 255 255 / 20%);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px); 	
	padding: 30px 20px;
	display: flex;
    flex-flow: column;
    gap: 20px;
}
.highlight p {
	color: var(--color-white);
}
.highlight div {
	display: flex;
    gap: 15px;
    align-items: flex-start;
	border-bottom: 1px solid rgba(255,255,255, .2)
}
.highlight div:last-child {
	border-bottom: none;
}
.highlight div:last-child p {
	margin-bottom: 0;
}
.info-highlight {
    display: flex;
    text-align: ri;
    justify-content: center;
    flex-flow: column;
    align-content: flex-end;
    align-items: flex-end;
}
/*////////////////////////
///       Slick       ////
////////////////////////*/
.herobanner .img-cover {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.herobanner .img-cover:before {
  content: '';
  display: block;
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.herobanner .slick-slide {
 height: calc(100vh - 100px);
}
.herobanner .caption {
  position: relative;
  z-index: 1;
}
.whatsapp-btn {
  display: block;
  width: 54px;
  height: 54px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  border-radius: 100px;
  border: 1px solid rgb(125 125 125);
  background: rgb(25 25 25 / 19%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-btn i {
  font-size: 25px;
  color: var(--color-gray);
}
.scroll-down {
	font-size: 19px;
    color: var(--color-white);
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 120px;
    border: 1px solid rgb(255 255 255 / 50%);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 31px;
    height: 44px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-down:after {
	content: 'SCROLL';
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: center;
    display: inline-block;
    top: -47px;
    font-family: "Public Sans", sans-serif;
    font-size: 15px;
}
/*////////////////////////
///        Forms       ///
////////////////////////*/
label { margin-bottom: 10px; }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 16px;
  color: var(--color-white);
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  margin-bottom: 5px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
textarea {
  height: 160px;
}
select {
  font-size: 16px;
  color: #777777;
  font-weight: 600;
  background: url(../img/select-arrow.svg) no-repeat right #F8F8F8;
  -webkit-appearance: none;
  background-position-x: calc(100% - 25px);
}
input[type=submit] {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  width: 140px;
  height: 50px;
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 100px;
  text-transform: uppercase;  
  float: right;
  transition: all 300ms;     
}
input[type=submit]:hover {
  background: var(--color-black);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: transparent;
}
input[type="checkbox"] { 
  margin-right: 10px;
}
::-webkit-input-placeholder { 
  font-size: 16px;
  color: var(--color-white);
}
:-moz-placeholder { 
  font-size: 16px;
  color: var(--color-white);;
}
::-moz-placeholder { 
  font-size: 16px;
  color: var(--color-white);
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: var(--color-white);
}
/*////////////////////////
///       Stage        ///
////////////////////////*/
.hero-banner{
  position: relative;
  width: 100%;
  height: calc(100vh - 20px);
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-content .txt p {
  font-size: 18px;
  color: var(--color-white);
}
/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?1mj17g');
  src:  url('../fonts/icomoon.eot?1mj17g#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?1mj17g') format('truetype'),
    url('../fonts/icomoon.woff?1mj17g') format('woff'),
    url('../fonts/icomoon.svg?1mj17g#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left-short:before {
  content: "\e900";
}
.icon-arrow-right-short:before {
  content: "\e901";
}
.icon-cuote:before {
  content: "\e902";
}
.icon-facebook:before {
  content: "\e903";
}
.icon-instagram:before {
  content: "\e904";
}
.icon-list:before {
  content: "\e905";
}
.icon-location:before {
  content: "\e906";
}
.icon-minus:before {
  content: "\e907";
}
.icon-mouse:before {
  content: "\e908";
}
.icon-play-short:before {
  content: "\e909";
}
.icon-play:before {
  content: "\e90a";
}
.icon-plus:before {
  content: "\e90b";
}
.icon-whatsapp:before {
  content: "\e90c";
}
.icon-x-circle:before {
  content: "\e90d";
}
.icon-youtube:before {
  content: "\e90e";
}
/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@media (min-width: 1200px) {  }
@media screen and (max-width: 1290px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 991px) {
  .show-xl { display: inline-block !important; }
  .hide-xl { display: none !important; }
}
@media screen and (max-width: 768px) {

}  
@media screen and (max-width: 767px) {
  h1, .h1 { font-size: 35px; }
  h2, .h2 { font-size: 25px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { font-size: 15px; }
  h6, .h6 { }
  .hide-md { display: none !important; }
  .show-md { display: block; }
  .hide-xs { display: none !important; }
  .reverse-md .col-a { order: 2; }
  .reverse-md .col-b { order: 1; }
}
@media screen and (max-width: 425px) {}
@media screen and (max-width: 425px) {}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {}