@font-face {
  font-family: Montserrat-Black;
  src: url("../fonts/montserrat/Montserrat-Black.ttf");
}

@font-face {
  font-family: Montserrat-ExtraBold;
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf");
}

@font-face {
  font-family: Montserrat-Bold;
  src: url("../fonts/montserrat/Montserrat-Bold.ttf");
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url("../fonts/montserrat/Montserrat-Medium.ttf");
}

@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/montserrat/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-Light;
  src: url("../fonts/montserrat/Montserrat-Light.ttf");
}

@font-face {
  font-family: Montserrat-Thin;
  src: url("../fonts/montserrat/Montserrat-Thin.ttf");
}

/* VARIALES */
:root {
  --celeste: #0ca79b;
  --color-letter: #5c5c5c;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background: linear-gradient(162.16deg, #114441 -0.46%, #141A28 41.06%);
  font-family: Poppins-Regular;
}

.hidden {
  overflow: hidden;
}

.hide {
  display: none;
}

/*PRELOADER*/
.preloader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0e5a58;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0e5a58 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*END PRELOADER*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding: 0 !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.black {
  color: black;
}
.white {
  color: white;
}
.f-green {
  color: #28a029;
}
.f-dark-green {
  color: #0d5a59;
}
.bold {
  font-family: Poppins-Bold;
}
/*neo class*/
.navbar {
  width: 100%;
  /*background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  background:rgba(20, 26, 40, .6);*/
  padding: 0 !important; 
  z-index: 1050;
  position: fixed !important;
  top: 0;
  left: 0;
}

.navbar .lang-es {
  font-family: Poppins-Regular;
  color: rgba(255, 255, 255, 0.55);
}
.navbar .lang-en {
  font-family: Montserrat-Bold;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 50px;
}

.navbar-brand {
  background: url("../img/nav-bg.png") no-repeat;
  background-size: contain;
  padding-right: 80px;
}

.navbar-brand img {
  max-width: 200px;
}

.nav-item a {
  color: white;
  font-family: Poppins-Regular;
  font-size: 16px;
  margin-right: 40px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.nav-item a:hover, .nav-item a:active{
  color:#44A53D;
}

.nav-item a img {
  max-width: 25px;
}

.nav-item button {
  color: #2c9f23;
  font-family: Montserrat-Regular;
  font-size: 15px;
  margin-right: 15px;
  background-color: white;
}

.navbar .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 10px;
  margin-right: 10px;
}

.navbar .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.navbar .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar input:checked + .slider {
  background-color: #ccc;
}

.navbar input:focus + .slider {
  box-shadow: 0 0 1px #ccc;
}

.navbar input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.navbar .slider.round {
  border-radius: 34px;
}

.navbar .slider.round:before {
  border-radius: 50%;
}




@media (max-width: 575.98px) {
  .nav-item a {
    margin-right: 0;
  }
  .nav-item button {
    margin-right: 0;
  }
  .navbar .lang-en {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.dropdown-menu a {
  color: black;
  font-size: 15px;
}
.section_top img {
  width: 500px;
}
.section_top h1 {
  font-family: Montserrat-Bold;
  font-size: 35px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px black;
}
.section_top h2 {
  font-family: Montserrat-Medium;
  font-size: 25px;
  color: white;
  text-shadow: 1px 1px 2px black;
}
.section_top h3 {
  font-family: Montserrat-Regular;
  font-size: 14px;
  color: #054a38;
}

.section_top .header-modal {
  background-color: rgba(255, 255, 255, 0.8);
  width: 500px;
  height: auto;
  padding: 30px 20px;
  border-radius: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: black;
}

.section_top .row {
  min-height: 600px;
}
.section_top {
  position: relative;
  background: url("../img/bg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.section_top video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.section_top #video-bg {
  display: none;
  z-index: 1000;
}
.section_top #video-bg-2 {
  display: none;
  z-index: 1000;
}
.section_top #video-bg-sm {
  display: none;
  z-index: 500;
}
.section_top #video-bg-sm-2 {
  display: none;
  z-index: 50;
}

.section_top .left-arrow {
  z-index: 9999;
  display: flex;
  position: absolute;
  left: 0;
  width: 40px;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  color: white;
  margin-left: 2%;
  font-size: 35px;
  transform: rotate(180deg);
  cursor: pointer;
}

.arrowMargin {
	
	margin-top: -200px !important;
	
}

.section_top .right-arrow {

  z-index: 9999;
  display: flex;
  position: absolute;
  right: 0;
  width: 40px;
  margin-top: 275px;
  align-items: center;
  justify-content: flex-start;
  color: white;
  margin-right: 2%;
  font-size: 35px;
  cursor: pointer;
}

.section_top .bullets {
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  flex-direction: row;
  width: 100px;
  height: 30px;
  color: white;
}

.section_top .bullets .bullet {
  background-color: transparent;
  border-style: none;
  color: white;
}

.section_top .bullets .bullet:after {
  content: "○";
}

.section_top .bullets .active:after {
  content: "●";
}

@media (max-width: 575.98px) {
  .section_top #video-bg {
    display: none;
    z-index: 1 !important;
  }
  .section_top #video-bg-2 {
    display: none;
    z-index: 1 !important;
  }
  .section_top #video-bg-sm-2 {
    display: none;
    z-index: 5000 !important;
  }
  .section_top #video-bg-sm {
    display: none;
    z-index: 5000 !important;
  }
  .section_top {
    background: url("../img/bg1-sm.png") no-repeat center center scroll;
    background-size: cover;
  }
  .section_top img {
    width: 300px;
  }
  .section_top h1 {
    font-family: Montserrat-Bold;
    font-size: 40px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px black;
  }
}

.section_buyGBM {
  /*background: url("../img/bg2.png") no-repeat;*//*neo design*/
  color: #8e8e8e;
  position: relative;
  height: 100vh;
  min-height: 100vh;
}

.section_buyGBM .row {
  height: auto;
}

.section_buyGBM .mapa {
  height: 100%;
  min-height: 800px;
  width: 100%;
  padding: 0 !important;
  position: relative;
}

.section_buyGBM .over-map {
  position: relative; 
  background-color: white;
/*  width: 420px;
  right: 0;
  margin-right: 40px; 
  height: auto;
  max-height: 700px; */ 
  top: 10px;
  margin-bottom: -20px;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1000;
}

.section_buyGBM .over-map .inAmount {
  position: relative;
  overflow-y: scroll;
  height: auto;
  max-height: 150px;
  scrollbar-width: thin;
}

.section_buyGBM h3 {
  font-family: Montserrat-SemiBold;
  color: #0d5a59;
  font-size: 20px;
}

.section_buyGBM h4 {
  font-family: Montserrat-Bold;
  font-size: 18px;
  color: #8e8e8e;
}

.section_buyGBM h5 {
  font-family: Montserrat-SemiBold;
  color: #0d5a59;
  font-size: 16px;
}

.section_buyGBM .main-row {
  height: auto;
  min-height: 80vh;
}

.m2_options {
  font-family: Montserrat-SemiBold;
  width: 100%;
  height: 80%;
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 5px;
  color: #28a029;
  font-size: 23px;
}

.m2_options p {
  color: black;
  font-size: 22px;
}

.m2_options span {
  color: #8e8e8e;
}

.fees {
  color: #aaaaaa;
  font-size: 13px;
}

.fees h4 {
  color: gray;
  font-size: 18px;
}

.m2_options input[type="radio"] {
  margin-left: 10px;
  margin-right: 10px;
  height: 18px;
  width: 18px;
}

.m2_options_other {
  font-family: Montserrat-SemiBold;
  width: 100%;
  height: auto;
  background-color: transparent;
  /* padding: 5px 10px; */
  margin-bottom: 5px;
  color: #28a029;
  font-size: 25px;
}

.m2_options_other p {
  color: black;
  font-size: 18px;
  margin-bottom: 5px;
}

.m2_options_crypto {
  font-family: Montserrat-Bold;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 2px;
  border-color: #8e8e8e;
  border-radius: 10px;
  padding: 10px 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.m2_options_crypto img {
  max-width: 40px;
  display: inline;
}
.m2_options_crypto p {
  margin-top: 10px;
  margin-left: 10px;
  display: inline;
}

.m2_options_crypto span {
  color: #8e8e8e;
}

.fees-crypto {
  color: #8e8e8e;
  font-size: 12px;
  font-family: Montserrat-Regular;
}

.m2_options_crypto_other {
  font-family: Montserrat-SemiBold;
  width: 100%;
  height: auto;
  background-color: transparent;
  padding: 5px 10px;
  margin-bottom: 5px;
  color: #28a029;
  font-size: 25px;
}

.m2_options_crypto_other p {
  color: #28a029;
  font-size: 18px;
  margin-bottom: 5px;
}

.section_buyGBM .button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: none;
  font-family: Montserrat-Regular;
  font-size: 15px;
  background: linear-gradient(
    90deg,
    rgba(121, 159, 42, 1),
    rgba(15, 91, 88, 1)
  );
  width: 180px;
  margin-top: 10px;
}

.filtroSlider .leaflet-control {
  text-align: center;
  font-family: Montserrat-SemiBold;
  font-size: 11px;
  color: #979797;
  width: 100%;
}

.leaflet-control .over-zona:hover {
  font-family: Montserrat-Bold;
}

.leaflet-control b {
  text-align: center;
  font-family: Montserrat-semiBold;
  font-size: 1rem;
}

.section_buyGBM .token-selection {
  width: 130px;
  height: 150px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

.section_buyGBM .token-selection input[type="radio"] {
  height: 20px;
  width: 20px;
}

@media (max-width: 575.98px) {
  .section_buyGBM .main-row {
    height: 80vh;
  }
  .section_buyGBM .over-map {
    display: none;
  }
  .section_buyGBM .mapa {
    height: 80vh;
    min-height: 80vh;
  }
  .section_buyGBM h3 {
    font-size: 14px;
    font-family: Montserrat-SemiBold;
    color: #0d5a59;
  }

  .section_buyGBM h4 {
    font-family: Montserrat-Bold;
    font-size: 13px;
    color: #8e8e8e;
  }

  .section_buyGBM p {
    font-size: 12px;
  }

  .m2_options {
    font-family: Montserrat-SemiBold;
    width: 100%;
    height: auto;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 10px;
    padding: 5px 10px;
    margin-bottom: 5px;
    color: #28a029;
    font-size: 15px;
  }

  .m2_options p {
    color: black;
    font-size: 13px;
  }

  .m2_options input[type="radio"] {
    margin-left: 10px;
    margin-right: 10px;
    height: 20px;
    width: 20px;
  }

  .m2_options_other {
    font-family: Montserrat-SemiBold;
    width: 50%;
    height: auto;
    background-color: transparent;
    padding: 0px;
    margin-bottom: 0px;
    color: #28a029;
    font-size: 15px;
  }

  .m2_options_other p {
    color: black;
    font-size: 13px;
  }

  .section_buyGBM .button {
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    border: none;
    font-family: Montserrat-Regular;
    font-size: 12px;
    background: linear-gradient(
      90deg,
      rgba(121, 159, 42, 1),
      rgba(15, 91, 88, 1)
    );
    width: 180px;
    margin-top: 0px !important;
  }
}

.section_weareGBM {
  background: url("../img/bg12.png") no-repeat;
  background-position: top center;
  margin-top: -46px;
  position: relative;
  z-index: 1000;
  height: auto;
}
.section_weareGBM .row {
  height: 700px;
}

@media (max-width: 575.98px) {
  .section_weareGBM {
    background: linear-gradient(
      90deg,
      rgba(55, 48, 90, 1),
      rgba(106, 136, 117, 1)
    );
  }
  .section_weareGBM .row {
    height: auto;
  }
}

.section_weareGBM h1 {
  font-family: Montserrat-Bold;
  font-size: 30px;
}

.section_weareGBM h5 {
  font-family: Montserrat-Regular;
}

.section_weareGBM h4 {
  font-family: Montserrat-Light;
  font-size: 20px;
  color: white;
}

.weare-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  flex-wrap: nowrap;
  max-width: auto;
  overflow-x: visible;
  overflow-y: hidden;
}

.section_weareGBM .weare-icons::-webkit-scrollbar {
  height: 7px;
  background-color: #dde8e4;
}
.section_weareGBM .weare-icons::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #428c51;
}

.weare-icons div {
  color: transparent;
  transition: transform 0.2s;
  padding-top: 10px;
}

.weare-icons div:hover {
  color: white;
  transition: color 0.5s ease-out;
}

.weare-icons p {
  width: 150px;
  padding-top: 10px;
  font-size: 14px;
  font-family: Montserrat-Regular;
}

.weare-icons div img {
  position: relative;
  z-index: 2px;
  width: 75px;
  height: auto;
  transition: transform 0.2s;
}

.weare-icons div img:hover {
  transform: scale(1.3);
}

.weare-icons-future {
  position: absolute;
  font-family: Montserrat-Black;
  font-size: 20px;
  margin-top: -40px;
  margin-left: 3px;
  color: white !important;
}

.weare-icons-today {
  position: relative;
  font-family: Montserrat-Black;
  font-size: 16px;
  margin-top: -30px;
  margin-left: -68px;
  color: white !important;
}

.white-line-vertical {
  position: relative;
  background-color: white;
  height: 140px;
  width: 3px;
  bottom: 55px;
  z-index: 1px;
}

@media (max-width: 575.98px) {
  .weare-icons-future {
    margin-top: 0;
    margin-left: 0;
  }
  .weare-icons-today {
    display: none;
  }

  .white-line-vertical {
    display: none;
  }
  .weare-icons p {
    font-size: 20px;
  }
  .weare-icons div {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.white-line {
  position: absolute;
  background-color: white;
  height: 3px;
  width: 60%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
  z-index: 1px;
}

.section_triplereach {
  background: url("../img/bg3.jpg") no-repeat;
  background-position: center top;
  color: white;
  font-family: Montserrat-Medium;
}

@media (max-width: 575.98px) {
  .section_triplereach {
    background: url("../img/bg3-sm.jpg") contain;
    background-position: left center;
  }
}

.section_triplereach .row {
  height: auto;
}

.section_triplereach h2 {
  font-family: Montserrat-Bold;
  font-size: 35px;
  width: 100%;
}

.section_triplereach h3 {
  font-family: Montserrat-Bold;
  font-size: 25px;
  width: 100%;
}

.section_triplereach p {
  font-family: Montserrat-Regular;
  font-size: 20px;
  width: 100%;
}

.section_triplereach img {
  max-width: 600px;
}

@media (max-width: 575.98px) {
  .section_triplereach img {
    max-width: 90vw;
  }
  .section_triplereach h2 {
    font-family: Montserrat-Bold;
    font-size: 25px;
    width: 100%;
  }

  .section_triplereach h3 {
    font-family: Montserrat-Bold;
    font-size: 20px;
    width: 100%;
  }

  .section_triplereach p {
    font-family: Montserrat-Regular;
    font-size: 15px;
    width: 100%;
  }
}

.triplereach-gaia img {
  max-width: 110px;
  margin-right: 25px;
}

.triplereach-gaia span {
  font-family: Montserrat-Bold;
  font-size: 13px;
}

.triplereach-subscribe {
  width: 70%;
  height: 40px;
  background: rgb(21, 125, 115);
  background: linear-gradient(
    90deg,
    rgba(119, 158, 43, 1) 0%,
    rgba(21, 125, 115, 1) 100%
  );
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  font-size: 14px;
  font-family: Montserrat-Medium;
}

@media (max-width: 575.98px) {
  .triplereach-subscribe {
    width: 100%;
  }
}

.triplereach-subscribe input {
  background-color: white;
  color: #aaa;
  border-radius: 10px;
  width: 60%;
  height: 30px;
  float: right;
  border-style: none;
  text-align: center;
  font-size: 15px;
  font-family: Montserrat-Regular;
}

/* .section_triplereach button{
    color:black;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    border: none;
    font-family: Montserrat-Regular;
    font-size: 12px;
    background-color: white;
    width: 180px;
    margin-left: 10px;
} */

.section_howitworks {
  /* background: url('../img/bg17.svg') no-repeat;
    background-position: center center;
    background-size: 100vw 100%; */
  color: white;
}
.section_howitworks .row {
  height: auto;
}

.section_howitworks h2 {
  font-family: Montserrat-Bold;
  font-size: 28px;
}

.section_howitworks h5 {
  font-family: Montserrat-Bold;
  color: #72a12b;
  font-size: 18px;
}

.section_howitworks a {
  text-decoration: none;
}

.itworks-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-family: Montserrat-Medium;
  font-size: 15px;
  text-align: center;
  line-height: 20px;
}

.itworks-icons p {
  max-width: 180px;
  font-family: Montserrat-Regular;
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
}

.itworks-icons b {
  font-family: Montserrat-Bold;
  color: #006464;
}

.itworks-icons div img {
  position: relative;
  z-index: 2;
  width: auto;
  max-height: 75px;
}

.itworks-icons div {
  transition: transform 0.2s;
}

.itworks-icons div:hover {
  transform: scale(1.2);
}

.itworks-icons div {
  color: #006464 !important;
}

.hiw-titles {
  color: #006464;
  font-family: Montserrat-Medium;
}
@media (max-width: 575.98px) {
  .itworks-icons div {
    width: 50%;
  }
  .section_howitworks {
    background-color: white;
  }
}
/* @media (max-width: 1450px) {
    .section_howitworks{
        background: url('../img/bg17-big.svg') no-repeat;
    background-position: center center;
    background-size: 100vw 100%;
    color:black;
    }
} */

.section_footer {
  /*background-color: #656363;*/
  padding:100px 0px 20px 0px;
  color: white;
}
.section_footer .row {
  height: auto;
}

.section_footer h2 {
  font-family: Poppins-Bold;
  font-size: 17px;
}
.section_footer a {
  color:#ffffff;
}
.section_footer a:hover,.section_footer a:active  {
  color: #44A53D;
}
.section_footer .heimdall-logo {
  font-family: Poppins-Regular;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 12px;
  text-align: left;
  line-height: 14px;
}

@media (max-width: 575.98px) {
  .section_footer .heimdall-logo {
    text-align: center;
  }
  .section_footer .heimdall-logo img {
    margin-left: auto;
    margin-right: auto;
  }
}

.section_footer .heimdall-logo img {
  max-width: 220px;
}

.section_footer .more-gbm {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.section_footer .more-gbm img {
  max-width: 120px;
}

.section_footer .footer-communities {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
}

.section_footer .footer-communities .com-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.section_footer .footer-communities .com-row img {
  width: 40px;
}

/*.com-row .com-of {
  display: none;
}
.com-row div:hover .com-of {
  display: flex;
  position: relative;
  margin-top: -40px;
  z-index: 99;
}*/

.section_footer .btn-sub {
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 15px;
  border-style: solid;
  border-color: #779e2b;
  border-width: 4px;
  background-color: white;
  color: #0d5a59;
  font-family: Montserrat-Bold;
  text-decoration: none;
  white-space: nowrap;
}

.section_footer .footer-isologo img {
  max-width: 220px;
  margin-top: 10px;
}

.footer-divider {
  width: 100%;
  height: 2px;
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
}

.section_legals {
  /*background: rgb(21, 125, 115);
  background: linear-gradient(
    90deg,
    rgba(21, 125, 115, 1) 0%,
    rgba(119, 158, 43, 1) 100%
  );*/
  border-top:1px solid #5c5c5c;
  color: #ffffff;
  font-size:small;

}
.section_legals .row {
  min-height: 50px;
  height: auto;
}

.section_legals .legals-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.section_legals .legals-left a {
  color: white;
  text-decoration: none;
  font-family: Montserrat-Bold;
  font-size: 14px;
}

.section_legals .legals-right {
  display: flex;
  align-items: center;
  justify-content: right;
  color: white;
  font-family: Montserrat-Medium;
  font-size: 14px;
}

@media (max-width: 575.98px) {
  .section_footer .footer-communities .com-row {
    margin-bottom: 40px;
  }
  .section_legals .legals-left a {
    font-size: 12px;
  }
  .section_legals .legals-right {
    font-size: 12px;
    justify-content: center;
  }
}

/* ------------------- BUY PAGE ------------------ */

.section_gismap iframe {
  width: 99.2vw;
  height: 99vh;
  background-color: #656363;
}

.section_buy-modal {
  min-height: 70vh;
}

.section_buy-modal .row {
  height: auto;
}

.section_buy-modal .mapa {
  height: 90vh;
  width: 100%;
  padding: 0 !important;
  position: relative;
}

/* .buy-modal{
    position: absolute;
    float: right;
    z-index: 10;
    top:10%;
    right:2%;
    background-color: white;
    max-width: 370px !important;
    height: auto;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.75);
    border-radius: 10px;
    padding: 25px;
    font-family: Montserrat-Medium;
} */
#registerModal .section_register .iconeye {
  max-width: 25px;
  right: 100px;
  cursor: pointer;
  position: absolute;
  margin-top: -35px; 
  height: 30px;
  width: 30px;
}
#loginModalLabel .section_login .iconeye {
  max-width: 25px;
  right: 90px;
  cursor: pointer;
  position: absolute;
  height: 30px;
  width: 30px;
  margin-top: 27px;
}

.eyeon{
background-image: url("../img/icons/eye-open.svg");
background-repeat: no-repeat;
background-position: center center;
background-size: contain;

}
.eyeoff{
background-image: url("../img/icons/eye-closed.svg");
background-repeat: no-repeat;
background-position: center center;
background-size: contain;
}

@media (max-width: 575.98px) {
  #registerModal .section_register .iconeye {
    max-width: 25px;
    right: 30px;
    cursor: pointer;
    position: absolute;
    margin-top: -35px; 
    height: 30px;
    width: 30px;
  }
  #loginModalLabel .section_login .iconeye {
    max-width: 25px;
    right: 20px;
    cursor: pointer;
    position: absolute;
    height: 30px;
    width: 30px;
  }
}

.buy-modal-gis {
  position: absolute;
  float: right;
  z-index: 10;
  top: 20%;
  left: 2%;
  background-color: white;
  max-width: 370px !important;
  height: auto;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 25px;
  font-family: Montserrat-Medium;
}

.buy-modal .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.buy-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.buy-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.buy-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.buy-modal input:checked + .slider {
  background-color: #779e2b;
}

.buy-modal input:focus + .slider {
  box-shadow: 0 0 1px #779e2b;
}

.buy-modal input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.buy-modal .slider.round {
  border-radius: 34px;
}

.buy-modal .slider.round:before {
  border-radius: 50%;
}

.buy-modal h2 {
  font-family: Montserrat-ExtraBold;
  color: #0d5a59;
  font-size: 16px;
}

.buy-modal-gis h2 {
  font-family: Montserrat-ExtraBold;
  color: #0d5a59;
  font-size: 18px;
}

.buy-modal h3 {
  font-family: Montserrat-SemiBold;
  color: #767676;
  font-size: 20px;
  display: inline;
}

.buy-modal h4 {
  font-family: Montserrat-SemiBold;
  color: black;
  font-size: 15px;
}

.buy-modal h5 {
  font-family: Montserrat-SemiBold;
  color: black;
  font-size: 12px;
}

.buy-modal h6 {
  font-family: Montserrat-SemiBold;
  color: #767676;
  font-size: 12px;
}

.buy-modal span {
  font-size: 11px;
  padding-left: 10px;
}

.buy-modal .token-class {
  max-width: 200px;
  height: 40px;
  padding-left: 10px;
  width: 50px;
  max-height: none !important;
  float: left;
  margin-right: 10px;
}

.more-info-modal-image {
  max-width: 100%;
}

/* .buy-modal input{
    width: 100%;
    height: 35px;
    border-style: solid;
    border-color: #cccccc;
    border-width: 1px;
    border-radius: 8px;
    margin-bottom: 6px;
    color: #cccccc;
    font-family: Montserrat-Regular;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.buy-modal input::placeholder {
    color: #cccccc;
    font-family: Montserrat-Regular;
    font-size: 13px;
    padding-left:10px;
} */

.buy-modal input[type="date"] {
  color: #cccccc;
  font-family: Montserrat-Regular;
  font-size: 13px;
  padding-left: 10px;
}

.buy-modal select {
  width: 100%;
  height: 35px;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #cccccc;
  font-family: Montserrat-Regular;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  padding-left: 10px;
}

.buy-modal-gis input {
  width: 100%;
  height: 35px;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #cccccc;
  font-family: Montserrat-Regular;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.buy-modal-gis input::placeholder {
  color: #cccccc;
  font-family: Montserrat-Regular;
  font-size: 13px;
  padding-left: 10px;
}

.buy-modal-gis input[type="date"] {
  color: #cccccc;
  font-family: Montserrat-Regular;
  font-size: 13px;
  padding-left: 10px;
}

.buy-modal-gis select {
  width: 100%;
  height: 35px;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #cccccc;
  font-family: Montserrat-Regular;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  padding-left: 10px;
}

.more-info-modal {
  font-family: Montserrat-Regular;
  color: #157e73;
  font-size: 11px;
}

.more-info-modal:hover {
  color: #789e2a;
  font-size: 11px;
}

.modal-body iframe {
  width: 100%;
  min-height: 400px;
}

.colored {
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 12px 20px;
  width: auto;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.colored:hover {
  color: white;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
}

.colored:active {
  color: white;
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}

.colored-blue {
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(34, 44, 95, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 12px 8px;
  width: 150px;
  height: 40px;
  font-size: 14px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.colored-wsp {
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 12px 8px;
  width: 180px;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.colored-sm {
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 8px 6px;
  width: 100px;
  height: 30px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.uncolored {
  background-color: white;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 10px;

  color: #767676;
  font-family: Montserrat-Regular;
  padding: 12px 8px;
  width: 130px;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.back {
  background-color: white;
  border-style: solid;
  border-color: #789e2a;
  border-width: 1px;
  border-radius: 10px;
  color: #157e73;
  font-family: Montserrat-Regular;
  padding: 12px 8px;
  width: 130px;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

#moreInfoModal h1 {
  font-size: 20px;
  font-family: Montserrat-ExtraBold;
  color: #006634;
  margin-top: 30px;
}

.buy-modal .editable-input {
  width: 20%;
  color: #767676;
  font-family: Montserrat-SemiBold;
  text-align: center;
  display: inline;
  font-size: 20px;
}

.ua-modals h4 {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
}

.ua-modals input {
  font-family: Montserrat-Regular;
  font-size: 16px;
  color: #767676;
  border-color: #b4b4b4;
  border-width: 2px;
  border-radius: 10px;
}

@media (max-width: 575.98px) {
  .section_buy-modal .mapa {
    height: 120vh;
    width: 100%;
    padding: 0 !important;
    position: relative;
  }
  .buy-modal {
    top: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 310px !important;
    bottom: 1%;
  }
  .buy-modal-gis {
    top: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    max-width: 310px !important;
    padding: 15px;
  }
  .imgselect .token-class {
    max-height: 100px; 
  } 
  .mtsselect .token-class {
    max-height: 100px; 
  } 
  .buy-modal h2 {
    font-family: Montserrat-ExtraBold;
    color: #0d5a59;
    font-size: 16px;
  }

  .buy-modal h3 {
    font-family: Montserrat-SemiBold;
    color: #767676;
    font-size: 15px;
    display: inline;
  }

  .buy-modal h4 {
    font-family: Montserrat-SemiBold;
    color: black;
    font-size: 16px;
    float: left;
  }

  .buy-modal h5 {
    font-family: Montserrat-SemiBold;
    color: #767676;
    font-size: 14px;
    float: left;
  }
  .colored {
    background: rgb(120, 158, 42);
    background: linear-gradient(
      90deg,
      rgba(120, 158, 42, 1) 0%,
      rgba(21, 126, 115, 1) 100%
    );
    border-style: none;
    border-radius: 10px;
    color: white;
    font-family: Montserrat-Regular;
    padding: 8px 6px;
    width: 120px;
    height: 50px;
    font-size: 11px;
    text-align: center;
    margin-left: 30px;
    margin-right: 3px;
  }

  .coloredRight{
    background: rgb(120, 158, 42);
    background: linear-gradient(
      90deg,
      rgba(120, 158, 42, 1) 0%,
      rgba(21, 126, 115, 1) 100%
    );
    border-style: none;
    border-radius: 10px;
    color: white;
    font-family: Montserrat-Regular;
    padding: 8px 6px;
    display: inline-grid;
    width: 180px;
    position: absolute;
    right: 20px;
    bottom: 15px;
    align-content: center;
    font-size: 11px;
    text-align: center;
    margin-left: 3px;
    margin-right: 3px;
  }

  .next{
    height: 25px;
    width: 100px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  }

  .uncolored {
    background-color: white;
    border-style: solid;
    border-color: #cccccc;
    border-width: 1px;
    border-radius: 10px;
    color: #767676;
    font-family: Montserrat-Regular;
    padding: 8px 6px;
    width: 120px;
    height: 30px;
    font-size: 11px;
    text-align: center;
    margin-left: 3px;
    margin-right: 3px;
  }
  #moreInfoModal h1 {
    margin-top: 10px;
  }
  .buy-modal .editable-input {
    font-size: 15px;
  }

  .buy-modal-gis input {
    width: 50%;
    height: 25px;
  }

  .buy-modal-gis input::placeholder {
    color: #cccccc;
    font-family: Montserrat-Regular;
    font-size: 13px;
    padding-left: 10px;
  }

  .buy-modal-gis input[type="date"] {
    color: #cccccc;
    font-family: Montserrat-Regular;
    font-size: 13px;
    padding-left: 10px;
  }

  .buy-modal-gis select {
    width: 50%;
    height: 25px;
    border-style: solid;
    border-color: #cccccc;
    border-width: 1px;
    border-radius: 8px;
    margin-bottom: 6px;
    color: #cccccc;
    font-family: Montserrat-Regular;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    font-size: 13px;
    padding-left: 10px;
  }
}

/* ------------------- INITIATIVE PAGE ------------------ */

.section_initiative_top {
  background: url("../img/bg7.png") no-repeat;
  background-position: bottom center;
}
.section_initiative_top h1 {
  font-family: Montserrat-Bold;
  font-size: 55px;
}
.section_initiative_top .row {
  height: 500px;
}

.section_initiative_top h2 {
  font-size: 45px;
  font-family: Montserrat-SemiBold;
  color: white;
}

.section_gbmland {
  background: url("../img/bg-section-gbmland.png") no-repeat;
  background-position: top center;
  background-size: cover;
  height: 890px;
}

.section_gbmland .row {
  height: auto;
}

.section_gbmland h2 {
  color: #2e274e;
  font-family: Montserrat-Bold;
  font-size: 25px;
}

.section_gbmland h3 {
  color: #ffffff;
  font-size: 35px;
  font-family: Montserrat-Bold;
}

.section_gbmland p {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 24px;
}

.section_gbmland p.txt-cover {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 18px;
}
.section_gbmland p.txt-details {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 12px;
}
.section_gbmland img {
  max-height: 450px;
}

.section_gbmland button {
  color: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  display: inline-block;
  border: none;
  vertical-align: middle;
  font-family: Montserrat-Medium;
  font-size: 14px;
  background: linear-gradient(
    90deg,
    rgba(121, 159, 42, 1),
    rgba(15, 91, 88, 1)
  );
  width: 220px;
}

.section_gbmland button i {
  /*float:left;*/
  display: inline-block;
  border: none;
  background: url("../img/icons/ic-view.png") no-repeat;
  background-size: contain;
  width: 20px;
  height: 22px;
  margin-right: 3px;
}
.section_gbmland h2 {
  color: #2e274e;
  font-family: Montserrat-Bold;
  font-size: 25px;
}

.section_gbmland h3 {
  color: #ffffff;
  font-size: 35px;
  font-family: Montserrat-Bold;
}

.section_gbmland p {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 24px;
}

.section_gbmland img {
  max-height: 450px;
}

@media (max-width: 575.98px) {
  .section_gbmland img {
    max-height: 350px;
    margin-left: 17px;
  }
  .section_gbmland h2 {
    color: #2e274e;
    font-family: Montserrat-Bold;
    font-size: 20px;
  }

  .section_gbmland h3 {
    color: #28a029;
    font-size: 25px;
    font-family: Montserrat-Bold;
  }

  .section_gbmland p {
    color: #2e274e;
    font-family: Montserrat-Regular;
    font-size: 19px;
  }
  
  .subtitleText {
	  
	font-size: 15px !important;
    margin-bottom: 30px;
    margin-top: 25px;
	  
  }
  
}
.section_problem {
  background: url("../img/bg-section-problem.png") no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 40px 0px;
}
.problem-02 {
  background: url("../img/bg-problem-02.png") no-repeat;
  background-position: top center;
  background-size: contain;
  margin-bottom: 20px;
}

.problem-02 h5 {
  color: red;
  font-weight: bold;
  font-size: 2em;
}

.problem-02 p.txt-details {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 14px;
}
.problem-03 {
  background: url("../img/bg-problem-03.png") no-repeat;
  background-position: top center;
  background-size: contain;
  margin-bottom: 20px;
}
.problem-03 h5 {
  color: #167e44;
  font-weight: bold;
  font-size: 2em;
}

.problem-03 p.txt-details {
  color: #167e44;
  font-family: Montserrat-Regular;
  font-size: 14px;
}
.section_problem button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: none;
  vertical-align: middle;
  font-family: Montserrat-Medium;
  font-size: 14px;
  background: linear-gradient(
    90deg,
    rgba(121, 159, 42, 1),
    rgba(15, 91, 88, 1)
  );
  width: 220px;
}
.section_gbmland button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: none;
  font-family: Montserrat-Medium;
  font-size: 14px;
  background: linear-gradient(
    90deg,
    rgba(121, 159, 42, 1),
    rgba(15, 91, 88, 1)
  );
  width: 180px;
}

.section_gbmland .greenglobe {
  max-width: 150px;
  margin-right: 60px;
}

.section_gbmland .greenheart {
  max-width: 160px;
  margin-left: 60px;
}

/*.section_problem{
    background: url('../img/bg14.png') no-repeat;
    background-size: contain;
}*/

.section_problem h3 {
  color: #ffffff;
  font-size: 35px;
  font-family: Montserrat-Bold;
}
.section_problem p.txt-cover {
  color: #2e274e;
  font-family: Montserrat-Regular;
  font-size: 18px;
}

/* .section_problem .row{
    height: 596px;
} */
.section_problem .trans-modal {
  width: 90%;
  height: 300px;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 50px;
  margin-left: 15%;
  margin-bottom: 20%;
  overflow-x: hidden;
  overflow-y: auto;
}

.section_problem .trans-modal::-webkit-scrollbar {
  width: 7px;
  background-color: #dde8e4;
}
.section_problem .trans-modal::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #0d5a59;
}

.section_problem .trans-modal h2 {
  color: #0d5a59;
  font-family: Montserrat-Black;
  font-size: 30px;
}

.section_problem .trans-modal p {
  color: #0d5a59;
  font-family: Montserrat-Medium;
  font-size: 20px;
}

.section_problem .trans-modal span {
  color: #0d5a59;
  font-family: Montserrat-Medium;
  font-size: 45px;
  margin-left: 50%;
}

.section_problem .trans-modal li {
  color: #0d5a59;
  font-family: Montserrat-Medium;
  font-size: 30px;
}

@media (max-width: 575.98px) {
  .section_problem {
    background: url("../img/bg14-sm.png");
    background-size: auto 460px;
    background-position: right;
  }

  /* .section_problem .row{
        height: 596px;
    } */

  .section_problem .trans-modal {
    width: 90%;
    max-height: 40%;
    background: rgba(255, 255, 255, 0.65);
    padding: 30px 50px;
    margin-left: 5%;
    margin-bottom: 5%;
    margin-top: 5%;
  }
  .section_problem .trans-modal h2 {
    color: #0d5a59;
    font-family: Montserrat-Black;
    font-size: 25px;
  }

  .section_problem .trans-modal p {
    color: #0d5a59;
    font-family: Montserrat-Medium;
    font-size: 15px;
  }
  .section_problem .trans-modal span {
    color: #0d5a59;
    font-family: Montserrat-Medium;
    font-size: 40px;
    margin-left: 50%;
  }
  .section_problem .trans-modal li {
    color: #0d5a59;
    font-family: Montserrat-Medium;
    font-size: 25px;
  }
}

.section_proposal {
  /*background-color: white;*/
  background: url("../img/bg2.png") no-repeat;
  background-position: bottom center;
}

.section_proposal .row {
  height: auto;
}

.section_proposal h2 {
  color: #28a029;
  font-size: 40px;
  font-family: Montserrat-Bold;
}
.section_proposal h3 {
  color: #28a029;
  font-size: 35px;
  font-family: Montserrat-Bold;
}

.section_proposal h4 {
  color: #555;
  font-size: 23px;
  font-family: Montserrat-Bold;
}

.section_proposal h5 {
  margin-left: 25%;
  width: 50%;
  color: #555;
  font-size: 25px;
  font-family: Montserrat-Regular;
}

.section_proposal img {
  max-width: 850px;
  height: auto;
}

@media (max-width: 575.98px) {
  .section_proposal h2 {
    padding-top: 30px;
    color: #28a029;
    font-size: 20px;
    font-family: Montserrat-Bold;
  }
  .section_proposal h3 {
    color: #28a029;
    font-size: 20px;
    font-family: Montserrat-Bold;
  }

  .section_proposal h4 {
    color: #555;
    font-size: 15px;
    font-family: Montserrat-Bold;
  }
  .section_proposal h5 {
    margin-left: 0;
    width: 100%;
    color: #555;
    font-size: 15px;
    font-family: Montserrat-Bold;
  }

  .section_proposal img {
    max-width: 100%;
    height: auto;
  }
}

.section_proposal .coins {
  max-height: 200px;
}

.section_proposal .coin-title {
  color: #28a029;
  font-size: 25px;
  font-family: Montserrat-Bold;
}

.section_proposal .caracs {
  color: #888888;
  font-family: Montserrat-Medium;
  font-size: 13px;
}

.section_proposal .caracs img {
  max-height: 85px;
  margin-left: 20px;
  margin-right: 20px;
}

.section_proposal .carac-quantity {
  padding: 10px 20px;
  background: linear-gradient(
    90deg,
    rgba(55, 45, 87, 1) 0%,
    rgba(1, 162, 59, 1) 100%
  );
  width: 50%;
  color: white;
  font-family: Montserrat-Bold;
  font-size: 13px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.section_proposal .proposal {
  max-width: 300px;
  max-height: 100px;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #0e5a58;
  color: #2e274e;
  font-family: Montserrat-Bold;
  font-size: 20px;
  padding: 20px 60px;
}

.section_proposal button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: none;
  font-family: Montserrat-Medium;
  font-size: 14px;
  background: linear-gradient(
    90deg,
    rgba(121, 159, 42, 1),
    rgba(15, 91, 88, 1)
  );
  width: 180px;
}

.section_carboncredit {
  background: url("../img/bg-section-gs.png") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 30px 0px;
}

/* .section_carboncredit .row{
} */

.section_carboncredit h2 {
  color: white;
  font-family: Montserrat-Bold;
}

.section_carboncredit h3 {
  color: white;
  font-family: Montserrat-SemiBold;
}
.section_carboncredit h4 {
  color: white;
  font-family: Montserrat-SemiBold;
}

.section_carboncredit p {
  color: white;
  font-family: Montserrat-Medium;
  font-size: 20px;
}
.section_carboncredit ul {
  color: white;
  font-family: Montserrat-Regular;
  font-size: 18px;
}

.section_carboncredit .reserve-title {
  text-align: center;
  padding: 10px 20px;
  background-color: #222d5f;
  width: 50%;
  color: white;
  font-family: Montserrat-Bold;
  font-size: 20px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}

.section_carboncredit h3 {
  color: white;
  font-family: Montserrat-Bold;
  font-size: 18px;
}

.section_carboncredit .reserve-data {
  color: white;
  font-family: Montserrat-Thin;
  font-size: 16px;
}

.section_carboncredit .reserve-data-last {
  color: white;
  font-family: Montserrat-Thin;
  font-size: 16px;
}

@media (max-width: 575.98px) {
  .section_carboncredit .row {
    height: auto;
  }
  .section_carboncredit .reserve-data-last {
    padding-bottom: 100px !important;
  }
  .section_carboncredit h2 {
    margin-top: 60px;
    font-size: 25px;
  }
}

.section_intervention {
  background: url("../img/bg11.png") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 20px 0px;
}

/* .section_intervention .row{
  height: 600px;
} */

.section_intervention h2 {
  color: #2e274e;
  font-family: Montserrat-Bold;
  font-size: 35px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.intervention-img img {
  width: 280px;
}

.intervention-steps img {
  max-height: 300px;
}

.section_intervention .intervention-steps-sm {
  display: none;
}

@media (max-width: 575.98px) {
  .section_intervention img {
    max-width: 100%;
  }
  .intervention-steps-sm img {
    max-width: 100%;
  }
  .section_intervention .intervention-steps {
    display: none;
  }
  .section_intervention .intervention-steps-sm {
    display: block;
  }
  .section_intervention h2 {
    color: #2e274e;
    font-family: Montserrat-Bold;
    font-size: 25px;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}

.section_carboncredit-emision {
  background: url("../img/bg16.png") no-repeat;
  background-position: center center;
  background-size: cover;
}

.section_carboncredit-emision .row {
  height: auto;
}

.section_carboncredit-emision h2 {
  color: #322954;
  font-family: Montserrat-Bold;
  font-size: 35px;
}
.section_carboncredit-emision h3 {
  color: #322954;
  font-family: Montserrat-SemiBold;
  font-size: 27px;
}

.section_carboncredit-emision img {
  max-height: 450px;
}

.section_carboncredit-emision .carboncredit-info-sm img {
  display: none;
}

@media (max-width: 575.98px) {
  .section_carboncredit-emision {
    background: url("../img/bg16-sm.png") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .section_carboncredit-emision img {
    max-width: 100%;
  }
  .section_carboncredit-emision h2 {
    font-size: 25px;
  }
  .section_carboncredit-emision h3 {
    font-size: 19px;
  }
  .section_carboncredit-emision .carboncredit-info img {
    display: none;
  }
  .section_carboncredit-emision .carboncredit-info-sm img {
    display: block;
  }
  .section_carboncredit-emision img {
    max-height: 800px;
  }
}
.section_partner_top {
  background: url("../img/bg-section-partner.png") no-repeat;
  background-position: center center;
  background-size: cover;
}
.section_partner {
  background: #222c5f;
  padding: 20px 0px;
}
.section_partner h3 {
  color: #ffffff;
  font-family: Montserrat-SemiBold;
  font-size: 27px;
}
.section_partner p.txt-details {
  color: #ffffff;
}

#carouselPartners .carousel-inner {
  display: flex;
}
#carouselPartners .carousel-item {
  margin-right: 0;
  flex: 0 0 25%;
  display: block;
}
#carouselPartners .carousel-inner .carousel-item-right.active,
#carouselPartners .carousel-inner .carousel-item-next {
  transform: translateX(25%);
}

#carouselPartners .carousel-inner .carousel-item-left.active,
#carouselPartners .carousel-inner .carousel-item-prev {
  transform: translateX(-25%);
}

#carouselPartners .carousel-inner .carousel-item-right,
#carouselPartners .carousel-inner .carousel-item-left {
  transform: translateX(0);
}
/* ------------------- STAFF PAGE ------------------ */
.section_staff{
 padding:150px 0px 20px 0px;

}
.roww {
  width: 89vw;
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cardMember {
  width: 180px;
  height: 260px;
  margin-right: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.cardLider {
  width: 190px;
  height: 260px;
  margin-right: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.cardLider img {
  width: 190px;
}
.cardMember img {
  max-width: 150px;
}
.member-name {
  font-family: Poppins-Bold;
  color: #44A53D;
  font-size: 14px;
  height: 40px;
  padding-top: 5px;
  text-align: center;
}
.member-sector {
  font-family: Poppins-Regular;
  color: #c4c4c4;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.h4Title {
  width: 100%;
  font-size: 36px;
  color: #09BE8B;
  text-align: center;
  margin: 2em 0 1em 0;
}

/* cambiamos el orden de la card lider */
@media (max-width: 953px) {
  .member-name {
    font-size: 10px;
    height: 30px;
  }

  .orderOne {
    order: 1;
  }
  .orderThree {
    order: 2;
  }
  .orderTwo {
    order: 3;
  }
  .orderFour {
    order: 4;
  }
  .orderFive {
    order: 5;
  }
}
@media (max-width: 733px) {
  .orderThree {
    order: 1;
  }
  .orderOne {
    order: 2;
  }
  .orderTwo {
    order: 3;
  }
  .orderFour {
    order: 4;
  }
  .orderFive {
    order: 5;
  }
  .cardLider {
    width: 500px;
    order: 1;
    margin: 2em 0;
  }
  .cardMember {
    margin-right: 0;
    margin-bottom: 0;
    margin: 0 0.5em;
  }
}
@media (max-width: 669px) {
  .orderOne {
    order: 2;
  }
  .orderThree {
    order: 1;
  }
  .orderTwo {
    order: 3;
  }
  .orderFour {
    order: 4;
  }
  .orderFive {
    order: 5;
  }
}
@media (max-width: 513px) {
  .cardLider {
    margin: 0 !important;
    margin-bottom: 1em !important;
  }
  .cardMember {
    margin-bottom: 1em !important;
  }
  .member-sector {
    font-size: 10px;
    text-align: center;
  }
}
/* ---------------------------------------------------------------------------- */
.section_affiliate {
  /*background: rgb(239, 254, 206);
  background: linear-gradient(
    90deg,
    rgba(239, 254, 206, 1) 0%,
    rgba(190, 227, 221, 1) 100%
  );*/
  margin:10px;
  border:1px solid white;
  border-radius:10px;
}
.section_affiliate .row {
  min-height: 300px;
  height: auto;
}

.section_affiliate h2 {
  color: #ffffff;
  font-family: Poppins-Bold;
  font-size: 30px;
  text-align: center;
}

.section_affiliate h3 {
  color: #ffffff;
  font-family: Roboto-Regular;
  font-size: 20px;
  text-align: center;
}

.aff-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.aff-icons img {
  position: relative;
  z-index: 2px;
  width: 90px;
  transition: transform 0.2s;
}

.aff-icons img:hover {
  transform: scale(1.2);
}

.aff-tiles {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

@media (max-width: 575.98px) {
  .section_affiliate h2 {
    font-size: 22px;
  }
  .aff-tiles {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 97%;
    margin-left: 2px;
  }
}

.aff-tiles div {
  width: auto;
  font-family: Roboto-Regular;
  font-size: 14px;
}

.gradient-line {
  position: absolute;
  background: rgb(21, 125, 115);
  background: linear-gradient(
    90deg,
    rgba(21, 125, 115, 1) 0%,
    rgba(119, 158, 43, 1) 100%
  );
  height: 4px;
  width: 20%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  z-index: 1px;
}

@media (max-width: 575.98px) {
  .gradient-line {
    width: 90%;
  }
}

.section_joinus {
 
  padding:150px 0px 20px 0px;
}

.section_joinus .row {
  height: auto;
  min-height: 60vh;
}

.section_joinus h2 {
  color: #ffffff;
  font-family: Montserrat-Black;
  font-size: 35px;
}

.section_joinus .join-tile {
  color: #28a029;
  font-family: Montserrat-Bold;
  font-size: 25px;
}

.section_joinus .join-select {
  border-radius: 10px;
  border-width: 0px;
  border-style: none;
  height: 45px;
  width: 400px;
  color: #6f6f6f;
  padding-left: 10px;
  font-family: Montserrat-Bold;
  font-size: 20px;
}

.section_joinus .join-input {
  border-radius: 10px;
  border-width: 0px;
  border-style: none;
  height: 45px;
  width: 400px;
  color: #6f6f6f;
  padding-left: 10px;
  font-family: Montserrat-Bold;
  font-size: 20px;
}

.section_joinus .join-options {
  color: #6f6f6f;
  font-family: Montserrat-Bold;
  font-size: 23px;
}

.section_joinus .info-inputs {
  width: 100%;
  height: 90%;
}

.section_joinus .rrss-white {
  width: 100%;
  height: 75%;
  background-color: white;
  border-radius: 15px;
}

.section_joinus .btSubmit {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  border-radius: 3px;
  background: #09BE8B;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

.section_buy-modal .buy-modal {
  position: absolute;
  z-index: 1000;
}

.section_buy-modal .buy-modal-gis {
  position: absolute;
  z-index: 1000;
}

/* -------------------- SECTION STEGANOGRAPHY -------------------- */

.section_steganography {
  background-color: #f4f3f3;
  font-family: "Montserrat";
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.section_steganography .title {
  color: var(--celeste);
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-family: Montserrat-Bold;
}
.section_steganography .decode {
  background-color: white;
  border-radius: 6px;
  padding-top: 23px;
  padding-bottom: 28px;
}
.section_steganography .decode .izq,
.section_steganography .decode .der {
  padding-left: 30px;
  padding-right: 30px;
}
.section_steganography .decode .title {
  color: var(--celeste);
  font-size: 20px;
  text-align: center;
  font-family: Montserrat-SemiBold;
}
.section_steganography .decode .explain {
  color: var(--color-letter);
  font-size: 16px;
  font-family: Montserrat-Regular;
  margin-bottom: 0;
}
.decodificar {
  color: #018786;
  font-size: 16px;
  font-family: Montserrat-Regular;
  padding: 0;
  margin: 0;
}
.section_steganography .decode .der img {
  width: 100%;
  margin-top: 28px;
}
.section_steganography .decode .izq .group-span-filestyle {
  border: 1px solid #ced4da;
  background-color: var(--celeste);
}
.section_steganography .decode .izq .group-span-filestyle .buttonText {
  font-family: Montserrat-Regular;
  color: white;
}
.section_steganography .decode .izq .error {
  color: red;
  font-size: 12px;
}
.section_steganography .decode .izq .waiting {
  color: green;
  font-size: 14px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}
.section_steganography .decode .izq .resultError {
  color: red;
  font-size: 14px;
  text-align: center;
}
.section_steganography .decode .btn {
  background-color: var(--celeste);
  color: white;
  width: 160px;
}
.section_steganography .decode .izq .btnDeco {
  margin-top: 10px;
  font-family: Montserrat-Regular;
}
#resultModal {
  top: 100px;
}
#resultModal .modal-title {
  color: var(--celeste);
  margin: 0 auto;
}
#resultModal .modal-body {
  color: var(--color-letter);
  text-align: center;
}
#resultModal .modal-body #url {
  color: var(--color-letter);
}
#resultModal .modal-body .close {
  text-align: right;
  position: relative;
  right: -4px;
  margin-bottom: -2px;
  margin-top: 10px;
}
#resultModal .modal-body .close a {
  text-decoration: none;
}
#resultModal .modal-body .icon-copy {
  cursor: pointer;
}

@media (max-width: 768px) {
  .section_steganography .decode .izq,
  .section_steganography .decode .der {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section_steganography {
    padding-left: 10px;
    padding-right: 10px;
  }
}

img.delete {
  cursor: pointer;
}

#more {
  display: none;
}

.more {
  color: rgb(40, 71, 26);
  font-size: 13px;
  padding: 3px;
  cursor: pointer;
}
.disabled {
  color: #aaa !important;
  background-color: #ddd !important;
}
.disabled span {
  color: #aaa !important;
}

/* SECCION CARBONO */

.section_carbono {
  min-height: 70vh;
}

.section_carbono .row {
  height: auto;
}

.section_carbono .mapa {
  height: 70vh;
  width: 100%;
  padding: 0 !important;
  position: relative;
}

.section_carbono .over-map {
  position: absolute;
  background-color: white;
  width: 420px;
  left: 5%;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1000;
  height: auto;
  top: 10%;
  overflow-y: auto;
  max-height: 500px;
}

.section_carbono .over-map input {
  width: 100%;
  border-radius: 10px;
  background-color: #ddd;
  border-style: none;
  margin-bottom: 10px;
}

.section_carbono .over-map .field {
  font-family: Montserrat-Medium;
  text-align: right;
}

.section_carbono .over-map img {
  max-height: 30px;
}

.section_carbono h3 {
  font-family: Montserrat-SemiBold;
  color: #0d5a59;
  font-size: 22px;
}

.section_carbono p {
  font-family: Montserrat-Medium;
  color: #777;
  font-size: 16px;
}

.section_corpo {
  position: relative;
  background: url("../img/bg18.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: -100px;
  color: white;
}

.section_corpo .row {
  height: auto;
  min-height: 652px;
}

.section_corpo h2 {
  font-family: Montserrat-Bold;
}

.section_corpo p {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
}

.section_weareGBM .carousel {
  width: 50%;
  margin-top: 100px;
  text-align: center;
  height: auto;
}
@media (max-width: 575.98px) {
  .section_weareGBM .carousel {
    width: 100% !important;
    margin-top: 100px !important;
  }
  
  .section_weareGBM .carousel-item img {
	  
    width: 315px !important;
	margin-top: 55px !important;
    margin-right: 20px !important;
  }
  .section_weareGBM .carousel-item {
    height: 100px;
  }
  
  .arrowMargin {
    margin-top: -130px !important;
    width: 20px !important;
  }
  
  .carousel-indicators {
	  
	  margin-top: 50px;
	  margin-left: 10px !important;
	  width: 350px !important;
	  
  }
}

@media (max-width: 1450px) {
  .section_weareGBM .carousel {
    width: 80%;
    margin-top: 100px;
  }
  .section_weareGBM .carousel-item img {
    width: 80%;
    margin: auto;
  }
  .section_weareGBM .carousel-item {
    height: 250px;
  }
}

.section_weareGBM .carousel-caption {
  font-family: Montserrat-Regular;
}

.section_weareGBM .carousel-caption p {
  margin-left: -11%;
}

.section_weareGBM .carousel-indicators {
  position: absolute;
  top: -100px;
}

.section_weareGBM .carousel-item {
  height: 390px !important;
}

.section_weareGBM .carousel-item img {
  width: 50%;
  margin: auto;
}

.section_weareGBM .carousel-indicators [data-bs-target] {
  width: 300px !important;
  height: 200px !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.section_weareGBM .carousel-indicators [data-bs-target]:hover {
  opacity: 1;
}

/*Section Shopping Guide*/
.section_shopping_guide {
  position: absolute;
 /* background: url("../img/neo/mapbase.png") no-repeat;*/
  background-position: center center;
  background-size: cover;
  margin-top: 100px;
  padding: 20px 0px;
  border-top: 1px solid green;
  border-bottom: 1px solid green;
  height: 100%;
  min-height: 800px;
  z-index: 998;
}
.section_shopping_guide .mapa {
  height: 100%;
  min-height: 800px;
  width: 100%;
  padding: 0 !important;
  position: relative;
}
.section_shopping_guide .box-shop-guide {
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  z-index: 9998;
}
.section_shopping_guide .box-guide {
  /*background-color: rgba(255, 255, 255, 0.8);*//*neo design*/
  margin-bottom: -20px;
  border-radius: 10px;
  padding: 20px;
  z-index: 1000;
  height: auto;
  max-height: 780px;
}

.section_shopping_guide h2 {
/*  margin-top: 50px;
  font-family: Montserrat-Bold;
  color: #5c5c5c;
  font-size: 30px; */

  font-family: Montserrat-ExtraBold;
  color: #0d5a59;
  font-size: 16px;
}
.section_shopping_guide .text-rights {
  text-align: right;
}
.section_shopping_guide a.saltar {
  color: #000000;
  margin: 20px;
}
.section_shopping_guide .back-guide {
  border: none;
  color: #5c5c5c;
  text-decoration: none;
  background: rgb(255, 255, 255);
  border-style: none;
  border-radius: 10px;
  font-family: Montserrat-Regular;
  padding: 12px 20px;
  width: auto;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.section_shopping_guide .box-instruction {
  background-color: white;
  margin-bottom: -20px;
  border-radius: 10px;
  padding: 20px;
  z-index: 1000;
  height: auto;
  max-height: 780px;
}
.section_shopping_guide .box-instruction h4 {
  color: #5c5c5c;
  font-size: 20px;
}
.section_shopping_guide .box-instruction h6 {
  color: #d2d2d2;
  font-size: 18px;
  margin-bottom: 10px;
}
.section_shopping_guide .box-instruction small {
  color: #d2d2d2;
  font-size: 11px;
  font-style: italic;
  margin: 3px;
}
.section_shopping_guide input.input-guide {
  width: 100%;
  height: 44px;
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
  text-indent: 5px;
  font-size: 35px;
  font-family: Montserrat-Bold;
  color: #4cc235;
  border-radius: 5px;
  border: solid 1.5px #d3d3d3;
  -webkit-transition: 1s; /* Safari */
  transition: 1s;
}

.modalStyle {
  position: initial;
  top: 100px;
  margin: inherit;
  align-items: inherit;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.modal-content{
  width: 700px;
}

.gbmClass {
  margin-top: 1.5em;
  margin-bottom: 2em;
}
.modalStyle h3 {
  font-weight: bold;
  font-size: 16px;
  color: #5c5c5c;
  margin-bottom: 1em;
}

.modalStyle p {
  font-size: 14px;
  color: #5c5c5c;
}

.modalStyle pExito {
  font-size: 12px;
  color: #d7b615;
  width: 325px;
}

.modalStyle h5 {
  color: #3169c0;
  font-size: 12px;
  font-weight: bold;
  margin-top: 2em;
}
.modalStyle b {
  font-size: 12px;
  color: #5c5c5c;
}

.aModal {
  font-size: 12px;
  color: #5c5c5c;
}

.fadeModal {
	
	background-color: #fff0 !important;
	border: 0px solid rgba(0,0,0,.2) !important;
	
}

.modalButton {
  width: 274px;
  height: 42px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background-image: linear-gradient(90deg, #016464 0%, #7fa824 100%);
  margin-top: 2em;
  color: white;
}

.fadeText {
    font-size: 20px !important;
    color: #ffffff !important;
	text-shadow: 1.5px 1px #939393 !important;
}

.emailTitle {
	
	font-size: 20px !important;
	font-weight: bold !important;
	color: #018786 !important;
	
}


.emailLink {
	
	font-size: 12px;
	color: #4040FF !important;
	
}

.emailModalStyle {
	
	margin: inherit;
	padding: 4.5em;
	
}

.modalInput {
  width: 335px;
  height: 40px;
  padding: 1em;
  border: 2px solid #c4c4c4;
  outline: none;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 1em;
  color: #c4c4c4;
  display: flex;

  font-size: 12px;
}

.modalUp {
    margin-top: -50px;
	
}

.verificationInput {
	
	width: 25px;
	height: 50px;
	
}

input.input-guide[type="text"]:hover {
  box-shadow: 0 0 5pt 0.5pt #d3d3d3;
}
input.input-guide[type="text"]:focus {
  box-shadow: 0 0 5pt 2pt #d3d3d3;
  outline-width: 0px;
}

.section_shopping_guide .progressguide {
  margin: 10px 0 50px 0;
  counter-reset: step;
}
.section_shopping_guide .progressguide li {
  list-style-type: none;
  width: 33%;
  float: left;
  font-size: 11px;
  font-weight: bold;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.section_shopping_guide .progressguide li:before {
  width: 32px;
  height: 32px;
  content: "";
  color: rgb(68, 68, 68);
  line-height: 28px;
  border: 2px solid #ffffff;
  background-color: #fffbfb;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  transition: all 0.8s;
}
.section_shopping_guide .progressguide li.st1:before {
  content: "1" !important;
}
.section_shopping_guide .progressguide li.st2:before {
  content: "2" !important;
}
.section_shopping_guide .progressguide li.st3:before {
  content: "3" !important;
}

.section_shopping_guide .progressguide li:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #7d7d7d;
  top: 15px;
  left: -50%;
  z-index: -1;
  transition: all 0.8s;
}
.section_shopping_guide .progressguide li:first-child:after {
  content: none;
}
.section_shopping_guide .progressguide li.active:before {
  border-color: #4cc235;
  background-color: #4cc235;
  transition: all 0.8s;
}
.section_shopping_guide .progressguide li.active:after {
  background-color: #4cc235;
  transition: all 0.8s;
}
.section_shopping_guide .token-selection {
  width: 130px;
  height: 150px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
  -webkit-box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
/*  margin-bottom: 50px; */
}
.section_shopping_guide .token-selection h4 {
  font-family: Montserrat-SemiBold;
  color: #5c5c5c;
  font-size: 15px;
}
.section_shopping_guide #bt-zona-lagarto:hover {
  cursor: pointer;
}
.section_shopping_guide #bt-zona-yaguarete:hover {
  cursor: pointer;
}
.section_shopping_guide .token-selection h6 {
  font-family: Montserrat-SemiBold;
  color: #767676;
  font-size: 11px;
}
.section_shopping_guide .token-selection input[type="radio"] {
  height: 20px;
  width: 20px;
  z-index: 100;
}
.section_shopping_guide .details-zona-lagarto,
.section_shopping_guide .details-zona-yaguarete,
.section_shopping_guide .details-proccess {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 10px;
}
.section_shopping_guide .bt-close-zona {
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  background-color: black;
  font-size: 12px;
  float: right;
}
.section_shopping_guide .box-animal {
  background: white;
  padding: 20px;
  border-radius: 10px;
}
.section_shopping_guide .box-animal h2 {
  margin-top: 5px;
  font-family: Montserrat-Bold;
  color: #4cc235;
  font-size: 24px;
  text-align: center;
}
.section_shopping_guide .box-animal p {
  font-family: Montserrat-Regular;
  color: #5c5c5c;
  font-size: 14px;
}
.section_shopping_guide .box-animal p.info-animal {
  font-family: Montserrat-Regular;
  color: #5c5c5c;
  font-size: 12px;
}
.section_shopping_guide .box-animal p.info-animal span {
  font-family: Montserrat-Bold;
  color: #4cc235;
  font-size: 12px;
}
.section_shopping_guide .box-animal p.tokendetails {
  margin-top: 20px;
  font-family: Montserrat-Regular;
  color: #5c5c5c;
  font-size: 12px;
  text-align: left;
}
.section_shopping_guide .box-animal p.txt-details {
  margin-top: 0px;
  font-family: Montserrat-Bold;
  color: #5c5c5c;
  font-size: 11px;
}
.section_shopping_guide .coin-subtitle {
  color: #999999;
  font-size: 20px;
  font-family: Montserrat-Bold;
}
.section_shopping_guide .caracs {
  color: #888888;
  font-family: Montserrat-Bold;
  font-size: 12px;
}
.section_shopping_guide .box-animal img {
  width: 100%;
}
.section_shopping_guide .caracs img {
  max-height: 78px;
  margin-left: 20px;
  margin-right: 20px;
  width: auto !important;
}

.section_shopping_guide .scrollbar {
  height: 630px;
 /* overflow-y: scroll; */
  margin-bottom: 35px;
}

.section_shopping_guide.force-overflow {
  min-height: 450px;
}

.section_shopping_guide .box-animal::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.section_shopping_guide .box-animal::-webkit-scrollbar {
  width: 5px;
  margin-right: 3px;
  background-color: #f5f5f5;
}

.section_shopping_guide .box-animal::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 1px solid #555555;
}

.dark {
/*  background: #d4d4d4 !important; */
  background: rgb(188, 189, 187);
  background: linear-gradient(
    90deg,
    rgba(188, 189, 187, 1) 0%,
    rgb(81, 82, 82) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 12px 20px;
  width: auto;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}
.section_shopping_guide .bullets {
  z-index: 9999;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100px;
  height: 30px;
  color: white;
}

.section_shopping_guide .bullets .bullet {
  background-color: transparent;
  border-style: none;
  color: white;
}

.section_shopping_guide .bullets .bullet:after {
  content: "○";
}

.section_shopping_guide .bullets .active:after {
  content: "●";
  color: #4cc235;
}

.section_shopping_guide .details-guide-stepThree {
  text-align: left;
}

.section_shopping_guide .details-guide-stepThree ul li {
  color: #888888;
  font-family: Montserrat-Bold;
  font-size: 18px;
  list-style-image: url("../img/lichecked.png");
}
.section_shopping_guide .instructionStepThree .h4 {
  color: #5c5c5c;
  font-family: Montserrat-Bold;
  font-size: 25px;
}
.section_shopping_guide .instructionStepThree .h5 {
  color: #016464;
  font-family: Montserrat-Bold;
  font-size: 20px;
}
.section_shopping_guide .instructionStepThree .h6 {
  color: #242468;
  font-family: Montserrat-Bold;
  font-size: 46px;
}

.section_shopping_guide .instructionStepThree ul li {
  color: #018786;
  font-family: Montserrat-Bold;
  font-size: 14px;
  list-style-type: none;
  text-align: left;
}
.section_shopping_guide .instructionStepThree ul li img {
  float: right;
  cursor: pointer;
}

.section_login .userError,
.section_login .passwordError {
  color: red;
}

.section_register .registerError,
.section_register .termsRegisterError {
  color: red;
}

.translate {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  margin: 0;
  margin-right: 1em;
  font-weight: bold;
}

.selected {
  border-bottom: 2px solid white;
  color: white;
}

.tuto_elige_m2 {
  width: 100%;
  background: white;
}

.tuto_elige_token{
  width: 100%;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 1200px !important;
	}

}

/*///////////////////*/
/*//Style Neo Index/////////////*/
/*///////////////////*/
/*********************************************neo*/
.nav-item button.btlogin {
    color: #ffffff;
    font-family: Poppins-Regular;
    font-size: 15px;
    margin-right: 15px;
    margin-bottom:10px;
    background: transparent;
    border:1px solid white;
  }
  .nav-item button.btregister {
    color: #ffffff;
    font-family: Montserrat-Regular;
    font-size: 15px;
    margin-right: 15px;
    margin-bottom:10px;
    background-color: #09BE8B;
  }
/*********************************************neo*/

.navbar-dark .navbar-toggler {
    background-color: #09BE8B!important;
    color: rgba(255,255,255,.8)!important;
    border-color: rgba(255,255,255,.8)!important;
    margin-right: 5px!important;
}

.section_header_content{
    background: url("../img/neo/portada-pitch1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0px 30px 0px;
    height:100vh;

}
.section_header_content img{
    width: 400px;
}
.section_header_content h2{

font-family: Poppins-Regular;
font-size: 2rem;
font-style: normal;
font-weight: 700;
line-height: 40px;
letter-spacing: 0.25px;
text-align: left;
color:#ffffff;
margin:0px 50px 40px 50px;

}
.section_header_content h4{
    font-family: Poppins-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
    text-align: left;
    color:#ffffff;
    margin:0px 20px 0px 50px;
    }
.section_header_content button.btn-buycoin{
        font-family: Poppins-Regular;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.25px;
        text-align: left;
        color:#ffffff;
        margin:20px 0px 90px 50px;
        background:#09BE8B;
        border-radius:8px;
        border:none;
        padding:10px 20px;
    }   
.section_header_content p{
    font-family: Poppins-Regular;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
    text-align: center;
    color:#ffffff;
    margin:50px 0px 30px 0px;
}

.section_milestones{
    background: url("../img/neo/bg-milestones.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 120px 0px 100px 0px;

}
.section_milestones h2{
    font-family: Poppins-Regular;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.25px;
    text-align: left;
    color:#ffffff;
    margin:0px 50px 40px 50px;

}
.section_milestones h3{
    font-family: Poppins-Regular;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.25px;
    text-align: left;
    color:#ffffff;
    margin:0px 0px 40px 0px;

}
.section_milestones img.idea{
    width:150px;

}
.section_milestones .boxIdea{

  text-align: center;
}
.section_milestones .boxIdeatxt{
  margin-left: -130px;
  padding-top: 30px!important;
}

#barrieslg{
  display:block;
}
#barriessm{
  display:none;
}

@media (max-width: 575.98px) {
  .nav-item button.btlogin {
    color: #ffffff;
    font-family: Poppins-Regular;
    font-size: 15px;
    margin-right: 0px;
    margin-bottom:10px;
    background: transparent;
    border:1px solid white;
  }
  .nav-item button.btregister {
    color: #ffffff;
    font-family: Montserrat-Regular;
    font-size: 15px;
    margin-right: 0px;
    margin-bottom:10px;
    background-color: #09BE8B;
  }
.navbar {
    width: 100%;
    background:rgba(20, 26, 40, .95);
    padding: 0 !important; 
    z-index: 1050;
    position: fixed !important;
    top: 0;
    left: 0;
  }
  #world3d{
      display:none;
  }
  #datasup{
    display:none;
  }
  .section_milestones h2{
      text-align: center;
  }
  .section_milestones h3{
      text-align: center;
  }
  .section_milestones img.idea{
    width:50px;
  }
  .section_milestones .boxIdea{
    width: 56px !important;
    text-align: left;
  }
  .section_milestones .boxIdeatxt{
    width: 300px !important;
    padding-top: 30px!important;
    margin-left: 0px;
  }
  #barrieslg{
    display:none;
  }
  #barriessm{
    display:block;
  
  }
  #barriessm .boxmilestones{
    background: none;
    border:1px solid #7d7d7d;
    border-radius: 10px;
    margin:0px 10px;
  }

}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline{
  margin-top: -65px;
}
.timeline ul.milestones {
    background: transparent;
    padding: 50px 0;
  }
  
  .timeline ul.milestones li {
    list-style-type: none;
    position: relative;
    width: 5px;
    margin: 0 auto;
    padding-top: 50px;
    background: #2D3748;
    border-radius: 10px;
  }
  .timeline ul.milestones li p {
    vertical-align: middle;
  }
  .timeline ul.milestones li p img {
    float: left;
    margin-right: 5px;
    margin-top: -3px;
  }

  .timeline ul.milestones li::before {
    content: url(../img/neo/item-milestones.png);
    text-align: center;
    padding-top: 5px;
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #09BE8B;
    z-index: 1;
  }

  .timeline ul.milestones li.upComing::before {
    content: url(../img/clock-01.svg);

    text-align: center;
    padding-top: 0px;
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #09BE8B;
    z-index: 1;
  }
  .timeline ul.milestones li.upComing span.row_span_box{
    background-image: url(../img/clock-01.svg);
    background-position: right center;
    background-size: 15px;
    background-repeat: no-repeat;
  }
  .timeline ul.milestones span.row_span_box{
    margin-bottom:15px;
  }

  .timeline ul.milestones li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 15px;
    background: #1E2738;
    color:#ffffff;
  }
  
  .timeline ul.milestones li div::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
  }
  
  .timeline ul.milestones li:nth-child(odd) div {
    left: 45px;
  }
  
  .timeline ul.milestones li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #1E2738 transparent transparent;
  }
  
  .timeline ul.milestones li:nth-child(even) div {
    left: -439px;
  }
  
  .timeline ul.milestones li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #1E2738;
  }
  
  time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: -15px;
    color:#ffffff;
  }
  time.tl {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: -18px;
    margin-left:-180px;
    color:#ffffff;

  }
  time.tr {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: -18px;
    margin-left:500px;
    color:#ffffff;

  }
  
  /* EFFECTS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .timeline ul.milestones li::before {
    transition: background 0.5s ease-in-out;
  }
  
  .timeline ul li.in-view::before {
    background: #09BE8B;
  }
  
  .timeline ul.milestones li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  
  .timeline ul.milestones li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
  }
  
  .timeline ul.milestones li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
  }
  
  .timeline ul.milestones li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
    border-radius:10px;
  }
  
  
  /* GENERAL MEDIA QUERIES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  @media screen and (max-width: 900px) {
    .timeline ul.milestones li div {
      width: 250px;
    }
    .timeline ul.milestones li:nth-child(even) div {
      left: -289px;
      /*250+45-6*/
    }
  }
  
  @media screen and (max-width: 600px) {
    .timeline ul.milestones {
      background: transparent;
      padding: 30px 0;
    }
    .section_milestones .boxIdea{
      margin-left: -2px;
    }
    .timeline ul.milestones li {
      margin-left: 20px;
    }
    .timeline ul.milestones li div {
      width: calc(100vw - 91px);
    }
    .timeline ul.milestones li:nth-child(even) div {
      left: 45px;
    }
    .timeline ul.milestones li:nth-child(even) div::before {
      left: -15px;
      border-width: 8px 16px 8px 0;
      border-color: transparent #1E2738 transparent transparent;
    }

    time.tl {
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        margin-left:0px;
        color:#ffffff;
    
      }
      time.tr {
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        margin-left:0px;
        color:#ffffff;
    
      }
  }
  
  
  /* EXTRA/CLIP PATH STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .timeline-clippy ul.milestones li::before {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
  
  .timeline-rhombus ul.milestones li::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  
  .timeline-rhombus ul.milestones li div::before {
    bottom: 12px;
  }
  
  .timeline-star ul.milestones li::before{
    clip-path: polygon(
      50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%
    );
  }
  
  .timeline-heptagon ul.milestones li::before {
    clip-path: polygon(
      50% 0%,
      90% 20%,
      100% 60%,
      75% 100%,
      25% 100%,
      0% 60%,
      10% 20%
    );
  }
  
  .timeline-infinite ul.milestones li::before {
    animation: scaleAnimation 2s infinite;
  }
  
  @keyframes scaleAnimation {
    0% {
      transform: translateX(-50%) scale(1);
    }
    50% {
      transform: translateX(-50%) scale(1.25);
    }
    100% {
      transform: translateX(-50%) scale(1);
    }
  }

  .section_milestones .boxmilestones{
    background-image: url(../img/neo/pitch-s9-img17.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    vertical-align: middle;
    color:#ffffff;
    font-family: Poppins-Regular;
    padding:25px 0px 15px 0px;
    
  }
  .section_milestones .boxmilestones img {
    width: 32px;
  }
  .section_milestones .boxmilestones div{
    font-family: Poppins-Regular;
    font-size:12px;
    padding:3px;
  }
  .section_milestones .boxmilestones span {
    font-family: Poppins-Bold;
    font-size:12px;
    padding:3px;
  }

  .bgnavheaderoff{
    /*background: rgba(20, 26, 40, .85);*/
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 10%,rgba(17,68,65,0.0) 20%, rgba(20,26,40,0.0) 100%);
  }
  .bgnavheader{
    /*background: rgba(20, 26, 40, .85);*/
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 5%, rgba(255,255,255,1) 10%,rgba(17,68,65,0.8) 20%, rgba(20,26,40,0.8) 100%);
  }
  .bgnavheadermobile{
    background: rgba(20, 26, 40, .85);
  }
  .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link {
    color: #44A53D!important;
}


.colored-modal {
  background: rgb(120, 158, 42);
  background: linear-gradient(
    90deg,
    rgba(120, 158, 42, 1) 0%,
    rgba(21, 126, 115, 1) 100%
  );
  border-style: none;
  border-radius: 10px;
  color: white;
  font-family: Montserrat-Regular;
  padding: 10px 115px;
  width: auto;
  height: 40px;
  font-size: 12px;
  text-align: center;
  margin-left: 3px;
  margin-right: 3px;
}

.colored-modal:hover {
  color: white;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
}

.colored-modal:active {
  color: white;
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.5);
}

.cancelarModalButton {
	
	font-size: 12px !important;
    color: #018786 !important;
	font-weight: bold !important;
	
}

.cancelButton{
  cursor:pointer;
}

.wb-100{
  width: 99%; 
}
.wb-40{
  width: 40%; 
}
#registerModal .modal-dialog .modalStyle{
  width: 40% ;
}
#loginModalLabel .modal-dialog .modal-content{
  width: 40% ;
}
@media only screen and (max-width: 640px) {
  #registerModal .modal-dialog .modalStyle{
    width: 99% ;
    padding:10px;
  }
  #loginModalLabel .modal-dialog .modal-content{
    width: 99% ;
    padding:10px;
  }
  #loginModalLabel .modal-dialog .modal-content .modalInput {
    width: 80vw;
  }
}/**/

.resalto {
  
  animation-name: resalto;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 10;

  -webkit-animation-name:resalto;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 10;
}

@-moz-keyframes resalto{  
  0% { opacity: 1.0; }
  50% { opacity: 0.4; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes resalto {  
  0% { opacity: 1.0; }
  50% { opacity: 0.4; }
   100% { opacity: 1.0; }
}

@keyframes resalto {  
  0% { opacity: 1.0; }
   50% { opacity: 0.4; }
  100% { opacity: 1.0; }
}

#confirmRegisterMail .verificationInput {
  border: none;
  border-bottom: 1px solid #000;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  width: 32px;
  margin: 0 auto;
  color: black;
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
}
.no_margin{
  margin: 0 !important;
  padding: 0 !important;
}
.imgselect .token-class {
  max-height: 100px; 
}