/* ============================================== */
/* PRELOADER */
/* ============================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:white;
  z-index: 9999999999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

.icon{
  width: 100px;
  height: 100px;
  margin:-50px 0 0 -50px;
  top: 45%;
  left: 50%;

  position: absolute;
  background: url("./../../images/body/logo_icon.svg") no-repeat 50% 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;

}

.icon > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-back {
  background: url("./../../images/body/logo_icon_back.svg");
}

.icon{

    -webkit-animation: cacas 1s infinite;
       -moz-animation: cacas 1s infinite;
         -o-animation: cacas 1s infinite;
            animation: cacas 1s infinite;

}

@keyframes cacas {
    0% {transform: rotate3d(0,1,0,180deg);}
    100% { transform: rotate3d(0,1,0,-180deg);}
}


/* ============================================== */
/* BLOCKS */
/* ============================================== */

.block{
  width: 100%;
  float: left;
  display: block;
  padding:80px 0;
}

.block:after{
  content: " " !important;
  display: table !important;
  clear: both !important;
}

@media screen and (max-width: 768px){
  .block{padding:40px 0;}
}

/* ============================================== */
/* BUTTONS */
/* ============================================== */

.btn-outline,
.btn-read{
  display: inline-block;
  overflow: hidden;
  margin: 0;
  text-align: center;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  padding:10px 30px;
  font-size:14px;
  font-weight: 700;

  -webkit-transition:all 350ms ease;
  -moz-transition:all 350ms ease;
  -ms-transition:all 350ms ease;
  transition:all 350ms ease;

  -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);

}

/* ------- */

.btn-read{background:#A6955D;color:white;margin-top: 20px;}
.btn-read:hover{background:#c6b271;}

/* ------- */

.btn-outline{outline: 1px solid #A6955D;color:#A6955D;}
.btn-outline:hover{background:#A6955D;color:white;}

/* ------- */

.btn-more{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: block;
  background: white;
  z-index: 999;
}

.btn-more:after{
  position: absolute;
  width: 20px;
  height: 20px;
  top:50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-more:after{content: url('./../../images/icons/body/icon_more.svg');}

@media screen and (max-width: 1280px){
  .btn-more{
    width: 60px;
    height: 60px;
  }
}

/* ============================================== */
/* BUTTONS */
/* ============================================== */

input[type=submit]{

  display: inline-block;
  overflow: hidden;
  margin: 30px 0 15px;
  text-align: center;
  color: white;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  padding:10px 30px;
  font-size:14px;
  font-weight: 700;
  background-size: 200% auto;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;

  -webkit-transition:all 350ms ease;
  -moz-transition:all 350ms ease;
  -ms-transition:all 350ms ease;
  transition:all 350ms ease;

  -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);

}

input[type=submit]{
  background:#4164FF;
  color: white;
  padding:15px 20px;
  width: 100%;
}

input[type=submit]:hover{
  background:#3154f0;
}


/* ============================================== */
/* CLEAR */
/* ============================================== */

.clear{clear: both;}

/* ============================================== */
/* CONTENTS */
/* ============================================== */

.content,
.content-center,
.content-block{
  margin:0 auto;
  width:100%;
  position: relative;
  padding: 20px 30px;
}

.content:after,
.content-center:after,
.content-block:after{
  content: "";
  clear: both;
  display: block;
}

.content{max-width:1440px;}
.content-center{max-width:960px;}

@media screen and (max-width: 1280px){
  .content-block{max-width:768px;}
}


@media screen and (max-width: 768px){
  .content{width:100%;}
}

/* ============================================== */
/* BG-OVERLAY */
/* ============================================== */

.bg-overlay{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  z-index:2;
}

.bg-overlay.hard{background-color: rgba(0, 0, 0, 0.9);}
.bg-overlay.soft{background-color: rgba(0, 0, 0, 0.5);}

/* ============================================== */
/* BLOCKS-HERO */
/* ============================================== */

.blocks-hero{
  width: 100%;
  top:0;
  left: 0;
  position: absolute;
  overflow: hidden;
  height: 100vh;
  z-index: 999;
}

.blocks-hero span{
  width: 20%;
  background: white;
  overflow: hidden;
  height: 100vh;
  position: absolute;
  border-left: 1px solid #A6955D;
}

.blocks-hero span:nth-child(1){left:0;}
.blocks-hero span:nth-child(2){left:20%;}
.blocks-hero span:nth-child(3){left:40%;}
.blocks-hero span:nth-child(4){left:60%;}
.blocks-hero span:nth-child(5){left:80%;}

/* ============================================== */
/* BLOCK-BOX-HERO */
/* ============================================== */

.block-box.hero{
  width: 100%;
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
  height: 90vh;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.block-box.hero.subpage{
  height: 30vh;
  clip-path: none;
}

.text-hero{
  background: white;
  text-align: center;
  max-width: 768px;
  width: 90%;
  padding: 40px 60px;
  position: absolute;
  bottom: -300px;
  left: 50%;
  z-index: 99;

  border: 2px solid transparent;
  border-image: linear-gradient(to bottom, #A6955D 0%, white 50%) 1;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-box.hero img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px){
  .text-hero{
    bottom: -200px;
  }
}

/* ============================================== */
/* BLOCK-BOX LEFT & RIGHT */
/* ============================================== */

.block-box.left,
.block-box.right{
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 80%;
  width: 100%;
}

.block-box.left{
  flex-direction: row-reverse;
}

.block-box.left .img,
.block-box.right .img{
  max-width: 600px;
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 99;
  padding: 20px;
}

.block-box.right.subpage{
  max-width: 100%;
  margin:40px 0;
  align-items: flex-start;
}

.block-box.left.subpage .text,
.block-box.right.subpage .text{
  padding: 0 60px;
}

.block-box.left.subpage .text h2 span,
.block-box.right.subpage .text h2 span{
  width: 100%;
  display: block;
  font-size: 12px;
  font-style: italic;
}

.block-box.right .img:after{
  content: " ";
  position: absolute;
  display: block;
  overflow: hidden;
  top:0px;
  left:0px;
  max-width: 450px;
  width: 100%;
  height: 400px;
  z-index: -1;

  border: 2px solid transparent;
  border-image: linear-gradient(to bottom, #A6955D 0%, white 50%) 1;
}

.block-box.left .text,
.block-box.right .text{
  max-width: 50%;
  width: 100%;
  padding: 40px;
}

.block-box.right.outline{
  align-items: flex-end;
}

.block-box.left .img img,
.block-box.right .img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media screen and (max-width: 1280px){

  .block-box.right .img:after{
    width: 250px;
    height: 200px;
  }

  .block-box.left,
  .block-box.right{
    display: block;
    max-width: 100%;
    float: left;
    align-items: none;
  }

  .block-box.left{
    flex-direction: row;
  }

  .block-box.left .img,
  .block-box.right .img{
    max-width: 100%;
    margin-bottom: 20px;
  }

  .block-box.left .img,
  .block-box.left .text,
  .block-box.right .img,
  .block-box.right .text{
    padding: 0px;
    max-width: 100%;
  }

}

/* ============================================== */
/* BLOCK-BOX-BG */
/* ============================================== */

.block-box-bg.center,
.block-box-bg.left,
.block-box-bg.right{
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
}

.block-box-bg.center,
.block-box-bg.center .text,
.block-box-bg.left,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  width: 100%;
}

.block-box-bg.center .text,
.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper{
  left: 50%;
}

.block-box-bg.center  .text,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  position: absolute;
  top: 50%;
}

.block-box-bg.center .text,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  z-index: 3;
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text{
  padding: 60px;
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text{
  max-width: 50%;
}

.block-box-bg.left .wrapper .text{
  left: 0;
}

.block-box-bg.right .wrapper .text{
  right:0;
}

.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper{
  max-width: 1440px;
}

.block-box-bg.center .text,
.block-box-bg.right .wrapper,
.block-box-bg.left .wrapper{
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text{
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-box-bg.center .text{
  max-width: 1080px;
  padding: 20px 30px;
}

.block-box-bg.center h1,
.block-box-bg.center h2,
.block-box-bg.center p,
.block-box-bg.left h1,
.block-box-bg.left h2,
.block-box-bg.left p,
.block-box-bg.right h1,
.block-box-bg.right h2,
.block-box-bg.right p{
  color:white;
}

.block-box-bg.center img,
.block-box-bg.left img,
.block-box-bg.right img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-box-bg.center .text{
  text-align: center;
}

.block-box-bg.center,
.block-box-bg.left,
.block-box-bg.left .wrapper,
.block-box-bg.right,
.block-box-bg.right .wrapper{
  height: 70vh;
}


@media screen and (max-width: 768px){

  .block-box-bg.center,
  .block-box-bg.left,
  .block-box-bg.left .wrapper,
  .block-box-bg.right,
  .block-box-bg.right .wrapper{
    height: auto;
  }

  .block-box-bg.right .wrapper .text{
    right:none;
  }

  .block-box-bg.center .text,
  .block-box-bg.center,
  .block-box-bg.center img,
  .block-box-bg.left .wrapper .text,
  .block-box-bg.left .wrapper,
  .block-box-bg.left img,
  .block-box-bg.right .wrapper .text,
  .block-box-bg.right .wrapper,
  .block-box-bg.right img{
    max-width: 100%;
    width: 100%;
    position: relative;
    left: 0;
    float: left;
    display: block;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box-bg.center .text,
  .block-box-bg.left .wrapper .text,
  .block-box-bg.right .wrapper .text{
    padding: 20px 30px;
  }

  .block-box-bg.center img,
  .block-box-bg.left img,
  .block-box-bg.right img{
    padding:0;
  }

  .block-box-bg.center .bg-overlay,
  .block-box-bg.left .bg-overlay,
  .block-box-bg.right .bg-overlay{
    display: none;
  }

  /*-- color font --*/

  .block-box-bg.center h1,
  .block-box-bg.center h2,
  .block-box-bg.center p,
  .block-box-bg.left h1,
  .block-box-bg.left h2,
  .block-box-bg.left p,
  .block-box-bg.right h1,
  .block-box-bg.right h2,
  .block-box-bg.right p{
    color:black;
  }

}

/* ============================================== */
/* BLOCK-BOX-ALTERNATE-ROADMAP */
/* ============================================== */

.block-box-alternate-roadmap{
  display: flex;
  flex-direction: row;
  position: relative;
}

.block-box-alternate-roadmap > div span{
  display: block;
  width: 50px;
  height: 50px;
  background: white;
  position: absolute;
  top:0%;
  left: 50%;
  margin: -25px 0 0 -25px;
  z-index: 999;
  text-align: center;
  padding: 11px 0;
  color: #A6955D;
  font-weight: bold;
  border: 1px solid #A6955D;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.block-box-alternate-roadmap > div span > div{
  width: 120px;
  height: 1px;
  background:#A6955D;
  position: absolute;
  top:50%;
  left: -120px;
  z-index: 99;
}

.block-box-alternate-roadmap:nth-child(even) > div span > div{
  width: 120px;
  height: 1px;
  background:#A6955D;
  position: absolute;
  top:50%;
  left: 49px;
  z-index: 99;
}

.block-box-alternate-roadmap:first-child{
  margin-top: 180px;
}

.block-box-alternate-roadmap > div{
  max-width: 50%;
  display: block;
  padding: 0 80px 0 0;
  margin-top: -180px; 
}


.block-box-alternate-roadmap:nth-child(even) > div{
  padding: 0 0 0 80px;
}

.block-box-alternate-roadmap:nth-child(even){
  flex-direction: row-reverse;
}

.block-box-alternate-roadmap img,
.block-box-alternate-roadmap .text{
  position: relative;
  display: block;
  z-index: 999;
}

.block-box-alternate-roadmap,
.block-box-alternate-roadmap > div,
.block-box-alternate-roadmap img,
.block-box-alternate-roadmap .text{
  width: 100%;
  float: left;
}

.block-box-alternate-roadmap img{
  margin-bottom: 10px;
}

@media screen and (max-width: 768px){
  .block-box-alternate-roadmap{
    display: block;
    flex-direction: none;
  }
  .block-box-alternate-roadmap:first-child{
    margin-top: 0;
  }
  .block-box-alternate-roadmap:nth-child(even) > div{
    padding: 0;
  }

  .block-box-alternate-roadmap:nth-child(even){
    flex-direction: none;
  }
  .block-box-alternate-roadmap > div{
    max-width: 100%;
    padding:0;
    margin-top: 40px; 
  }
  .block-box-alternate-roadmap > div span{z-index: 9999;top:80px;}
  .block-box-alternate-roadmap > div span > div{display: none;}

}

/* ============================================== */
/* BLOCK-BOX-ALTERNATE */
/* ============================================== */

.block-box-alternate{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 999;
  margin: 180px 0;
}

.block-box-alternate:first-child{
  margin: 0 0 180px 0;
}
.block-box-alternate:last-child{
  margin: 180px 0 0 0;
}

.block-box-alternate:nth-child(odd){
  flex-direction: row-reverse;
}

.block-box-alternate img{
  max-width: 50%;
  position: relative; /* para mover */
}

.block-box-alternate img,
.block-box-alternate .text{
  padding: 0 40px;
  position: relative;
}

.block-box-alternate.one img{max-width: 40%;}
.block-box-alternate.two img{max-width: 70%;}
.block-box-alternate.flex{align-items: flex-end;}
.block-box-alternate.flex .text{
  background: white;
  padding: 40px 0 0 60px;
}

@media screen and (max-width: 1440px){
  .block-box-alternate{margin: 40px 0;}
  .block-box-alternate:first-child{margin: 0 0 40px 0;}
  .block-box-alternate:last-child{margin: 40px 0 0 0;}
}

@media screen and (max-width: 1280px){

  .block-box-alternate.one img,
  .block-box-alternate.two img{max-width: 100%;}
  .block-box-alternate.flex{align-items: none;}
  .block-box-alternate.flex .text{
    background: transparent;
    left: 0;
    padding: 0;
  }

  .block-box-alternate{
    display: block;
    width: 100%;
    float: left;
    align-items: none;
  }
  .block-box-alternate:nth-child(odd){
    flex-direction: none;
  }
  .block-box-alternate img{
    max-width: 100%;
    margin-bottom: 20px;
  }

  .block-box-alternate img,
  .block-box-alternate .text{
    padding: 0px;
  }

  .block-box-alternate{margin: 10px 0;}
  .block-box-alternate:first-child{margin: 0 0 10px 0;}
  .block-box-alternate:last-child{margin: 10px 0 0 0;}
}

/* ============================================== */
/* AFTER */
/* ============================================== */

.h3.after,
.h2.after{
  position: relative;
  margin-bottom: 40px;
}
.h3.after:after{
  content: url('./../../images/icons/body/icon_after.svg');
  width: 20px;
  left: 0;
  bottom: -40px;
  display: block;
  position: absolute;
}
.h2.after:after{
  position: relative;
  content: url('./../../images/icons/body/icon_after_center.svg');
  width: 200px;
  display: block;
  bottom: -40px;
}

@media screen and (max-width: 768px){
  .h2.after{
    margin-bottom: 0px;
  }
  .h2.after:after{
    bottom: 0px;
  }
}

/* ============================================== */
/* BLOCK-BOX-HALF */
/* ============================================== */

.block-box-half{
  max-width: 1440px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.block-box-half,
.block-box-half.left .img,
.block-box-half.right .img{
  height: 40vh;
}

.block-box-half.left .img img,
.block-box-half.right .img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-box-half.left .img,
.block-box-half.left .text,
.block-box-half.right .img,
.block-box-half.right .text{
  display: block;
  width: 100%;
}

.block-box-half.left .img,
.block-box-half.right .img{
  overflow: hidden;
  max-width: 100%;
  width: 100%; 
}

.block-box-half.left .text,
.block-box-half.right .text{
  padding: 0 50px;
  min-width: 400px; 
  width: 400px;
  display: block;
  float: left;
}

.block-box-half.left,
.block-box-half.right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.block-box-half.left {flex-direction: row-reverse;}


@media screen and (max-width: 768px){
  .block-box-half,
  .block-box-half.left .img,
  .block-box-half.right .img{
    height: 200px;
  }
  .block-box-half.left .img,
  .block-box-half.left .text,
  .block-box-half.right .img,
  .block-box-half.right .text{
    max-width: 100%;
    width: 100%;
  }

  .block-box-half.left,
  .block-box-half.right {
    display: block;
    flex-direction: none;
    align-items: none;
  }

  .block-box-half.left .text,
  .block-box-half.right .text{
    padding: 20px 30px;
    min-width: 100%; 
    width: 100%;
  }
}

/* ============================================== */
/* TEASER */
/* ============================================== */

.teaser ul{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.teaser li img{
  max-width: 60px;
  margin-bottom: 20px;
}

.teaser li{
  padding: 30px;
  display: block;
  text-align: center;
}


/* TEXT-LEFT */

.teaser.text-left li img{
  float: left;
}

.teaser.text-left li{
  text-align: left;
}

/* HALF */

.teaser.half ul{
  align-items: flex-start;
  justify-content: flex-start;
}

.teaser.half li{
  text-align: left;
  width: 20%;
}

/* SERVICES */

.teaser.services ul li .img{
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  background: black;
}

.teaser.services ul li .img:hover img{
  opacity: 0.6;
}


.teaser.services ul{
  align-items: flex-start;
  justify-content: center;
}

.teaser.services li{
  text-align: left;
  width: 25%;
}

.teaser.services ul li .img img{
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1280px){
  .teaser.half li{
    width: 30%;
  }

  .teaser.text-left ul{
    flex-wrap:wrap;
    justify-content: flex-start;
  }

  .teaser.text-left li{
    width: 50%;
    float: left;
  }
}

@media screen and (max-width: 768px){
  .teaser ul{
    display: block;
    align-items: none;
    justify-content: none;
  }

  .teaser li{
    padding: 20px 0;
    width: 100%;
    display: block;
    float: left;
  }

  /* TEXT-LEFT */

  .teaser.text-left ul{
    flex-wrap:none;
    justify-content: none;
  }

  .teaser.text-left li{
    width: 100%;
  }

  /* HALF */

  .teaser.half ul{
    align-items: none;
    justify-content: none;
  }

  .teaser.half li{
    width: 100%;
    padding: 10px 0;
  }
  .teaser.half li p{
    margin: 0;
  }

  /* SERVICES */

  .teaser.services ul li .img{
    width: 100%;
    height: 200px;
  }

  .teaser.services ul{
    align-items: none;
    justify-content: none;
  }

  .teaser.services li{
    width: 100%;
  }

}

/* ============================================== */
/* WE */
/* ============================================== */

.we{
  margin-top: 180px;
}

@media screen and (max-width: 768px){
  .we{
    margin-top: 80px;
  }
}

/* ============================================== */
/* VIDEO POP-UP */
/* ============================================== */


.video{
  margin:0 auto 30px auto;
  padding: 0;
  max-width: 768px;
  display: block;
  width: 100%;
  overflow: hidden;
  clear: both;
  position: relative;
}

.video a img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video:after{
  content: url('./../../images/icons/body/icon_play.svg');
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 99;
  padding: 20px;
  border-radius: 50%;
  background: white;

  top:50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video:hover a img{
  opacity: 0.8;
}

.popup-video{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: rgba(0,0,0,0.9);
  top: 0;
  left: 0;

  -webkit-transition:all 125ms ease-in;
  -moz-transition:all 125ms ease-in;
  -ms-transition:all 125ms ease-in;
  transition:all 125ms ease-in;

  -webkit-animation: fadeVideo 0.2s both 0s;
  -moz-animation: fadeVideo 0.2s both 0s;
  -ms-animation: fadeVideo 0.2s both 0s;
  -o-animation: fadeVideo 0.2s both 0s;
  animation: fadeVideo 0.2s both 0s;
}

.popup-video .box-video{
  left: 50%;
  text-align: center;
  background: white;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 99;

  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.popup-video .box-video,
.popup-video .box-video embed{
  max-width: 670px;
  width: 100%;
  height: 400px;
}

.box-video > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}

@keyframes fadeVideo {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@-moz-keyframes fadeVideo {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@-webkit-keyframes fadeVideo {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@-ms-keyframes fadeVideo {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@-o-keyframes fadeVideo {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@media screen and (max-width: 768px){
  .video{
    margin:20px auto;
  }
}

/* ============================================== */
/* FOOTER */
/* ============================================== */

.footer{
  padding: 80px 30px;
  border-top: 1px solid #A6955D;
}

.footer div{
  display: block;
  float: left;
  width: auto;
}

.footer div .h3{
  font-size: 40px;
  line-height: 50px;
}

.footer div:last-child{
  float: right;
}

@media screen and (max-width: 1280px){
  .footer{
    padding: 40px 30px;
    text-align: center;
  }
  .footer div .h3.after:after{
    left:50%;
    margin-left: -10px;
  }
  .footer div{
    width: 100%;
    float: left;
    display: block;
  }
  .footer div a.btn-outline{
    margin:20px auto;
  }
  .footer div .h3{
    font-size: 28px;
    line-height: 40px;
  }
  .footer div:last-child{
    float: left;
  }
  .footer div:last-child p{
    font-size: 12px;
  }
}

/* ============================================== */
/* FORMS CONTACT */
/* ============================================== */


form#adu{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin:0;
}

form#adu div{
  margin: 1%;
  width: 33%;
}

input,
textarea{
  padding: 15px 20px;
  width: 99%;
  margin:0.5%;
  display: block;
  float: left;
  color: black;
  overflow: hidden;
  text-align: left;
  background: #f2f2f2;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

}

textarea{
  min-height: 80px;
  resize: none;
}

input:focus{
  color: black;
  background: #f8f8f8;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

}

@media screen and (max-width: 1280px){
  form#adu{
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: none;
  }

  form#adu div{
    margin: 0;
    width: 100%;
  }
}

/* ============================================== */
/* RADIO */
/* ============================================== */

span.radio{
  width: 99%;
  margin:5px 0.5%;
  font-weight: 400;
  display: block;
  float: left;
  position: relative;
}

span.radio input{
  height: 20px;
  width: 20px;
  float: left;
  padding: 0;
  background-color: white;
  border:1px solid #A6955D;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;

  -webkit-transition:all 125ms ease-in;
  -moz-transition:all 125ms ease-in;
  -ms-transition:all 125ms ease-in;
  transition:all 125ms ease-in;
}

/*span.radio span.checkmark{
  position: absolute;
  left: 0;
  height: 25px;
  width: 25px;
  margin:  0.5%;
}

span.radio span.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

span.radio input:checked ~ span.checkmark:after {
  display: block;
}

span.radio span.checkmark:after {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border:1px solid #A6955D;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}*/

span.radio label{
  float: left;
  width: auto;
  display: block;
  margin: 0px 10px;
}

input[type="radio"]:checked{background: #A6955D;}

@media screen and (max-width: 1280px){
  span.radio{
    width: 100%;
    margin:5px 0;
  } 
}

/* ============================================== */
/* CHECKBOX */
/* ============================================== */

label.checkbox{
  width: 99%;
  margin:10px 0.5% 0;
  font-weight: 400;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border:1px solid #A6955D;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;

  -webkit-transition:all 125ms ease-in;
  -moz-transition:all 125ms ease-in;
  -ms-transition:all 125ms ease-in;
  transition:all 125ms ease-in;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #A6955D;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  display: none;
  content: url("./../../images/icons/body/icon_check.svg");
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* ============================================== */
/* MENU-LIST */
/* ============================================== */

.menu{
  width: 100%;
  margin: 10px 0;
  display: block;
  float: left;
}

.menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap:wrap;
}

.menu ul li{
  position: relative;
  width: 100%;
  margin:10px;
  padding-left: 15px;
}

.menu.list ul li{
  width: 45.5%;
}

.menu ul li:after{
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #A6955D;
  top:10px;
  left: -5px;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

@media screen and (max-width: 768px){
  .menu ul {
    display: block;
    flex-wrap:none;
  }

  .menu.list ul li{
    width: 100%;
  }
}

/* ============================================== */
/* ANIMATION */
/* ============================================== */

.animation li,
.animation div,
.animation img{
  bottom: -10px;
}

.animation li,
.animation div,
.animation img,
.animation span{
  opacity: 0;
  position: relative;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  transition:all 500ms ease;
}


.animation span{
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.animation.fade-in li,
.animation.fade-in div,
.animation.fade-in img{
  bottom: 0;
}

.animation.fade-in li,
.animation.fade-in div,
.animation.fade-in img,
.animation.fade-in span{
  opacity: 1;
}

.animation img:nth-child(1),
.animation div:nth-child(1),
.animation li:nth-child(1) {
 -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.animation img:nth-child(2),
.animation div:nth-child(2),
.animation li:nth-child(2) {
 -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.animation img:nth-child(3),
.animation div:nth-child(3),
.animation li:nth-child(3) {
 -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.animation img:nth-child(4),
.animation div:nth-child(4),
.animation li:nth-child(4) {
 -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.animation img:nth-child(5),
.animation div:nth-child(5),
.animation li:nth-child(5) {
 -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.animation img:nth-child(6),
.animation div:nth-child(6),
.animation li:nth-child(6) {
 -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.animation img:nth-child(7),
.animation div:nth-child(7),
.animation li:nth-child(7) {
 -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.animation img:nth-child(8),
.animation div:nth-child(8),
.animation li:nth-child(8) {
 -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.animation img:nth-child(9),
.animation div:nth-child(9),
.animation li:nth-child(9) {
 -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

/* ============================================== */
/* COLUMNS */
/* ============================================== */

.column-2,
.column-3 {
  column-gap: 40px;
}

.column-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.column-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

@media screen and (max-width: 768px){
  .column-2,
  .column-3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;

    column-gap: 0;
  }
}

/* ============================================== */
/* BG-COLORS */
/* ============================================== */

.bg-grey{
  display: block;
  width: 100%;
}

.bg-grey:after{
  content: "";
  clear: both;
  display: block;
}

.bg-grey{background:#f7f8fb;}

/* ============================================== */
/* ALERTS */
/* ============================================== */

.alert p{
  padding:5px 10px 5px 40px;
  position: relative;
  display: block;
  width: 100%;
  float: left;
  overflow: hidden;
  margin: 5px 0;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.alert p.warning{
  background: #fbecb7;
  border:1px solid #e5d392;
  color:#9c8a49;
}

.alert p.success{
  background: #DFF0D8;
  border:1px solid #cce2c3;
  color:#3C763D;
  padding:10px 10px 10px 40px;
}

.alert p:before{
  width: 10px;
  height: 10px;
  position: absolute;
  top:4px;
  left: 20px;
  display: block;
}


