:root {
  --color-1: #6B5935;
  --color-2: #A38754;
  --color-3: #A48953;
  --color-4: #032923;
  --bgnd-color: #3D3B36;
  --font-1: "Baskervville", serif;
  --font-2: "Times New Roman", Times, serif;
  --font-3: "Montserrat", sans-serif;
}

html, body {
    margin:0; 
    padding: 0; 
    height: 100%; 
    width: 100%;
  }
  
  body {
    padding-top: 75px;
    width:100%; 
    background-color: var(--bgnd-color);
  }

.txt-Bold { font-weight: bold; }

.color-white { color: White; }

.w-5 { width: 5% !important; }
.w-7 { width: 7% !important; }
.w-10 { width: 10% !important; }
.w-13 { width: 13% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-30 { width: 30% !important; }

.white-btn {
  background-color: var(--color-3);
  border: 2px solid var(--color-1);
  font-family: var(--font-3);
  color: White
}

.white-btn:hover {
  background-color: var(--color-1);
  border: 2px solid var(--color-3);
  color: Silver;
}

.color-btn {
  background-color: var(--color-2);
  border: 2px solid var(--color-3);
  font-family: var(--font-3);
  color: White;
}

.color-btn:hover {
  background-color: var(--color-4);
  border: 2px solid var(--color-1);
  color: Silver;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 75px;
  background-color: var(--color-2);
  z-index: 9999;
}
  
footer {
  position: absolute;
  display: inline-block;
  bottom: 0px;
  width: 100%;
  height: 50px;
  justify-content: center;
  text-align: center;
  background-color: var(--color-3);
  color: White;
  overflow: hidden;
}

#logo-SUB {
  cursor: pointer;
}

.logo-SUB {
  height: 65px;
}
  
.logo-IN {
  width: 120px;
  cursor: pointer;
}

.navbar {
  padding: 0px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='Gainsboro' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler {
  border: 2px solid White;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-item a {
  color: var(--color-3);
  font-family: var(--font-1);
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  text-align: center;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: Gainsboro;
}

.nav-item a:visited {
  color: White;
}

.nav-link, .txt-link {
  cursor: pointer;
}

.navbar .collapse {
  float: none;
  text-align: center;
}

.collapse {
  background-color: var(--color-2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-items: center;
  text-align: center;
}

#leyend-div {
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
}

.leyend-block {
  display: inline-block;
  padding: 5px 0px 3px 10px;
  font-size: small;
  color: White;
  z-index: 1000;
}

.leyend-block span{
  margin-left: 5px;
  margin-right: 10px;
  line-height:14px;
}

.leyend-light {
  border-top: 1px solid Gainsboro;
  border-left: 1px solid Gainsboro;
  border-right: 1px solid Gainsboro;
  background-color: rgba(255, 255, 255, 0.3);
}

.leyend-dark {
  border-top: 1px solid #34343F;
  border-left: 1px solid #34343F;
  border-right: 1px solid #34343F;
  background-color: rgba(0, 0, 0, 0.3);
}

.leyend-circle {
  display: inline-block;
  line-height:14px;
  width: 14px;
  height: 14px;
  border: 1px solid White;
  border-radius: 50%;
}

#leyend-1 { background-color: #00FF00; }
#leyend-2 { background-color: #FCC305; }
#leyend-3 { background-color: #FF0000; }
#leyend-4 { background-color: #34343F; }

.preloaderIN{
  z-index: 9999 !important;
}
.loader {
  position: relative;
  top: calc(50% - 32px);
  left: calc(50% - 68px);
  width: 104px;
  height: 104px;
  border-radius: 50%;
  perspective: 800px;
  background: url("../images/in.png") no-repeat center center;
  background-size: 55px;
}

#modal-preloader-content {
  background-color: rgba(0,0,0,0) !important;
  border: none !important;
  box-shadow: none !important;
}
  
.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}
  
.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid rgb(121, 68, 2);
}
  
.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid DimGray;
}
  
.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid rgb(121, 68, 2);
}
  
@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
  
@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
  
@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}