/* Definición de variables CSS para el tema light */
:root {  
  --bg-color: #fff;
  --text-color: #000;
  --accent:#97A76B;
  --grey: #707070;
  --black: #000;
  --white: #fff;
}

[id] {
  scroll-margin-top: 150px;
}
@media only screen and (max-width: 991px){
  [id] {
    scroll-margin-top: 74px;
  }
}

.w100, .size-large {
  width: 100%;
  height: auto;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 400;
}
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
}
h2 {
  font-size: 1.8rem;
}
p {
  color: var(--grey);
}
.header {
  padding: 2rem 0rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 5px #0000001a;
}
.hamburguer {
  color: var(--accent);
}
.rrss-fb a, .rrss-ig a {    
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  margin: 0 10px !important;
  display: inline-block;
  font-size: 0 !important;
}
.rrss-fb a:hover, .rrss-ig a:hover {
  text-decoration: none;
  border-bottom:none !important;
}

.rrss-fb a {background-image: url(../images/fb.svg);}
.rrss-ig a {background-image: url(../images/ig.svg);}

.logo {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 991px){
  .logo{
    width: 50px;
  }
}
.content {
  margin-top: 100px;
}
.content a {
  text-decoration: none;
  color: var(--accent);
}
.content a:hover {
  border-bottom: 1px solid var(--accent);
}
.main-menu li {
  list-style-type:none;
  line-height: 1.5rem;
}
.main-menu li a {
  margin: 1rem;
  text-transform: uppercase;
  color:var(--accent);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}
.main-menu li a:hover, .current-menu-item a {
  border-bottom: 4px solid var(--accent);
}
.offcanvas {
  background: var(--bg-color);
  color: var(--text-color);
}
.mobile-menu {
  padding: .5rem;
}
.mobile-menu li {
  list-style-type: none;
  margin: 1rem 0rem;
}
.mobile-menu li a {
  margin: .5rem;
  text-transform: uppercase;
  color: var(--text-color);
  text-decoration: none;
}
.mobile-menu li a:hover {
  border-bottom: 4px solid var(--accent);
}

.block {
  margin: 2rem 0rem 4rem;
  position: relative;
}
.block-bg-color {
  background: #97a86b1a;
  padding: 4rem 0rem;
}
.text-image p {
  margin-top:1.5rem ;
}
.text-repeater span {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.text-repeater ul {
  margin: 0;
  padding: 0;
}
.text-repeater ul li {
  list-style-type: none;
}

@media only screen and (max-width: 991px){
 .block {
   margin: 2rem 0rem;
 } 
}

.content > .block:nth-of-type(1)  {
  margin-top: 0px;
}

.footer {
  color: #fff;
  background-color: #14181a;
  border-bottom: 6px solid var(--black);
  border-top: 6px solid #21282b;
  padding:2rem 0rem 0rem;
  font-size: .9rem;
  margin-top: 2rem;
}
.footer span {
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.footer a, .footer p {
  color: var(--accent);
  text-decoration: none;
}


.hero-image {
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-image span {  
  width: 100%;
  font-size: 3rem;
  color: #172B18;
  font-weight: 700;
  text-transform: uppercase;
  /*text-shadow: 0 0 20px black;*/
  letter-spacing: .5rem;
  line-height: 3rem;
}
.call-hero {
  background-color: #172B18;
  color: #fff !important;
  font-size: 1.2rem;
  letter-spacing: normal;
  padding: .5rem 1rem;
  border-radius: 3px;
  text-shadow: none;
  font-weight: 400;
  transition: .3s all;
}
.call-hero:hover {  
  background: var(--accent);
  border-bottom: 1px solid #205d39 !important; 
}

#contacto {
  scroll-margin-top: 130px;
}

@media only screen and (max-width: 991px){
  .header {
      padding: 1rem 0rem;
  }
  .video-background-container {
    height: 30vh !important;
  }
  .hero-image {
    height: 50vh;
  }
  .hero-image span {
    width: 100%;
    font-size: 2rem;
    text-transform: uppercase;
    color: #172B18;
  } 
}

.big-image {
  min-height: 60vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.big-image span {
  width: 100%;
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--white);  
}
.big-image p {
  width: 100%;
  font-size: 2rem;
  color: var(--white);  
}

.line-r {
  width: 15%;
  height: 6px;
  background: var(--accent);
  position: absolute;
  right: 0px;
  bottom: 3%;
}
.line-l {
  width: 15%;
  height: 6px;
  background: var(--accent);
  position: absolute;
  left: 0px;
  bottom: 3%;
}
@media only screen and (max-width: 991px){
  .line-l, .line-r {
    display: none;
  }
}
.block-title {
  margin: 0;
}
.title h1 {
  color: var(--accent);  
  font-size: 2.5rem;
  font-weight: 700;
}
.title h1 span {
  font-size: 2rem;
}
/*.title h2 {
  color: var(--grey);  
  font-weight: 300;
}*/

/*dragger*/
.slider-container {
  position: relative;
  width: 100%;                                
  height: 600px;
  overflow: hidden;                   
}
@media only screen and (max-width: 991px){
    .slider-container {
        height: 300px;        
    }
}
.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.top-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}
.bottom-image {
    z-index: 1;
}
.slider-dragger {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 10px;
  background-color:#fff;
  z-index: 100;
  cursor: ew-resize;
}
.slider-dragger img {
  margin-top: 275px;
  width: 60px !important;
  margin-left: -25px;
  user-drag: none;  
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
@media only screen and (max-width: 991px){
    .slider-dragger img {
        margin-top: 130px;
        width: 40px !important;
        margin-left: -15px; 
    }
}

.video-background-container {
    position: relative;
    height: 80vh;
    overflow: hidden;                   
}
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(1);
}
.content-overlay {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    height: 100%;
}
.content-overlay-inner {
    width: 50%;
}
.content-overlay span {
    color: #fff;
    font-size: 2.5rem;
}
/*work*/
.grid-item, .grid-item-video {
    width: 31%;
    height: 200px;
    background: var(--grey);
    margin: .5rem;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
@media only screen and (max-width: 991px){
  .grid-item, .grid-item-video {
    width: 50%;
    height: 150px;    
    margin: 0;
  } 
}
.grid-item-video::after {
    background-image: url(../images/media.svg);
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 42%;
    left: 45%;
}
.list-group-item {
    border: none;
    padding: .2rem 0rem .3rem .2rem;
    font-size: .8rem;
}
.list-group-item {
  background: none;
  color: var(--text-color);
}
.list-group-item-action:focus, .list-group-item-action:hover {
  background-color: var(--accent);
}
.list-group-item:first-child, .list-group-item:last-child {
  border-radius: 0px;
}

.block-menu {
  margin-bottom:1rem !important;
}
.block-menu + .block {
  margin-top:0rem !important ;
}

.page-menu {
  display: block;
}
.page-menu a {
    text-decoration: none !important;
    border-bottom: none;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0rem .5rem;
    font-size: .7rem;
}
.page-menu a:hover {
    border-bottom: 4px solid var(--accent);
}
.call {
    background-color: var(--accent);  
    font-weight: 600;
    text-transform: uppercase;
    font-size: .7rem;
    border-radius: 2px;
}
.call:hover {
  background: #002e13;
  border-bottom: 1px solid #205d39 !important;  
}
.main-menu li.call a:hover {border-bottom:4px solid #002e13;}

.call a {
  color: white !important;
}
.icon-grid {
  width: 70%;
  margin: 0 auto;
}
.icon-item {
  width: 23%;
  float: left;
  text-align: center;
  margin: 1%;
  }

.icon-item p {
  margin-top: -40px;
}
.icon-item img { width:100% }
.icon-item span { 
  display: inline-block;
  font-size: .9rem;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 991px){
  .content {
    margin-top: 65px;
  }
  .title h1 {
    color: var(--accent);
    font-size: 2rem;
  }
  .icon-grid {
    width: 100%;
    margin: 0 auto;
  }
  .icon-item {
    width: 48%;
    float: left;
    text-align: center;
    margin: 1%;
    height: 200px;
  }
  .gallery-icon {
    width: 49.8% !important;
  }
}