/*
  (c) 2024 LEXGEO - Diseño por Grupo Interactivo
*/
.marca1 { border: 1px tomato dotted; }
.marca2 { border: 2px green dashed; }
.marca3 { border: 1px salmon dotted; }
.marca4 { border: 2px orange dashed; }
.marca5 { border: 2px rgb(255, 246, 231) dashed; }

/* ---- COLOR PALETTE  ---- */
:root {
  --lexgeo-grey:  #6c6b6b;
  --lexgeo-red:   #973837;
  --lexgeo-gold:  #bda357;

  --hover:        #bda357;
  --eblack:       #061111;
  --black:        #000000;
  --white:        #ffffff;

  --body-text:    #373838;
  --bg-color:     #ffffff;
  --menu-option:  #6c6b6b;
  --menu-hover:   #973837;
  --btn-backg:    #373838;
  --btn-hover:    #973837;
}

/* 
font-family: 'Asap', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Open Sans', sans-serif;
 */

html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--body-text);
  background-color: #ffffff;
  text-align: left;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 1.5em;
  text-align: left;
  color: var(--lexgeo-red);
}
a {
  color: var(--body-text);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: var(--hover);
  text-decoration: none;
}
p {
  color: var(--body-text);
}
p strong {
  font-weight: 700;
}
ul {
  list-style: disc;
  padding: 0;
  padding-left: 32px;
  line-height: 1.8em;
  text-align: left;
}
ol {
  padding-left: 15px;
  line-height: 1.8em;
}
    ul li, ol li {
      font-size: 1em;
      line-height: 1.5em;
      color:var(--body-text); 
    }
/*  -------  Custom scrollbar ------- */
  body::-webkit-scrollbar {
    width: 10px;
    position: relative;
  }
  body::-webkit-scrollbar-track {
    background-color: transparent;
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--lexgeo-grey);
    border-radius: 0;
  }
  body::-webkit-scrollbar-thumb:hover {
    background-color: var(--hover);
  }
/* --------------  Selección de textos ---------------- */
::-moz-selection,
a::-moz-selection,
p::-moz-selection {
  color: #ffffff;
  background-color: var(--hover);
  text-shadow: none;
}
::selection,
a::selection,
p::selection {
  color: #ffffff;
  background-color: var(--hover);
  text-shadow: none;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: #ffffff;
  background-color: var(--lexgeo-red);
  text-shadow: none;
}
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -17px;
  margin-top: -17px;
  z-index: 16000;
}
/* -------- BUTTONS --------- */
.btn-cta1{
  display: inline-block;
  position: relative;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
  text-shadow: none;
  vertical-align: middle;
  color: #ffffff;
  background-color: var(--lexgeo-grey);
  border: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 0.75em 2.1em;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.3s;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
    .btn-cta1:hover,
    .btn-cta1:focus {
      color: #ffffff;
      background-color: var(--lexgeo-red);
      outline: none;
      box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
      -webkit-box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
      -moz-box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
      transform: scale(1.05);
    }
    .btn-cta1::selection {
      color: #ffffff;
      background-color: transparent;
    }
    .btn-cta1::-moz-selection {
      color: #ffffff;
      background-color: transparent;
    }
.btn-cta1-sm{
  font-size: 0.938em;
  padding: 0.45em 2.0em;
}
.btn-cta1.btn-inverse {
  background-color: var(--lexgeo-red);
}
.btn-cta1.btn-inverse:hover {
  background-color: var(--hover);
}

/* --------------  Enlace de texto corto ---------------- */
.btn-ln-link {
  position: relative;
  -webkit-transition: -webkit-clip-path 275ms ease;
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}
.btn-ln-link:hover span::before, 
.btn-ln-link:focus span::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.btn-ln-link span {
  position: relative;
  display: inline-block;
  color: var(--body-text);
}
.btn-ln-link span::before {
  position: absolute;
  content: attr(data-content);
  color: #00aeef;
  text-decoration: underline;
  -webkit-text-decoration-color: #00aeef;
          text-decoration-color: #00aeef;
  -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 575ms ease;
  transition: -webkit-clip-path 575ms ease;
  transition: clip-path 575ms ease;
  transition: clip-path 575ms ease, -webkit-clip-path 575ms ease;
}
.btn-ln-link span::selection {
  background-color: transparent;
}
.btn-ln-link span::-moz-selection {
  background-color: transparent;
}
.btn-ln-link.btn-blue span { color:#005b9f; }

#gi-hero {
  position: relative;
  width: 100%;
  /* height: auto; */
  height: 44.5vw;
	max-height: calc(100vh - 78px);
  margin-top: 78px;
  overflow: hidden;
  z-index: -5;
}
.hero-content {
  position: absolute;
  display: block;
  background-color: rgba(151,56,55,0.9);
  width: 38.5%;
  left: 0;
  top:75%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%); 
  -ms-transform: translateY(-50%); 
  -o-transform: translateY(-50%); 
  transform: translateY(-50%);
  padding: 1em 2em 1.4em 9%;
  border-radius: 0 48px 0 0; 
}
.hero-content h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 2.1em;
  line-height: normal;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  margin: 0;
  color: #ffffff;
  width: 100%;
  text-shadow: 1px 4px 22px rgba(21, 71, 138, 0.78);
}
.hero-content h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  line-height: normal;
  text-align: center;
  margin: 0;
  color: #ffffff;
}
.hero-content p {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  width: 90%;
  max-width: 340px;
  color: #ffffff;
  text-shadow: 0px 2px 16px rgb(0,0,0,0.6);
}
#float-button, #flat-cta {
  display: none;
}
#gi-hero .fixed-curve,
#header-service .fixed-curve {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 40%;
  height: auto;
  min-height: 60px;
  background: transparent url("../img/cta-curve.svg") bottom right no-repeat;
  text-align:center;
}
    #header-service .fixed-curve {
      width: 36%;
      min-height: 50px;
    }
#float-button .fixed-curve a,
#gi-hero .fixed-curve a,
#header-service .fixed-curve a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73%;
  margin-left:24%;
  height: auto;
  text-align:center;
}
    #header-service .fixed-curve a {
      margin-top: 5px;
    }
#float-button .fixed-curve a h3,
#gi-hero .fixed-curve a h3,
#header-service .fixed-curve a h3 {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Asap', sans-serif;
  font-size: 1.15em;
  font-weight: 400;
  font-style: italic;
  line-height: auto;
  letter-spacing: 0;
}
#float-button .fixed-curve a h3 span,
#gi-hero .fixed-curve a h3 span,
#header-service .fixed-curve a h3 span {
  font-weight: 700;
}
#gi-hero .fixed-curve a h3:hover,
#header-service .fixed-curve a h3:hover {
  color: var(--lexgeo-gold);
}
.rot-icon {
  display: inline-block;
  background: transparent url("../img/icons/ic_lexgeo.svg") center center no-repeat;
  width: 1.4em;
  height: 1.4em;
  margin: 10px;
	/* -webkit-animation: rotate-center 3.6s linear infinite both;
	        animation: rotate-center 3.6s linear infinite both; */
}
    @-webkit-keyframes rotate-center {
      0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
      }
      100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
      }
    }
    @keyframes rotate-center {
      0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
      }
      100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
      }
    }

/* -----------  INDEX SLIDESHOW ---------- */
/* .full-screen {
  height: 100vh;
  width: 100%;
}
.zoom-hero {
  position: relative;
  top: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-slideshow-wrapper {
  width: 100%;
  height: calc(100vh - 78px);
  overflow: hidden;
}
.bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
    -webkit-animation: slideShow 40s linear infinite 0s;
    animation: slideShow 40s linear infinite 0s;
}
  .bg-slide-1 {
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg-slide-2 {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg-slide-3 {
    -webkit-animation-delay: 16s;
    animation-delay: 16s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg-slide-4 {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg-slide-5 {
    -webkit-animation-delay: 32s;
    animation-delay: 32s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bg-slide-6 {
    -webkit-animation-delay: 40s;
    animation-delay: 40s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  } */

  /*  keyframes  */
      /* @-webkit-keyframes slideShow {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
        5% {
            opacity: 1;
        }
        33% {
            opacity: 1;
        }
        41% {
            opacity: 0;
            -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
        }
        100% {
            opacity: 0;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
      }
      @keyframes slideShow {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
        5% {
            opacity: 1;
        }
        33% {
            opacity: 1;
        }
        41% {
            opacity: 0;
            -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
        }
        100% {
            opacity: 0;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
      } */

/* --------- BUTTONS -------- */
a.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 10.5em;
  height: auto;
}
a.learn-more.w14 {
  width: 14em;
}
a.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2em;
  height: 2em;
  background-color: var(--lexgeo-red);
  border-radius: 2em;
}
a.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
a.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.22em;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
a.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.2em 0 0.1em 0;
  margin: 0 0 0 0.5em;
  color: var(--lexgeo-red);
  font-family: 'Asap', sans-serif;
  font-size: 1.12em;
  font-weight: 400;
  line-height: 1.3em;
  text-align: center;
  text-transform: none;
}
a.learn-more:hover .circle {
  width: 100%;
  background-color: var(--hover);
}
a.learn-more:hover .circle .icon.arrow {
  background-color: var(--hover);
  transform: translate(0.75em, 0);
}
a.learn-more:hover .button-text {
  color: #fff;
  margin-left: 1.4em;
}

/* ---- SOCIAL ---- */
.social-links {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.social-links ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.social-links ul li {
  margin-top: 18px;
  margin-bottom: 26px;
}
.social-links ul li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  padding-top: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  transition: transform 0.3s linear;

  -webkit-filter: drop-shadow(1px 1px 6px rgba(0,0,0,0.24));      
  filter: drop-shadow(1px 1px 6px rgba(0,0,0,0.24));  
}
    .social-links ul li a:hover {
      background-color: #00833d;
      transform: scale(1.25);
    }

.social-links ul li a img {
  width: 20px;
  height: auto;
  max-height: 24px;
}
.social-links .vert-line {
  display: inline-block;
  width: 1px;
  height: 70px;
  background-color: rgba(255,251,148,.5);
}

/* ---- NAV ---- */
#gi-header {
  position: fixed;
  top:0;
  left: 0;
  height: auto;
  z-index: 1000;
} 
#mainNav {
  position: fixed;
  top:0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 78px;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  background-color: #ffffff;
  box-shadow: 0px 3px 14px 1px rgba(0, 0, 0, 0.10);
  -webkit-transition: all .3s ease; 
  -moz-transition: all .3s ease; 
  -o-transition: all .3s ease; 
  transition: all .3s ease;
}
#mainNav .container-fluid {
  padding-right: 0;
}
    #mainNav .navbar-brand {
    width: 184px;
    margin-left: 5%;
    -webkit-transition: width .4s ease;
    -moz-transition: width .4s ease;
    -o-transition: width .4s ease; 
    transition: width .4s ease;
    }
        #mainNav .navbar-brand img {
          width:100%;
          max-width: 172px;
          height: auto;
          margin-left: 32px;
        }
   #mainNav .navbar-brand img::-moz-selection {
      background-color: transparent;
    }
   #mainNav .navbar-brand img::selection {
      background-color: transparent;
    }
    #mainNav .nav-login { display: block; }
    .navbar-collapse {
      flex-grow: inherit;
    }
    #mainNav .navbar-nav {
      padding-right: 24px;
      padding-top: 0px;
      max-height: 100vh;
    }
    #mainNav .navbar-nav .nav-item .nav-link {
      font-family: 'Asap', sans-serif;
      font-weight: 400;
      font-size: 0.938em;
      letter-spacing: 0.025em;
      text-transform: uppercase;
      padding: 4px 0.25em 15px 0.25em;
      margin: 18px 0.75em 0 0.75em;
      color: var(--lexgeo-grey);
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
    }
    #mainNav .navbar-nav .nav-item .nav-link::selection {
      background-color: transparent;
    }
    #mainNav .navbar-nav .nav-item .nav-link::-moz-selection {
      background-color: transparent;
    }
    #mainNav .navbar-nav .nav-item:last-of-type .nav-link {
      margin-right: 0.8em;
    }
        #mainNav .navbar-nav .nav-item .nav-link.active,
        #mainNav .navbar-nav .nav-item .nav-link.focus,
        #mainNav .navbar-nav .nav-item .nav-link:hover {
          /* color: var(--hover); */
          color: var(--lexgeo-grey);
        }
    #mainNav.navbar-shrink {
      position: fixed;
      top:0;
      left: 0;
      z-index: 1030;
      padding-bottom: 0;
      height: 56px;
    }
        #mainNav.navbar-shrink .navbar-brand {
          padding-top: 0;
          width: 146px;
        }
        #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
            font-size: 0.86em;
            letter-spacing: 0.06em;
            padding-top: 0;
            padding: 4px 0.15em 15px 0.15em;
        }
    #mainNav.navbar-shrink .dropdown-menu {
      top: 43px;
    }
    /* ----- Menu shows on hover  ---- */
    @media screen and (min-width: 993px){
      .dropdown:hover .dropdown-menu {
            display: block;
       }
    }
    #mainNav .dropdown-menu {
      top: 50px;
      margin-top: 18px;
      color: var(--lexgeo-grey);
      border: none;
      border-radius: 9px 9px 0 0;
      background-color: var(--white);
      padding: 28px 8px 30px 8px;
      border-bottom: 4px var(--lexgeo-red) solid;
    }
    #mainNav .dropdown-menu:before {
      content: "";
      border-bottom: 10px solid var(--white);
      border-right: 12px solid transparent;
      border-left: 12px solid transparent;
      position: absolute;
      top: -9px;
      left: 36px;
    }
    #mainNav .dropdown-item {
      font-family: 'Asap', sans-serif;
      font-weight: 500;
      font-style: italic;
      font-size: 0.938em;
      padding: .25rem 1.0rem;
      margin-bottom: 5px;
      color: var(--lexgeo-grey);
    }
    #mainNav .dropdown-item:focus,
    #mainNav .dropdown-item:hover {
      width: 100%;
      color: #ffffff;
      text-decoration: none;
      background-color: var(--hover);
      -moz-border-radius: 0.3em;
      -webkit-border-radius: 0.3em;
      border-radius: 0.3em;
      border: none;
    }
    /* Remove right carte when have dropdown menu */
    .dropdown-toggle::after {
      display: none;
    }

.submen-anim {
  -webkit-animation: shadow-drop-2-bottom 0.4s ease-in both;
          animation: shadow-drop-2-bottom 0.4s ease-in both;
}

@-webkit-keyframes shadow-drop-2-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateY(-6px);
            transform: translateZ(50px) translateY(-6px);
    -webkit-box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.35);
            box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-bottom {
  0% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateY(-6px);
            transform: translateZ(50px) translateY(-6px);
    /* -webkit-box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.35);
            box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.35); */
    -webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.40);
            box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.40);
  }
}

/* Bounce To Right */
.btn-bounce-right {
  display: inline-block;
  vertical-align: middle;
  /* -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0); */
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.btn-bounce-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--hover);
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border: 0px solid #000000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-bounce-right:hover, .btn-bounce-right:focus, .btn-bounce-right:active {
  color: #ffffff;
}
.btn-bounce-right:hover:before, .btn-bounce-right:focus:before, .btn-bounce-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Remove underline when have dropdown menu */
/* .nav-item.dropdown .btn-bounce-right:before {
    display: none;
} */

    /* --Nav color shades -- */
    .nav-item .btn-bounce-right:before {
      background-color: var(--lexgeo-red);
    }
    .nav-item:before {
      background-color: var(--lexgeo-red);
    }

/* ----  Language Switch ----- */
.bt_lang {
  padding: 12px 0 14px 0;
}
.bt_lang button.btn {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 0.938em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding: 4px 0.15em 2px 0.15em;
  margin: 5px 1.5em 0 0.75em;
  color: var(--lexgeo-red);
}
.bt_lang button.btn:hover {
  color: var(--hover);
}
.bt_lang button.btn:focus,
.bt_lang button.btn:active {
  border:none;
}
    #mainNav .dropdown-menu.lang-menu {
      top: 45px;
      margin-top: 15px;
      min-width: 120px;
      color: var(--lexgeo-grey);
      border: none;
      border-radius: 8px 8px 0 0;
      background-color: var(--white);
      padding: 24px 8px;
      border-bottom: 4px var(--lexgeo-red) solid;
    }
    #mainNav .dropdown-menu.lang-menu:before {
      content: "";
      border-bottom: 10px solid var(--white);
      border-right: 12px solid transparent;
      border-left: 12px solid transparent;
      position: absolute;
      top: -9px;
      left: 16px;
    }
.ic_lang {
  width: 24px;
  height: 24px;
  margin-right: 28px;
}
.ic_lang svg {
  margin-top: 8px;
  fill: #89968C;
}
.ic_lang svg:hover {
  fill: var(--hover);
}
.mobile-lang ul { 
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}
.mobile-lang li {
  cursor: pointer;
  padding-bottom: 10px;
}
.mobile-lang li ul {
  display: none;
}
.mobile-lang li:hover ul {
  position: absolute;
  top: 40px;
  right: -15px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
  .mobile-lang ul li {
    padding: 0.7em 1em 0.7em 3em;
    font-size: 1em;
    color: #ffffff;
  }
.nav-iconsZone {
  display: flex;
  background-color: transparent;
  padding: 5px 32px 5px 0;
  height: 78px;
  -webkit-transition: border-radius 0.5s;
  transition: border-radius 0.5s;
}
        #mainNav.navbar-shrink .nav-iconsZone {
          border-radius: 0 0 0 1.6em;
          height: 68px;
        }
.ic_search, .ic_ws {
  fill: var(--lexgeo-grey);
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.ic_search:hover, .ic_ws:hover {
  fill: var(--lexgeo-gold);
}

/* ----  Search ----- */
.bt-search, .bt-ws {
  background-color: transparent;
  border: none;
}
.bt-close-search {
  background-color: transparent;
  border: none;
  display: none;
  cursor: pointer;
}
    .bt-search:hover, .bt-search:focus, .bt-search:visited,
    .bt-close-search:hover, .bt-close-search:focus, .bt-close-search:visited {
      border: none;
      outline: none;
    }
#searchbox {
  position: fixed;
  width: 100%;
  height: 100%;
  /*z-index: 1400;   <----  Cover all the display --- */
  z-index: 60;
  display: block;
  overflow: hidden;
  background: #ffffff url('../img/search-bg.jpg') top center no-repeat;
  background-size: cover;
  top: 0;
  left: -100%;
  padding: 0;
  opacity: 0;
  transition: opacity 0.7s linear;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
#searchbox form {
  position: absolute;
  width: 0;
  top: 46%;
  left: 48%;
  height: 80px;
  padding: 15px 0 20px 0;
  background-color: transparent;
  opacity: 0;
  -webkit-transition: width .5s ease-out .5s, opacity .5s ease .5s;
  -moz-transition: width .5s ease-out .5s, opacity .5s ease .5s;
  -ms-transition: width .5s ease-out .5s, opacity .5s ease .5s;
  -o-transition: width .5s ease-out .5s, opacity .5s ease .5s;
  transition: width .5s ease-out .5s, opacity .5s ease .5s;
}
#searchbox form input[type="text"] {
  width: 70%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 8px 4px 8px;
  border: none;
  border-bottom: 2px var(--white) solid;
  outline: none;
  font-size: 1.4em;
  line-height: normal;
  background-color: transparent;
  color: var(--white);
}
#searchbox form input::placeholder {
  color: var(--white);
}
#searchbox.opensearch {
  left: 0;
  opacity: 1;
}
#searchbox.opensearch form {
  opacity: 1;
  width: 45%;
}
#searchbox .invlogo img {
  width: 100%;
  height: auto;
}
.ic_close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 30px;
}
.ic_close svg {
  fill: var(--white);
  opacity: 0.6;
}
#searchbox.opensearch .ic_close {
    -webkit-animation: rotate-entrance 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: rotate-entrance 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation-delay: 1s;
}
      @-webkit-keyframes rotate-entrance {
        0% {
          -webkit-transform: rotate(-360deg);
                  transform: rotate(-360deg);
          opacity: 0.4;
        }
        100% {
          -webkit-transform: rotate(0);
                  transform: rotate(0);
          opacity: 1;
        }
      }
      @keyframes rotate-entrance {
        0% {
          -webkit-transform: rotate(-360deg);
                  transform: rotate(-360deg);
          opacity: 0.4;
        }
        100% {
          -webkit-transform: rotate(0);
                  transform: rotate(0);
          opacity: 1;
        }
      }

@media (max-width: 640px) {
  #searchbox form input[type="text"] {
  width: 80%;
  left: 5%;
  }
}
/* --------  FOOTER  --------- */
footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height:310px;
  margin-top: 100px;
  padding: 0;
  text-align: center;
  color: var(--body-text);
}
footer .container {
  text-align: center;
}
footer p,
footer p a,
footer a {
  color: var(--lexgeo-grey);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.4em;
}
footer p a:hover {
  color: var(--lexgeo-gold);
  border-bottom: 2px var(--lexgeo-gold) solid;
}
footer .legal-txt {
  z-index:200;
}
footer .legal-txt p {
  font-size: 0.88em;
  line-height: 1.5em;
  margin-top: 2em;
  margin-bottom: 0.7em;
}
footer .social-row  {
  margin-bottom: 0;
}
footer a.social-icon  {
  margin-left: 10px;
  margin-right: 10px;
  border-bottom: none;
}
footer a.social-icon svg {
  fill: var(--lexgeo-grey);
  width: 20px;
}
footer a.social-icon svg:hover {
  fill: var(--lexgeo-gold); 
}
footer a.social-icon:hover  {
  border-bottom: none;
}
#ft-mesh {
  width: 100%;
  height: auto;
  min-height: 100px;
  /* z-index:-1; */
}
#ft-mesh-m {
  width: 100%;
  height: auto;
}
#ft-mesh .mesh,
#ft-mesh-m img {
  width: 100%;
  height: auto;
}
.ft-brand  {
  text-align: center;
}
.ft-brand img {
  width: 100%;
  max-width: 168px;
  height: auto;
  margin-bottom: 2em;
}
.ft-col {
  text-align: left;
}
footer .ft-col h5 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.97em;
  line-height: 1.1em;
  margin-top: 0;
  margin-bottom: 0.6em;
  text-align: left;
  color: var(--bg-color);
}
footer .ft-col h5.empty {
  display: block;
  margin-bottom: 1.7em;
}
footer .ft-col p a {
  margin-top: 0;
  margin-bottom: 0;
}
footer .ft-col p a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 1.0em;
  text-align: left;
  color: var(--bg-color);
}

/* ---- CONTENTS: Front page ---- */
#page-contents {
  position: relative;
  padding: 0;
  height: auto;
  min-height: 32vh;
}
#seo-title h1 {
  text-align: center;
  font-size: 0.05em;
  color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0.01;
}
#block-intro-about {
  margin-top: 7em;
  margin-bottom: 0;
  text-align: left;
}
#block-intro-about .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
#block-intro-about .block-intro-img {
  text-align: left;
}
#block-intro-about .block-intro-img img {
  width: 95%;
  max-width: 810px;
  height: auto;
}
#block-intro-about .block-intro-img h2 {
  font-size: 2.2em;
  font-weight: 700;
  font-style: italic;
  color: var(--lexgeo-red);
  letter-spacing: 0;
  line-height: 1.04em;
  margin-top: 0;
  margin-bottom: 1.6em;
  padding-left: 9vw;
}
#block-intro-about .block-intro-img h2 span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.90em;
  font-weight: 400;
  font-style: italic;
  color: var(--lexgeo-grey);
  display: block;
}

#block-intro-about .col2 {
  padding-right: 2vw;
  padding-left: 6vw;
  padding-top: 1.5em;
  border-left: 1px var(--lexgeo-grey) solid;
}
#block-intro-about .col2 p {
  line-height: 1.75em;
}
#block-intro-about .col2 p strong {
  font-weight: 800;
  color: var(--lexgeo-red);
}
.button-on-text {
  text-align: left;
  margin-top: 2.6em;
}
.button-on-text-center {
  text-align: center;
  margin-top: 1.8em;
}
.flatbutton {
  background-color: var(--lexgeo-grey);
  color: #ffffff;
  transition: all 0.2s;
}
.flatbutton:link,
.flatbutton:visited,
.submitbutton:link,
.submitbutton:visited {
  font-size: 0.938em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 30px;
  display: inline-block;
  border-radius: 36px;
  position: relative;
}
.flatbutton:hover,
.submitbutton:hover {
  color: #ffffff;
  background-color: var(--lexgeo-red);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}
.flatbutton:active,
.submitbutton:active {
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}
.flatbutton.thin {
  padding: 4px 25px;
  font-size: 0.938em;
}
.more-link .button-on-text {
  text-align: right;
  margin-top: 0;
  padding-bottom: 2em;
}
.more-link .button-on-text .flatbutton {
  background-color: transparent;
  color: var(--lexgeo-red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
#block-lista-consultorias {
  margin-top: 5em;
}
#block-lista-consultorias h3 {
  text-align: center;
  font-size: 2.0em;
  font-weight: 700;
  font-style: italic;
  color: var(--lexgeo-red);
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 1.6em;
}
#block-lista-consultorias p:first-of-type {
  margin-bottom: 4.6em;
}
#block-lista-consultorias .col2 {
  text-align: right;
}
#block-lista-consultorias .col2 img {
  width: 95%;
  max-width: 850px;
  height: auto;
  border-radius: 0 0 0 48px;
}
#block-lista-consultorias .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
#block-lista-consultorias .container-fluid .col1 {
  padding-left: 6vw;
  display: flex;
  justify-content: center;
}
#block-lista-consultorias .center-col ul li {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
 /* ------- SERVICE CARDS --------   */
#blockServices {
margin-top: 7em;
margin-bottom: 4em;
}
#blockServices .htitle h3 {
  text-align: center;
  font-size: 2.0em;
  font-weight: 700;
  font-style: italic;
  color: var(--lexgeo-red);
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.78em;
}
#block-index-services {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #fff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-block: min(20vh, 2rem);
  /* width: calc(min(76.5rem, 70%)); */
  width: 90%;
  margin-inline: auto;
  color: var(--eblack);
}

#block-index-services a {
  display: inline-block;
  text-decoration: none;
}
#block-index-services .container {
  margin-top: 0;
  display: flex;
  /*grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));*/
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
#block-index-services .container .card {
  width: 21vw;
  border: none;
  margin-bottom: 12px;
}
#block-index-services .container .card .content {
  padding: 0.5rem 0.625rem;
}
#block-index-services .container .card .content h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.3909rem + 0.4364vw, 1.35rem);
  line-height: 1.1em;
  text-transform: none;
  line-height: 1.1em;
  color: var(--eblack);
  margin-top: 0.4em;
  margin-bottom: 0.2em;
}
    #block-index-services .container .card .content h3:hover {
      color: var(--lexgeo-red);
    }
#block-index-services .container .card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: var(--white);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
#block-index-services .container .card-inner .box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}
#block-index-services .container .card-inner .box .imgBox {
  position: absolute;
  inset: 0;
}
#block-index-services .container .card-inner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease; 
}
#block-index-services .container .card-inner .box .imgBox img:hover {
  opacity: 0.8;
  transform: scale(1.10);
}
#block-index-services .container .card-inner .box .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}
#block-index-services .container .card-inner .box .icon .iconBox svg {
  transform: rotate(45deg);
  width: 32px;
  height: 32px;
}
#block-index-services .container .card-inner .box .icon:hover .iconBox {
  /* transform: scale(1.1); */
  transform: scale(1.1) rotate(45deg);
  background-color: #b72025;
}
#block-index-services .container .card-inner .box .icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}
#block-index-services .container .card-inner .box .icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}
#block-index-services .container .card-inner .box .icon .iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
#block-index-services .container .card-inner .box .icon .iconBox span {
  color: #fff;
  font-size: 1.5rem;
}
 /* ------- INDEX: DE INTERES --------   */
 #block-de-interes {
  margin-top: 5em;
  padding-bottom: 30px;
}
#block-de-interes .excell-item {
  margin-bottom: 40px;
}
#block-de-interes .titles h3 {
  text-align: center;
  font-size: 2.1em;
  font-weight: 700;
  font-style: italic;
  color: var(--lexgeo-red);
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 1.3em;
}
.news-frame {
  background-color: var(--bg-color);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
  -moz-box-shadow: 1px 9px 22px 0 rgba(50, 50, 50, 0.18);
  box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
  padding-top: 50px;
  padding-left:5%;
  padding-right:5%;
}
#block-de-interes .col-img,
#block-de-interes .col-img .col-img-wrap {
  position: relative;
}
#block-de-interes .col-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 18px;
  border: 0;
  transition: 0.8s transform ease;
}
    #block-de-interes .col-img:hover img {
      transform: scale(1.1);
	  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.15);
    }
#block-de-interes .behind-pic-deco {
  position: absolute;
  display: block;
  content: '';
  bottom:-18px;
  left: -18px;
  width: 90%;
  height: 86%;
  z-index: -1;
  border-radius: 18px;
  background-color: #15478A;
  transition: 0.5s transform ease;
}
    #block-de-interes .col-img:hover .behind-pic-deco {
      transform: translateX(-7px);
    }
    #block-de-interes .row.excell-item:nth-of-type(2) .behind-pic-deco {
      background-color: #0f68a6;
    }
    #block-de-interes .row.excell-item:nth-of-type(3) .behind-pic-deco {
      background-color: #49bdda;
    }
#block-de-interes .col-text {
  padding: 0 24px;
}
#block-de-interes .col-text h5 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  color: var(--lexgeo-grey);
}

/* -------- BLOG LISTING  ------- */
#header-plain {
  position: relative;
  width: 100%;
  height: 16vw;
  max-height: 255px;
  background-color: var(--lexgeo-red);
  margin-top: 78px;
}
.headerimg-wrap {
  width: 100%;
  height: 100%;
  background-position: right center;
  background-size: cover;
}
#header-plain .title {
    position: absolute;
    display: block;
    width: 50%;
    height: auto;
    left: 9%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#header-plain .title h1 {
  font-family: 'Titillium Web', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.2em;
  line-height: 1.2em;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}
.headerimg-wrap .fixed-curve  {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 40%;
  height: auto;
  min-height: 40px;
  background: transparent url("../img/cta-curve.svg") bottom right no-repeat;
}
.post-grid {
  padding: 40px 15px 40px 15px;
}
.post-grid .card {
  width: 100%;
  max-width: 300px;
  min-height: 360px;
  margin:1.5em auto 1.7em auto;
  -webkit-box-shadow: 1px 3px 7px 0 rgba(50, 50, 50, 0.18);
  -moz-box-shadow: 1px 3px 7px 0 rgba(50, 50, 50, 0.18);
  box-shadow: 1px 3px 7px 0 rgba(50, 50, 50, 0.18);
  -moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em 0.3em 0 0;
  border: none;
  border-bottom: 3px var(--lexgeo-red) solid;
  transition: 0.25s ease-in-out;
}
.post-grid .card:hover  {
  cursor: pointer;
  -webkit-box-shadow: 1px 6px 14px 0 rgba(50, 50, 50, 0.28);
  -moz-box-shadow: 1px 6px 14px 0 rgba(50, 50, 50, 0.28);
  box-shadow: 1px 6px 14px 0 rgba(50, 50, 50, 0.28);
  transform: scale(0.96);
}
.post-grid .card .card-img-top {
  -moz-border-radius: 0.3em 0.3em 0 0;
  -webkit-border-radius: 0.3em 0.3em 0 0;
  border-radius: 0.3em 0.3em 0 0;
  border: 0 solid #000000;
  width: 100%;
  max-width: 300px;
  height: auto;
  max-height: 200px;
}
.post-grid .card-body {
  padding: 0.6em 0.8em 0.6em 0.8em;
  min-height: 108px;
}
.post-grid .card a {
  width: 100%;
}
.post-grid .card h4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  color: #444;
  text-align: left;
  text-transform: none;
  margin-top: 0.5em;
}
.post-grid .card h4 hover {
  color: #80b918;
}
.post-grid .card p:first-of-type {
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.750em;
  font-weight: 600;
  color: #80b918;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.post-grid .card p:last-of-type {
  font-family: 'Asap', sans-serif;
  font-size: 0.86em;
  font-weight: 500;
  font-style: italic;
  color: var(--lexgeo-grey);
  opacity: 0.75;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
  margin-bottom: 0;
}
.post-grid.compsocial .card {
  max-width: 0;
  min-height: 0;
}
.post-grid.compsocial .card-body {
  padding: 1.2em 24px 0.7em 20px;
  min-height: 0;
}
#block-news-wrap  {
  margin-top: 50px;
}
.side-blog {
  margin-top: 22px;
  padding-left: 12px;
}
.side-blog h5 {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--lexgeo-red);
  padding-bottom: 6px;
  margin-bottom: 28px;
  border-bottom: 2px var(--lexgeo-gold) solid;
}
.side-blog ul {
  margin-bottom: 30px;
  list-style-type: square;
}
.side-blog ul li {
  font-size: 0.96em;
  font-weight: 600;
  line-height: 1.4em;
  margin-bottom: 8px;
  color: var(--body-text);
}
.side-blog ul li a:hover {
  color: var(--lexgeo-gold);
}

/*------------- PAGINATION ------------*/
.pagination {
  margin-top: 1.8em;
  margin-bottom: 2em;
}
.page-link {
  padding: .55em .95em;
  min-width: 42px;
  min-height: 40px;
  margin-left: 3px !important;
  margin-right: 3px !important;
  line-height: 1.25;
  font-weight: 400;
  color: var(--lexgeo-grey);
  background-color: var(--white);
  border: 1px solid var(--white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  box-shadow: 1px 3px 8px 0 rgba(50, 50, 50, 0.2);
  transition: transform 0.4s ease;
}
.page-link:hover {
  color: var(--white);
  background-color: var(--lexgeo-gold);
  border: 1px solid var(--lexgeo-gold);
  -webkit-box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
  -moz-box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
  box-shadow: 1px 3px 5px 0 rgba(50, 50, 50, 0.24);
    -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  font-size: 0.875em;
  padding: .7em 1.1em;
}
    .page-item:first-child .page-link {
      margin-right: 7px;
    }
    .page-item:last-child .page-link {
      margin-left: 15px;
    }
.page-item.disabled .page-link {
    color: #cdcdcd;
    border-color: var(--white);
}
.page-item a.current.page-link {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--lexgeo-red);
    border-color: var(--lexgeo-red);
}
#main-page-pic {
  margin-top: 78px;
  position: relative;
}

#main-page-pic.on-article {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(206,206,206,0.4) 0%, rgba(227,227,227,0.2) 16%, rgba(254,254,254,0) 65%, rgba(255,255,255,0) 100%);
}
#main-page-pic.on-article .pic-post-bigpic {
      width: 100%;
      height: auto;
      text-align: center;
      padding-top: 40px;
      padding-bottom: 30px;
}
#main-page-pic.on-article .pic-post-bigpic img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0px 3px 20px 1px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 3px 20px 1px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 3px 20px 1px rgba(0,0,0,0.24);
}
#block-news-wrap.on-article {
  margin-top:0;
}
#block-news-wrap.on-article .post-detail {
  margin-top:50px;
}
#block-news-wrap .post-detail  {
  margin-top: 120px;
}
#block-news-wrap .post-detail h1 {
  font-size: 2.0em;
  line-height: 1.2em;
  margin-top:0;
  margin-bottom: 10px;
  text-align: left;
  color: var(--body-text);
}
#block-news-wrap .post-detail h1:after {
    width: 35%;
    max-width: 260px;
}
#block-news-wrap.onsingle .post-mainpic {
  text-align: center;
}
#block-news-wrap.onsingle .post-mainpic img {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-bottom: 64px;
  border-radius: 22px;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.article-date {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.938em;
  font-style: italic;
  color: var(--lexgeo-grey);
  opacity: 0.8;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 0;
  margin-bottom: 2em;
}
.article-cont {
  margin-bottom: 3.4em;
}
.article-cont p {
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 1.5em;
}
.article-cont ul,
.article-cont ol {
  text-align: left;
  font-size: 1em;
  margin:1.5em 15px;
}
.article-cont ol li {
  margin-bottom:1.2em;
}
.article-cont p strong {
  font-weight: 700;
  color: #000000;
}
.article-cont a,
.article-cont p a {
  color: var(--lexgeo-red);
  font-style: italic;
  border-bottom: 2px transparent solid;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.article-cont a:hover,
.article-cont p a:hover {
  color: var(--lexgeo-gold);
  border-bottom: 2px var(--lexgeo-gold) solid;
}
.article-cont dl, 
.article-cont ol, 
.article-cont ul {
  margin-top: 0;
  margin-bottom: 2em;
  padding-left: 32px; 
  list-style: none;
}
.article-cont li {
  text-align: justify;
  line-height: 1.4em;
  margin-bottom: 0.9em;
}
/* List styles optional -- Check in Safari & IE  */
.article-cont ul li::before {
  content: "\2022"; 
  color: var(--lexgeo-red);
  display: inline-block; 
  width: 1em;
  font-size: 1.5em;
  margin-left: -1em;
  margin-right: 0;
}
.article-cont ol {
  list-style: none;
  counter-reset: li;
  padding-left: 34px; 
}
.article-cont ol li::before {
  content: counter(li); 
  color: var(--lexgeo-red);
  display: inline-block; 
  width: 1.6em;
  font-weight: 400;
  margin-left: -1em;
  margin-right: 0.75em;
}
.article-cont ol li::first-line {
  margin-left: -1.6em; 
}
.article-cont ul li::before,
.article-cont ol li::before {
  color: var(--lexgeo-red);
}
.article-cont ol li {
  counter-increment: li;
}
.article-cont .table-responsive-sm,
.article-cont .table-responsive {
  min-width: 70%;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%); 
  -ms-transform: translateX(-50%); 
  -o-transform: translateX(-50%); 
  transform: translateX(-50%);
}
.article-cont .table-responsive-sm,
.article-cont .table-responsive {
  margin-top: 2.5em;
  margin-bottom: 2.8em;
}
.article-cont table thead {
  border-bottom: 2px var(--lexgeo-red) solid;
}
.article-cont table thead tr th {
  font-size: 0.875em;
  color: var(--lexgeo-red);
  padding-left: 12px;
  padding-bottom: 0.5em;
}
.article-cont table tbody tr td {
  font-size: 0.938em;
  line-height: 1.2em;
  padding: 0.5em 12px;
  border-bottom: 1px #CDCDCD solid;
}
.article-cont img {
  max-width: 80%;
  height: auto;
  margin-top: 2.5em;
  margin-bottom: 2.75em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 18px;
}
.article-cont h2 {
  font-size: 1.8em;
  font-style: italic;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 0.75em;
}
.article-cont h3 {
  font-size: 1.6em;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 0.75em;
  color: var(--lexgeo-grey);
}
.article-cont h4 {
  font-size: 1.55em;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.6em;
  color: var(--lexgeo-red);
}
.article-cont h5 {
  font: 800 1.25em 'Open Sans', sans-serif;
  line-height: normal;
  margin-bottom: 0.75em;
  color: var(--black);
  margin-top: 1em;
}
#block-clients {
  margin-top: 6em;
  margin-bottom: 85px;
}
#block-clients ul {
  list-style-type:square;
}
#block-clients ul li {
  font-size: 1.0em;
  font-weight: 500;
  font-style: normal;
  color: var(--body-text);
  text-align: left;
  line-height: 1.6em;
  padding-left: 0.1em;
  margin-left: 0.6em;
  margin-bottom: 0.6em;
}

/*---------  SERVICE PAGES ------------ */
#header-service {
  height: 55vh;
  min-height: 334px;
  max-height: 680px;
  margin-top: 78px;
  z-index: -5;
  overflow: hidden;
}
    #header-service.big-header {
      min-height: 400px;
    }
.header-service-wrap {
  position: relative;    
  width: 100%;
  height: 100%;
}
.header-service-wrap .left-side {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 42%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--lexgeo-red);
}
.header-service-wrap .right-side {
  display: block;
  position: absolute;
  width: 58%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
  background-color: var(--lexgeo-gold);
  z-index: -6;
}
    .header-service-wrap .left-side .title {
      position: absolute;
      display: block;
      width: 82%;
      height: auto;
      left: 15%;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
    }
        .header-service-wrap .left-side .title h1 {
          font-family: 'Titillium Web', Arial, sans-serif;
          font-weight: 800;
          font-size: 1.8em;
          line-height: 1.2em;
          letter-spacing: 0.01em;
          text-transform: none;
          text-align: center;
          color: var(--white);
          margin-top: 0;
          margin-bottom: 0;
        }
        .header-service-wrap .left-side .title h2 {
          font-family: 'Titillium Web', Arial, sans-serif;
          font-weight: 600;
          font-size: 0.96em;
          line-height: normal;
          letter-spacing: 0.15em;
          text-transform: uppercase;
          text-align: center;
          color: var(--white);
          margin-bottom: 0;
        }

#header-service .right-side #anim-header-slide {
  width: 100%;
  height: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* background-size: 100% auto; */
  background-size: cover;
}
#header-service .right-side #anim-header-slide img {
  width: auto;
  height: 100%;
}
    #header-service.big-header .right-side #anim-header-slide {
      background-position: center left;
    }

/*    ---- Logo with rotation active ----- */
/* #rotating-logo { 
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: -48%;
  top: 0;
  opacity: 0.05;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: scale(2) translate(-100%, -50%);
  background: transparent url(../img/icons/ic_lexgeo-inv.svg) center center no-repeat;
  -webkit-animation: rotate-center 18s linear infinite both;
  animation: rotate-center 18s linear infinite both;
} */


/*    ---- Logo without rotation  ----- */
#rotating-logo {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: -50%;
  top: 50%;
  opacity: 0.07;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent url(../img/icons/ic_lexgeo-inv.svg) center center no-repeat;
}


#block-main-text,
#block-sector-text {
  margin-top:7em;
  margin-bottom:5em;
}
    #block-main-text .col1,
    #block-sector-text .col1 {
      line-height: 2.0em;
      text-align: justify;
    }
    #block-sector-text .col1 {
      margin-bottom: 1.6em;
    }
        #block-main-text .col1 span,
        #block-sector-text .col1 span,
        #block-main-text .col1 h6,
        #block-sector-text .col1 h6 {
          color: var(--lexgeo-red);
          font-size: 1.07em;
          font-weight: 700;
		  margin-bottom: 2.0em;
		  line-height: 2.0em;
        }
    #block-main-text .col1 p,
    #block-sector-text .col1 p {
      margin-bottom: 2.0em;
    }
    #block-main-text .col1 h2,
    #block-sector-text .col1 h2 {
      font-size: 1.55em;
      font-style: italic;
      margin-bottom: 1.2em;
    }
    #block-main-text .col1 h3,
    #block-sector-text .col1 h3 {
      font-size: 1.5em;
      font-style: normal;
      margin-bottom: 1.2em;
      color: var(--lexgeo-grey);
    }
    #block-main-text .col1 h4,
    #block-sector-text .col1 h4 {
      font-size: 1.35em;
      font-style: normal;
      text-transform: uppercase;
      margin-bottom: 1.2em;
    }
    #block-main-text .col1 h5,
    #block-sector-text .col1 h5 {
      font-size: 1.3em;
      font-weight: 700;
      font-style: normal;
      margin-bottom: 1.2em;
      color: var(--body-text);
    }
    #block-sector-text .col2 h3 {
      font-size: 1.5em;
      font-style: italic;
      color: var(--lexgeo-red);
      padding-bottom: 8px;
      border-bottom: 1px var(--lexgeo-gold) solid;
      margin-bottom: 1.2em;
    }
    #block-sector-text ul {
      list-style-type:square;
    }
    #block-sector-text ul li {
      font-size: 1.0em;
      font-weight: 700;
      font-style: normal;
      color: var(--body-text);
      text-align: left;
      line-height: 1.6em;
      padding-left: 0.1em;
      margin-left: 0.6em;
      margin-bottom: 0.6em;
    }

#block-alcance-servicios,
#block-lista-sectores {
  margin-bottom:5em;
  padding-top: 4em;
  padding-bottom: 3.3em;
  background-color: var(--lexgeo-gold);
}
    #block-lista-sectores {
      background: linear-gradient(
        to right,
        var(--lexgeo-gold) 0%,
        var(--lexgeo-gold) 50%,
        #373838 50%,
        #373838 100%
      );
    }    
#block-alcance-servicios h2,
#block-lista-sectores h2 {
  font-size: 1.8em;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.04em;
  margin-top: 0;
  margin-bottom: 1.6em;
  text-align: center;
}
    #block-lista-sectores h2 {
      text-align: left;
      padding-left: 26%;
    }
#block-alcance-servicios .col2,
#block-lista-sectores .col2 {
  text-align: left;
}
    #block-lista-sectores .col2 {
      padding-left: 4.0%;
    }
#block-alcance-servicios .col2 p,
#block-lista-sectores .col2 p {
  color: var(--white);
}
#block-alcance-servicios ul {
  list-style-type:square;
}
#block-alcance-servicios ul li,
#block-lista-sectores ul li,
#block-lista-sectores ul li a {
  font-size: 1.1em;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  text-align: left;
  line-height: 1.85em;
  padding-left: 0.1em;
  margin-left: 0.6em;
}
    #block-lista-sectores ul li a {
      font-size: 1.0em;
      font-weight: 600;
    }
        #block-lista-sectores ul li a:hover {
          color: var(--lexgeo-gold);
        }


  #block-lista-sectores .sector-list ul,
  #block-lista-consultorias .sector-list ul {
    list-style-type: none;
    padding-left: 0;
  }
      #block-lista-sectores .sector-list ul li {
        padding-left: 1.5em;
        position: relative;
      }
      #block-lista-consultorias .sector-list ul li {
        padding-left: 2.1em;
        position: relative;
      }
      #block-lista-sectores .sector-list ul li::before,
      #block-lista-consultorias .sector-list ul li::before {
        content: '';
        position: absolute;
        display: inline-block;
        left: 0;
        top: 6px;
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-image: url("../img/icons/ic_rightarrow2.svg");
        background size: cover;
      }

      #block-lista-consultorias .sector-list ul li::before {
        top: 2px;
        background-image: url("../img/icons/ic_rightarrow.svg");
      }



#block-cita,
#block-compromiso {
  margin-bottom:14em;
}
#block-cita .container {
  padding-left: 15vw;
  padding-right: 15vw;
}
#block-compromiso .container {
  padding-left: 7vw;
  padding-right: 7vw;
}
#block-cita h3,
#block-compromiso h3 {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  color: var(--lexgeo-red);
  line-height: 0.95em;
  margin-top: 0;
  margin-bottom: 1.6em;
  text-align: left;
}
#block-cita h3 span,
#block-compromiso h3 span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  font-weight: 500;
  font-style: italic;
  color: var(--lexgeo-grey);
  letter-spacing: -0.02em;
  opacity: 0.8;
}
#block-cita .col2,
#block-compromiso .col2 {
  padding-right: 2vw;
  padding-left: 4vw;
  padding-top: 1.2em;
  border-left: 1px var(--lexgeo-grey) solid;
}
    #block-compromiso .col2 {
      padding-top: 0.5em;
    }

#block-compromiso .col2 p span {
  color: var(--lexgeo-red);
  font-size: 1.07em;
  font-weight: 700;
}
#block-team {
  margin-bottom:7em;
  padding: 0 48px 3em 48px;
}
#block-team .container .row.team-listing {
  padding-left: 10vw;
  padding-right: 10vw;
}
#block-team h2 {
  font-size: 1.55em;
  font-weight: 700;
  font-style: normal;
  color: var(--eblack);
  letter-spacing: 0.05em;
  line-height: 1.04em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.8em;
  text-align: center;
}
#block-team .item {
  margin-bottom:36px;
}
#block-team .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
}
#block-team .item-wrapper img {
  width:100%;
  max-width: 280px;
  height: auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: -2px 10px 18px rgba(46, 45, 46, 0.2);
  transition: 0.4s transform ease, box-shadow 0.2s ease;
}
#block-team .item-wrapper h4 {
  font-family: 'Asap', sans-serif;
  font-size: 1.35em;
  font-weight: 700;
  font-style: normal;
  color: var(--lexgeo-red);
  line-height: 1.04em;
  text-transform: none;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
  text-align: center;
}
#block-team .item-wrapper h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  font-style: normal;
  color: var(--lexgeo-grey);
  line-height: 1.04em;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 1em;
  text-align: center;
}
#block-team .item-wrapper a:hover img {
  transform: scale(1.07);
  box-shadow: -2px 16px 28px rgba(46, 45, 46, 0.3);
}
#rotating-sidelogo {
  position: absolute;
  display: block;
  width: 30%;
  height: 30%;
  right: 0;
  top: 6%;
  opacity: 0.05;
  -webkit-transform: translateX(38%);
  -moz-transform: translateX(38%);
  -ms-transform: translateX(38%);
  -o-transform: translateX(38%);
  transform: translateX(38%);
  background: transparent url(../img/icons/ic_lexgeo.svg) center center no-repeat;
}

/* --------- CONTACT PAGE -------- */
#block-contactBox {
  margin-bottom: 8em;
}
#block-contactBox.cita {
  margin-bottom: 4px;
}
#block-contactBox h3 {
  color: var(--lexgeo-red);
  text-align: center;
  margin-top: 4em;
}
.location-tools {
  margin-top: 3em;
}
.location-item {
  display: block;
  margin-bottom: 1.5em;
}
.location-item img {
  display: inline-block;
  width: 24px;
  height: auto;
  margin-right: 1em;
}
.contact2-form {
    padding: 40px 24px 24px 24px;
    background-color: #ffffff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0px 12px 22px rgba(0, 0, 0, 0.16);
}
#block-contactBox .contact2-form {
  padding: 0px 24px 0 24px;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.direcc-col {
  padding-top: 6em;
}
/* ---------------  FORMS -------------- */
#block-contact-form {
  position: relative;
  margin-top: 4em;
  margin-bottom: 4em;
  padding: 0 24px 0 24px;
  background-attachment:fixed;
  background-size: 100% auto;
  background-repeat: no-repeat;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: inset 0 -30px 0 var(--bg-color);
}
    #block-contact-form::before {
      display: block;
      position: absolute;
      content: '';
      width: 100%;
      height: 30px;
      background-color: var(--bg-color);
      top: 0;
      left: 0;
    }
    #block-contact-form.cotizar {
      margin-top: 3em;
    }
.form-box {
  position: relative;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  padding: 50px 42px 24px 42px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%); 
  -ms-transform: translateX(-50%); 
  -o-transform: translateX(-50%); 
  transform: translateX(-50%);
  background-color: var(--bg-color);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
  -moz-box-shadow: 1px 9px 22px 0 rgba(50, 50, 50, 0.18);
  box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
}
.form-box-property {
  overflow: hidden;
  padding: 50px 42px 24px 42px;
  top: 0;
  background-color: var(--bg-color);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
  -moz-box-shadow: 1px 9px 22px 0 rgba(50, 50, 50, 0.18);
  box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
}
.form-box h4,
.form-box-property h4 {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 0;
  margin-bottom: 2.6em;
  text-align: center;
  text-transform: uppercase;
}
.contact2-form input {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px #E7E7E7 solid;
  font-family: 'Asap', sans-serif;
}
.contact2-form textarea {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px #E7E7E7 solid;
  font-family: 'Asap', sans-serif;
}
.contact2-form textarea:focus, .contact2-form input:focus {
  border-color: transparent !important;
}
.contact2-form .legal-txt {
  font-size: 0.88em;
  text-align: center;
  margin-top: 2em;
  padding: 0 24px;
  color: var(--body-text);
  line-height: 1.4em;
}
.contact2-form .legal-txt a {
  color: var(--body-text);
  text-decoration: underline;
}
.contact2-form .btn-gi {
  font-size: 1em;
  padding: 0.9em 1.9em 1em 1.9em;
}
.contact2-form .btn-gi:hover {
  color: #80b918;
  background-color:var(--body-text) ;
}
.bg-contact2 {
  width: 100%;  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.contact2-form {
  width: 100%;
}
.wrap-input2 {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 37px;
}
.input2 {
  display: block;
  width: 100%;
  font-size: 1.1em;
  color: var(--body-text);
  line-height: 1.2;
}
.focus-input2 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.focus-input2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--lexgeo-red);
  background: -webkit-linear-gradient(45deg, var(--lexgeo-red), var(--lexgeo-gold));
  background: -o-linear-gradient(45deg, var(--lexgeo-red), var(--lexgeo-gold));
  background: -moz-linear-gradient(45deg, var(--lexgeo-red), var(--lexgeo-gold));
  background: linear-gradient(45deg, var(--lexgeo-red), var(--lexgeo-gold));
}
.focus-input2::after {
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 0.938em;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
input.input2 {
  height: 45px;
}
input.input2 + .focus-input2::after {
  top: 16px;
  left: 0;
}
textarea.input2 {
  min-height: 115px;
  padding-top: 13px;
  padding-bottom: 13px;
}
textarea.input2 + .focus-input2::after {
  top: 16px;
  left: 0;
}
.input2:focus + .focus-input2::after {   
  color: var(--lexgeo-red);
  top: -13px;
}
.input2:focus + .focus-input2::before {
  width: 100%;
}
.input2.has-val + .focus-input2::after {    
  color: var(--lexgeo-red);
  top: -13px;
}
/* GI Material select box */
.gi-select-group {
  text-align: left;
}
.gi-select-group label {
  font-size: 0.938em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--lexgeo-grey);
  margin-top: 8px;
  margin-bottom: 0;
}
.gi-select-group select {
  border-radius: 0;
  border:none;
  border-bottom: 2px #E7E7E7 solid;
}
.gi-select-group select:hover,
.gi-select-group select:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px var(--lexgeo-gold) solid;
}
.gi-select-group select option:disabled {
  font-style: italic;
  color: #CDCDCD;
}
.m2top {
  margin-top: 40px;
}
.addr p {
  font-size: 1.1em;
  text-align: center;
  line-height: normal;
  margin-bottom: 0.4em;
}

/* --------- MODAL CITA -------- */
#citaModal .modal-content {
  border-radius: 0 0 0.6em 0.6em;
  border-top: 6px var(--lexgeo-red) solid;
}
#citaModal .modal-header .btn-close {
  margin-right: 6px;
}
#citaModal .modal-header .btn-close:focus,
#citaModal .modal-header .btn-close:hover {
  outline: none;
  border: none;
  box-shadow: none;
}
#citaModal .modal-header {
  padding-bottom: 2px;
  border-bottom: none;
}
#citaModal input.input2 {
  height: 40px;
}
#citaModal .wrap-input2 {
  margin-bottom: 24px;
}
#citaModal .gi-select-group select {
  font-size: 0.934em;
}
#citaModal .focus-input2::after {
  font-weight: 500;
}
#citaModal .gi-select-group label {
  font-weight: 500;
}

/*-----------------
[ Alert validate ]*/
.validate-input {
  position: relative;
}
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid red;
  border-radius: 8px;
  padding: 4px 35px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;
  color: red;
  font-size: 1.0em;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.alert-validate::after {
  content: "\f06a";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  color: #fff;
  font-size: 1.4em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}
.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
.grecaptcha-badge {
  visibility: collapse !important; /* reCaptcha v3 hide */
  margin: 30px auto 16px auto;
}

/* ---- Styling Jetform ---- */
.jet-form-builder__label-text {
  text-align: left;
  margin-top: 12px;
}
.jet-form-builder__field-wrap input {
  border: none;
  border-bottom: 2px var(--brand-grey) solid;
}
.jet-form-builder__field-wrap input:hover {
  outline:none;
}
.jet-form-builder__field-wrap input:focus {
  border: none;
  outline:none;
  border-bottom: 2px var(--blue) solid;
}
.jet-form-builder__field-wrap {
   text-align: left;
}
.jet-form-builder__submit-wrap {
    display: inline-block !important;
    text-align: center;
}
#contact-form .field-type-submit-field button {
    display: inline-block;
    position: relative;
    font-family: 'Asap', sans-serif;
    font-weight: 600;
    font-size: 0.875em;
    line-height: 1.4em;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    text-indent: 0;
    text-shadow: none;
    vertical-align: middle;
    color: var(--white);
    background-color: var(--blue);
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 0.5em 2.3em;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transition: color 0.3s;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#contact-form .field-type-submit-field button:hover {
    background-color: var(--engage-blue);
    box-shadow: 0px 3px 12px 1px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 12px 1px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 12px 1px rgba(0,0,0,0.16);
    transform: scale(1.05);
}
#contact-form .form-box h3,
#contact-form .form-box-property h3 {
    font-size: 1.7em;
    font-weight: 800;
    color: var(--engage-blue);
    margin-top: 0;
    text-align: center;
}
#contact-form.mb-space {
    margin-bottom: 5em;
    margin-top: 0.5em;
    padding-top: 85px;
}
.btn-cta2 {
  display: inline-block;
  position: relative;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
  text-shadow: none;
  vertical-align: middle;
  color: var(--white);
  background-color: var(--lexgeo-grey);
  border: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 28px;
  padding: 0.75em 2.1em;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.3s;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-cta2:hover,
.btn-cta2:focus {
  color: var(--white);
  background-color: var(--lexgeo-red);
  outline: none;
  box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 4px 14px 1px rgba(0,0,0,0.24);
  transform: scale(1.05);
}

/*------------- LEGAL PAGES ------------*/

#legalContent {
  margin-top: 6em;
}
#legalContent p {
  text-align: justify;
}
#legalContent h3 {
  font-size: 1.1em;
  text-transform: none;
  margin-top: 2em;
  margin-bottom: 1em;
}
#legalContent a {
  color: var(--lexgeo-red);
}
#send-this {
  margin-top: 2em;
  margin-bottom: 1.5em;
}

/*------------- SEARCH RESULTS ------------*/
.container.results h1 {
  font-size: 2.05em;
}
#block-results {
  margin-top: 5em;
  margin-bottom: 5em;
}
#internal-page-contents.generic.results #block-mainTitle {
    padding-top: 1%;
    margin-bottom: 5em;
}
.block-search-results h2 {
  font-size: 1.6em;
  text-align: left;
  color: var(--brand-black);
  margin-top: 1em;
  margin-bottom: 2em;
}
.block-search-results h4 {
  font-size: 0.938em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2em;
  margin-bottom: 0;
  border-bottom: 1px #bbbbbb solid;
}
.block-search-results p {
  font-size: 1.1em;
  margin-top: 0.7em;
}
.lity {
  background: #008000 url('../img/lity-bg.jpg') top center no-repeat;
  background-size: cover;
}
body.on-property .lity {
  background-image: none;
  background-color: rgba(73,14,103,0.92);
}
.lity-content {
    z-index: 9993;
    width: 90%;
    margin-left: 5%;
}
.lity-close {
    width: 64px;
    height: 64px;
    color: var(--engage-blue);
    text-shadow: none;
    font-size: 45px;
}
.lity-close:hover {
    color: #909090;
    text-shadow: none;
}
/*  ----------  Videos ---------- */
#block-intro-video {
  margin-top: 3em;
  margin-bottom: 2em;
}
.youtube-video {
  position:relative;
  padding-bottom:56.25%;
  height:0;
  overflow:hidden;
  -moz-border-radius: 0 28px 0 28px;
  -webkit-border-radius: 0 28px 0 28px;
  border-radius: 0 28px 0 28px;
  -webkit-box-shadow:  2px 5px 12px 0 rgba(0,0,0,0.20);
  -moz-box-shadow:  2px 5px 12px 0 rgba(0,0,0,0.20);
  box-shadow:  2px 5px 12px 0 rgba(0,0,0,0.20);
}
    .youtube-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

/*  ----------  Page transition ---------- */
#page-transit {
  -webkit-animation: page-fade 1.0s ease-in-out both;
          animation: page-fade 1.0s ease-in-out both;
}
@-webkit-keyframes page-fade {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes page-fade {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

/* --------- INDEX SLIDER -------- */
#slider-wrap {
  margin-top: 0;
  margin-bottom: 10vh;
  max-width: 100%;
  height: 100vh;
  /*max-height: 820px;*/
  max-height: 44.5vw;  /* relative to width */
  overflow: hidden;
  z-index: -50;
  position: relative;  
}
/* Slider height restrict */
/* @media(max-height: 700px) {
	  #slider-wrap {
		max-height: 100vh;
		margin-bottom: 20vh;
	  }
}  */
.hero-slider {
  height: auto;
  overflow: hidden;
}
.slick-dots {
  display:none;
}
.slick-active:focus,
.slick-active img:focus {
    outline: none;
    border: 0;
}
.slick-slide {
    position: relative;
}
.slick-slide img {
  display:block;
  width:100%;
  transition: all 1s ease;
  transform: scale(1.15);
}
.slick-slide.slick-active img {
  transform: scale(1);
  animation: letsZoom 6s 1 ease-out;
}
@keyframes letsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
