/*
Alfa sistemas 2021
*/

body {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  color: #626262;
  overflow-x: hidden;
}

textarea {
  font-family: "Open Sans", sans-serif;
}

a:hover {
  text-decoration: none;
}

.tm-footer-link {
  color: #626262;
}

button {
  border: none;
}

a,
button {
  cursor: pointer;
}

h2 {
  font-size: 2.4rem;
}

h3 {
    font-size: 1.3rem;
    min-height: 80px;
    text-align: center;
}

h3p {
	font-size: 1.3rem;
}

p {
  line-height: 1.7;
  margin-bottom: 35px;
}

p:last-child {
  margin-bottom: 0;
}

.tm-page-header {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 45px;
}

/*Inicio engranaje*/
  .rotate {
    animation: rotate 4s infinite linear;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .separator {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
  }

  .line {
    width: 80%;
    height: 2px;
    background-color: #000000;
  }

/*Fin engranaje*/
/*Carrusel*/
.carousel-item {
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.carousel-caption {
  color: #fff;
  text-align: left;
}

@media (max-width: 576px) {
  .carousel-caption {
    position: static;
    display: block;
    width: 100%;
    text-align: center;
  }
}

/*Barra social v2*/



.sticky-container-tienda{
    padding:0px;
    margin:0px;
	position:absolute;
    right:4px;
    top:85px;
    
    z-index: 1100;
}

.sticky-container-social{
    padding:0px;
    margin:0px;
    position:fixed;
    right:-130px;
    top:215px;
    width:220px;
    z-index: 1100;
}

li.stienda{
    list-style-type:none;
    background-color :rgba(255,255,255,0.50); /*Aquí va color de fondo para la barra de Tienda en línea*/
}

.stickysocial li{
    list-style-type:none;
    /*background-color :rgba(255,255,255,0.1); /*Aquí va color de fondo para los íconos si se quiere uno*/
    color:#efefef;
    height:43px;
    padding:0px;
    margin:0px 0px 1px 0px;
    -webkit-transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    cursor:pointer;
}
li.sfacebook{
    list-style-type:none;
    background-color :rgba(255,255,255,0.50); /*Aquí va color de fondo para la barra de facebook*/
}
li.stwitter{
    list-style-type:none;
    background-color :rgba(255,255,255,0.50); /*Aquí va color de fondo para la barra de twitter*/
}
li.sinstagram{
    list-style-type:none;
    background-color :rgba(255,255,255,0.50); /*Aquí va color de fondo para la barra de instagram*/
}
li.sbusiness{
    list-style-type:none;
    background-color :rgba(255,255,255,0.50); /*Aquí va color de fondo para la barra de business*/
}

.stickysocial li:hover{
    margin-left:-115px;
}
.stickysocial li img{
    float:left;
    margin:5px 4px;
    margin-right:5px;
}
.stickysocial li p{
    padding-top:5px;
    margin:0px;
    line-height:16px;
    font-size:11px;
}
.stickysocial li p a{
    text-decoration:none;
    color:#000000;
}
.stickysocial li p a:hover{
    text-decoration:none;
}
/*fin de redes sociales*/

/*CSS para slider animación*/

.icon-cards {
  position: relative;
  width: 60vw;
  height: 40vw;
  max-width: 380px;
  max-height: 250px;
  margin: 0;
  color: white;
  perspective: 1000px;
  transform-origin: center;
}
.icon-cards__content {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: translateZ(-30vw) rotateY(0);
  -webkit-animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.icon-cards__content.step-animation {
  -webkit-animation: carousel 8s infinite steps(1) forwards;
          animation: carousel 8s infinite steps(1) forwards;
}
.icon-cards__item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60vw;
  height: 40vw;
  max-width: 380px;
  max-height: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transform-origin: center;
}
.icon-cards__item:nth-child(1) {
  background: #FDD94F;
  transform: rotateY(0) translateZ(35vw);
}
.icon-cards__item:nth-child(2) {
  background: #F87949;
  transform: rotateY(120deg) translateZ(35vw);
}
.icon-cards__item:nth-child(3) {
  background: #FBAB48;
  transform: rotateY(240deg) translateZ(35vw);
}
.icon-cards__item:nth-child(4) {
  background: #FDD94F;
  transform: rotateY(0) translateZ(35vw);
}
.icon-cards__item:nth-child(5) {
  background: #F87949;
  transform: rotateY(120deg) translateZ(35vw);
}
.icon-cards__item:nth-child(6) {
  background: #FBAB48;
  transform: rotateY(240deg) translateZ(35vw);
}


@-webkit-keyframes carousel {
  0%, 17.5% {
    transform: translateZ(-35vw) rotateY(0);
  }
  27.5%, 45% {
    transform: translateZ(-35vw) rotateY(-120deg);
  }
  55%, 72.5% {
    transform: translateZ(-35vw) rotateY(-240deg);
  }
  82.5%, 100% {
    transform: translateZ(-35vw) rotateY(-360deg);
  }
}

@keyframes carousel {
  0%, 17.5% {
    transform: translateZ(-35vw) rotateY(0);
  }
  27.5%, 45% {
    transform: translateZ(-35vw) rotateY(-120deg);
  }
  55%, 72.5% {
    transform: translateZ(-35vw) rotateY(-240deg);
  }
  82.5%, 100% {
    transform: translateZ(-35vw) rotateY(-360deg);
  }
}

#slideranim {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
}

.checkbox {
  position: relative;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #F47956;
  transition: color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox:hover {
  color: #F7A95A;
}
.checkbox__checkbox {
  position: relative;
  top: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  background: white;
  border: 1px solid currentColor;
  border-radius: 4px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
}
.checkbox__checkbox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 11px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}
.checkbox__label {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox > input:checked ~ .checkbox__checkbox {
  border-color: transparent;
  background: #F47956;
  -webkit-animation: jelly 0.6s ease;
          animation: jelly 0.6s ease;
}
.checkbox > input:checked ~ .checkbox__checkbox:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

@-webkit-keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}

@keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}


/*Fin de CSS para slider animacion*/

/*slider para animacion 2*/
@-webkit-keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}
@keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}
#sliderfac {
    background: #fff;
    font-family: "Tahoma";
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
}
#scene {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 1000px;
  height: 400px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
#scene #left-zone {
  background: #fff;
  height: 75%;
  flex-grow: 0;
  display: flex;
  width: 350px;
  align-items: center;
  justify-content: left;
}
#scene #left-zone .list {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
#scene #left-zone .list li.item input[type=radio] {
  display: none;
}
#scene #left-zone .list li.item input[type=radio] ~ label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
#scene #left-zone .list li.item input[type=radio] ~ label:first-letter {
  text-transform: uppercase;
}
#scene #left-zone .list li.item input[type=radio] ~ label:hover {
  opacity: 0.75;
  cursor: pointer;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_strawberry:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/nominaf.png") ;
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_banana:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/contabilidadf.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_apple:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/ccobranza.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_orange:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/facturae.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_cfdi:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/cfdi.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_vcfdi:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/vcfdi.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}


#scene #left-zone .list li.item input[type=radio] ~ .content {
  position: absolute;
  left: 350px;
  top: -400px;
  width: 650px;
  height: 400px;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slideout;
          animation-name: slideout;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_strawberry .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/nominaf.png") ;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_strawberry h1 {
  color: #D64541;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_banana .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/contabilidadf.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_banana h1 {
  color: #F5D76E;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_apple .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/ccobranza.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_apple h1 {
  color: #00B16A;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_orange .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/facturae.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_cfdi h1 {
  color: #F27935;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_cfdi .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/cfdi.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_cfdi h1 {
  color: #00B16A;
	
}#scene #left-zone .list li.item input[type=radio] ~ .content.content_vcfdi .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/vcfdi.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_apple h1 {
  color: #00B16A;
}
#scene #left-zone .list li.item input[type=radio] ~ .content h1:first-letter {
  text-transform: uppercase;
}
#scene #left-zone .list li.item input[type=radio] ~ .content p {
  max-width: 50%;
  text-align: center;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_strawberry {
  color: #D64541;
  border-right: solid 4px #D64541;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_banana {
  color: #F5D76E;
  border-right: solid 4px #F5D76E;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_apple {
  color: #00B16A;
  border-right: solid 4px #00B16A;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_orange {
  color: #F27935;
  border-right: solid 4px #F27935;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_cfdi {
  color: #F27935;
  border-right: solid 4px #F27935;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_vcfdi {
  color: #F27935;
  border-right: solid 4px #F27935;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ .content {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#scene #middle-border {
  background-color: #eee;
  height: 75%;
  flex-grow: 1;
  max-width: 2px;
  z-index: 0;
}
#scene #right-zone {
  background: #FFFFFF;
  height: 100%;
  flex-grow: 3;
}
/*fin de slider para animacion*/
/*slider para animacion tramites*/
#slidertram {
    background: #fff;
    font-family: "Tahoma";
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
}
#scenetr {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 1000px;
  height: 400px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
#scenetr #left-zonetr {
  background: #fff;
  height: 75%;
  flex-grow: 0;
  display: flex;
  width: 350px;
  align-items: center;
  justify-content: left;
}
#scenetr #left-zonetr .list {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
#scenetr #left-zonetr .list li.item input[type=radio] {
  display: none;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label:first-letter {
  text-transform: uppercase;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label:hover {
  opacity: 0.75;
  cursor: pointer;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_docper:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/docper.png") ;
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_salud:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/servsal.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_sbasic:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/serbas.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_pesjub:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/pesjub.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_tvehi:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/tveh.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_citas:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/citas.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ label.label_otrost:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../img/slidef/otram.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}


#scenetr #left-zonetr .list li.item input[type=radio] ~ .content {
  position: absolute;
  left: 350px;
  top: -400px;
  width: 650px;
  height: 400px;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slideout;
          animation-name: slideout;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_docper .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/docper.png") ;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_docper h1 {
  color: #731B18;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_salud .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/servsal.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_salud h1 {
  color: #1F0624;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_sbasic .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/serbas.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_sbasic h1 {
  color: #008438;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_pesjub .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/pesjub.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_pesjub h1 {
  color: #83A100;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_tvehi .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/tveh.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_tvehi h1 {
  color: #F27935;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_citas .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/citas.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_citas h1 {
  color: #740640;
	
}#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_otrost .picto {
  height: 100px;
  width: 100px;
  background-image: url("../img/slidef/otram.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content.content_otrost h1 {
  color: #006459;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content h1:first-letter {
  text-transform: uppercase;
}
#scenetr #left-zonetr .list li.item input[type=radio] ~ .content p {
  max-width: 50%;
  text-align: center;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_docper {
  color: #731B18;
  border-right: solid 4px #731B18;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_salud {
  color: #1F0624;
  border-right: solid 4px #1F0624;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_sbasic {
  color: #008438;
  border-right: solid 4px #008438;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_pesjub {
  color: #83A100;
  border-right: solid 4px #83A100;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_tvehi {
  color: #F27935;
  border-right: solid 4px #F27935;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_citas {
  color: #740640;
  border-right: solid 4px #740640;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ label.label_otrost {
  color: #006459;
  border-right: solid 4px #006459;
}
#scenetr #left-zonetr .list li.item input[type=radio]:checked ~ .content {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#scenetr #middle-border {
  background-color: #eee;
  height: 75%;
  flex-grow: 1;
  max-width: 2px;
  z-index: 0;
}
#scenetr #right-zone {
  background: #FFFFFF;
  height: 100%;
  flex-grow: 3;
}
/*fin de slider para animacion tram*/

/*navegacion para pagina de redes sociales*/


/* Inicio estilo para prompocion de paquetes*/

.box-02 {
  width: 100%;
  padding: 0px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.75);
  border-radius: 17px;
  text-align: center;
}
 .box-02 {
    margin-bottom: 20px;
  }
.titulo-02 {
  font-size: 40px;
  font-weight: 700;
}
.titulo-03 {
  font-size: 30px;
  font-weight: 700;
    padding-top: 8px;
    padding-bottom: 8px;
}
.color-02 {
  color: #ff6b00;
}
.texto-03 {
  font-size: 12px;
}


/* Botones */
.btn-pro-01 {
  color: #FFF;
  background-color: #002856;
  border-color: #002856;
  font-weight: 700;
  border-radius: 15px;
  margin-bottom: 20px;
}

.btn-pro-01:hover {
  color: #FFF;
  background-color: #0a3f7c;
  border-color: #0a3f7c;
  box-shadow: 0 0 0 3px rgba(10, 63, 124, 0.5);
}

.btn-pro-01:focus,
.btn-pro-01.focus {
  box-shadow: 0 0 0 3px rgba(10, 63, 124, 0.5);
}
/* Botones */
.btn-pro-02 {
  color: #FFF;
  background-color: #E45E11;
  border-color: #E45E11;
  font-weight: 700;
  border-radius: 15px;
  margin-bottom: 20px;
}

.btn-pro-02:hover {
  color: #FFF;
  background-color: #EF722B;
  border-color: #EF722B;
	
  box-shadow: 0 0 0 3px rgba(42,42,42,0.50);
}


.btn-pro-02:focus,
.btn-pro-02.focus {
  box-shadow: 0 0 0 3px rgba(42,42,42,0.50);
}

.texto-05 {
  font-size: 12px;
  margin-bottom: 0px;
  line-height: 22px;
}
/*Fin de estilo para paquetes*/
/*Prueba de estilo para servicios Alfa enlace*/

.s-py-60 > [class*='container'] {
	padding-bottom: 60px;
	padding-top: 60px;
}
.s-py-md-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}
.s-pt-xl-30 > [class*='container'] {
		padding-top: 30px;
	}
.s-pb-xl-105 > [class*='container'] {
		padding-bottom: 1px;
	}
.c-gutter-30 [class*="col-"],
.row.c-gutter-30 > [class*="col-"] {
	padding-left: 15spx;
	padding-right: 15px;
}
.c-gutter-30 .row,
div.row.c-gutter-30 {
	margin-left: -15px;
	margin-right: -15px;
}

.icon-box.cover-image .item-media {
	display: none;
}
.icon-box.ls,
.icon-box.ds,
.icon-box.cs,
.icon-box.bordered,
.icon-box.hero-bg,
.icon-box.muted-bg,
.icon-box.box-shadow {
	padding: 55px 60px;
}

@media (max-width: 1199px) {
	.icon-box.ls,
	.icon-box.ds,
	.icon-box.cs,
	.icon-box.bordered,
	.icon-box.hero-bg,
	.icon-box.muted-bg,
	.icon-box.box-shadow {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.icon-box.ls,
	.icon-box.ds,
	.icon-box.cs,
	.icon-box.bordered,
	.icon-box.hero-bg,
	.icon-box.muted-bg,
	.icon-box.box-shadow {
		padding: 25px;
	}
}

.icon-box.church {
	padding: 70px 20px 50px;
}

@media (max-width: 1199px) {
	.icon-box.church {
		padding: 42px;
	}
}

@media (max-width: 767px) {
	.icon-box.church {
		padding: 25px;
	}
}

.c-bordered .icon-box {
	padding: 70px 30px 30px;
}

.c-bordered .icon-box p:last-child {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.icon-box.featured-box {
		height: calc(100% + 12px);
		margin: -6px -10px;
		padding-bottom: 36px;
		padding-top: 76px;
		position: relative;
		z-index: 2;
	}
}

.icon-box.shadow-layoutvent {
	background-color: transparent;
	box-shadow: 0 0px 0px 1.5em rgba(0, 0, 0, 0);
	padding: 40px;
	transition: all .5s ease-in-out;
}

.icon-box.shadow-layoutvent:hover {
	background-color: rgba(5,130,232,0.20);
	box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.icon-box.shadow-layout {
	background-color: transparent;
	box-shadow: 0 0px 0px 1.5em rgba(0, 0, 0, 0);
	padding: 40px;
	transition: all .5s ease-in-out;
}

.icon-box.shadow-layout:hover {
	background-color: rgba(237,107,6,0.2);
	box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
	.icon-box.shadow-layout {
		padding: 30px;
	}
}

.icon-box .icon-styled[class*='bg-'],
.icon-box .icon-styled.icon-bordered {
	margin-bottom: 0.5em;
}

.icon-box .icon-styled + h2,
.icon-box .icon-styled + h3,
.icon-box .icon-styled + h4,
.icon-box .icon-styled + h5 {
	margin-bottom: 42px;
	margin-top: 45px;
}

.icon-box .icon-styled + p.small-text {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin: 0.74em 0;
}

.icon-box h2,
.icon-box h3,
.icon-box h4,
.icon-box h5 {
	line-height: 1;
	margin-bottom: 1em;
}

.icon-box h5 {
	margin-top: 1em;
}

.media.small-box .icon-styled i {
	font-size: 40px;
}

.media.small-box h5 {
	font-size: 16px;
	margin-bottom: 0;
}

.media.small-box p {
	margin-bottom: 0;
	margin-top: 20px;
}

.icon-box.small-box .icon-styled i {
	font-size: 40px;
}

.icon-box.small-box h5 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 20px;
}

.icon-box.small-box p {
	margin-bottom: 0;
	margin-top: 20px;
}

.media h5,
.icon-box h5 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: unset;
	margin-bottom: 0.85em;
	margin-top: 0;
	text-transform: capitalize;
}

.media p,
.icon-box p {
	word-break: break-word;
}

.media .heading-accent,
.icon-box .heading-accent {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: inherit;
	line-height: 1;
	margin-bottom: 0.6em;
	text-transform: uppercase;
}

@media (min-width: 1200px) {
	.media .heading-accent,
	.icon-box .heading-accent {
		font-size: 38px;
	}
}

.media .icon-styled + .heading-accent,
.icon-box .icon-styled + .heading-accent {
	margin-top: 0.6em;
}

.media .special-heading,
.icon-box .special-heading {
	font-family: "Poppins", sans-serif;
	margin-bottom: 25px;
}


/* Fin de prueba de estilo para servicios Alfa enlace*/
/*fin de nav*/
.tm-nav-section {
    position: absolute;
    top: 158px;
    left: 0;
    width: 100%;
    
    border-bottom: 1px solid #ffffff;
    background-color: #0D3491;
    z-index: 3000;
}

.tm-nav-section.sticky {
  position: fixed;
  top: 0;
  border-top: none;
  background: white;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding: 10px 35px;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffffff; 
}

#tmMainNav .nav-link.current,
#tmMainNav .nav-link:hover {
    color: #000000;
    background: #ffffff;
}



.navbar-light .navbar-toggler {
  background-color: white;
}

.navbar {
  padding-top: 3px;
  padding-bottom: 3px;
}

.tm-navbar-nav {
  font-size: 1.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 930px;
}

.tm-banner-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 74px;
}

.tm-banner-section video {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -60%);
  min-width: 100%;
  min-height: 100%;
}

.tm-banner-text-container {
  position: relative;
  z-index: 1000;
  color: white;
  text-align: center;
  max-width: 520px;
}

.tm-banner-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.tm-banner-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 500px;
}

.tm-features-section {
  padding-top: 50px;
  padding-bottom: 85px;
  margin-top: 50px;
}

.tm-features-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tm-feature-block {
  max-width: 550px;
  margin-bottom: 40px;
}

.tm-feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5f5f5f;
  margin-bottom: 55px;
}

.tm-feature-h {
  font-size: 1.8rem;
}

.tm-feature-icon {
  margin-right: 30px;
}

#activities {
  padding-top: 50px;
}
.tm-parallaxser {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width:100%;
    height: auto;
    /*margin-bottom: 10px;*/
    position: relative;
    /* [disabled]background-color: #FF2700; 
    background-image: url("../img/Fondoo2.svg");*/
    background-image: url("../img/fondo.jpg");
}

.tm-parallax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 240px;
    margin-bottom: 68px;
    position: relative;
    /* [disabled]background-color: #FF2700; */
    background-image: url("../img/fondoserv.jpg");
}

.tm-parallax-header {
    /* [disabled]background-color: #FF2700; */
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
	
    background-image: url("../img/fondoprin.png");
}

.tm-parallaxa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 240px;
    margin-bottom: 68px;
    position: relative;
    background-color: #2100FF;
}

.tm-parallax-headers {
    background-color: #2100FF;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* EStilo CSS para servicios*/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
  .containerser {
    max-width: 164px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-left-width: 25%;
    border-right-width: 25%;
    alignment-adjust: central;
  }

.div-imgs {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.div-imgs .img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
}
.div-imgs .text {
  font-family: 'Open Sans';
  padding-top: 5px;
  display: block;
  text-align: center;
  width: 100%;
  transform: translate(0px);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  opacity: 0;
  transition: transfom opacity 1.5s;
}
.div-imgs:hover .img {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.div-imgs:hover .text {
  transform: translate(0px, -20px);
  opacity: 1;
}
/*Fin de estilo CSS para servicios*/
.tm-text-blue {
  color: #108ac1;
}

.tm-activity-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #c7c7c7;
  padding: 30px 20px;
  margin-bottom: 38px;
}

.tm-company-aboutsrtc {
    display: flex;
    text-align: center;
	color: white;
	
}
/*Estilo CSS para contenedores de proyectos */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
.containerp {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 60px;
  margin: 0 auto;
  top: 20px;
}
.div-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.div-img .img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 200px;
  border-radius: 150px;
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  transform: translate(0px);
  -ms-transform: translate(0px);
  -moz-transform: translate(0px);
  -webkit-transform: translate(0px);
  -o-transform: translate(0px);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
}
.div-img .text {
  font-family: 'Open Sans';
  position: absolute;
  z-index: -1;
  display: block;
  height: 50%;
  top: 50%;
  right: 0;
  padding-right: 5px;
}
.div-img:hover .img {
  transform: translate(-90px, 0px);
  -ms-transform: translate(-90px, 0px);
  -moz-transform: translate(-90px, 0px);
  -webkit-transform: translate(-90px, 0px);
  -o-transform: translate(-90px, 0px);
}
/*Fin de estilo de los contenedores de proyectos*/




.tm-activity-block-text {
    padding-left: 24px;
    padding-right: 24px;
    border-color: #FF0004;
}

.tm-activity-block-text h3 {
  margin-bottom: 20px;
}

.tm-activity-img-container {
    width: 180px;
    height: 180px;
    border-color: #FFFFFF #FF0004 #FF0004;
}

.tm-company-section {
  padding-top: 53px;
}

.tm-company-about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tm-company-about-text {
  padding: 35px;
}

.tm-company-about-header {
    margin-bottom: 28px;
    text-align: center;
}

.tm-company-img-container img {
  width: 400px;
  height: auto;
}

.tm-btn {
  border: 1px solid #c6c6c6;
  border-radius: 0;
  background-color: rgba(224,83,0,0.74);
  color: #6c6c6c;
  padding: 10px 30px;
}

.tm-btn-big {
  font-size: 1.3rem;
  padding: 12px 40px;
}

.tm-btn:hover {
  color: #E05300;
  background-color: #E05300;
}


.tm-float-right {
  float: right;
}

.tm-company-right-inner {
    border: 1px solid #c7c7c7;
    /* [disabled]width: 0px; */
    min-height: 300px;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border: none;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.3rem;
  color: #FFFFFF;
  background-color: #E97B00;
}

.nav-tabs .nav-link.tm-no-border-right {
  border-right: none;
}



/* Redes tablas*/

#tmCompanyTabrai1 .nav-item {
    width: 33.3%;
    text-align: center;
}




#tmCompanyTabrai1 .nav-link {
    border-bottom: thin solid #c7c7c7;
    border-top-width: thin;
    border-right-width: thin;
    border-left-width: thin;
}

#tmCompanyTabrai1 .tm-nav-link-border-right {
  border-right: 1px solid #c7c7c7;
}

#tmCompanyTabrai1  .nav-item.show .nav-link,
#tmCompanyTabrai1 .nav-link.active {
    border-bottom: none;
    width: auto;
}

/*Para poner un tamaño fijo a la tabla*/
#tmTabContentrai1 {
    padding: 20px 20px 20px;
    min-height: 460px;	
}


/*Fin de redes*/


/* Redes tablas*/

#tmCompanyTabrai2 .nav-item {
    width: 33.3%;
    text-align: center;
}

#tmCompanyTabrai2 .nav-link {
    border-bottom: thin solid #c7c7c7;
    border-top-width: thin;
    border-right-width: thin;
    border-left-width: thin;
}

#tmCompanyTabrai2 .tm-nav-link-border-right {
  border-right: 1px solid #c7c7c7;
}

#tmCompanyTabrai2  .nav-item.show .nav-link,
#tmCompanyTabrai2 .nav-link.active {
    border-bottom: none;
    width: auto;
}

/*Para poner un tamaño fijo a la tabla*/
#tmTabContentrai2 {
    padding: 20px 20px 20px;
    min-height: 460px;	
}


/*Fin de redes*/

/*tabla facturacion*/


#tmCompanyTabsat .nav-item {
    width: 50%;
    text-align: center;
}


#tmCompanyTabsat .nav-link {
    border-bottom: thin solid #c7c7c7;
    border-top-width: thin;
    border-right-width: thin;
    border-left-width: thin;
}

#tmCompanyTabsat .tm-nav-link-border-right {
  border-right: 1px solid #c7c7c7;
}

#tmCompanyTabsat  .nav-item.show .nav-link,
#tmCompanyTabsat .nav-link.active {
    border-bottom: none;
    width: auto;
}

/*Para poner un tamaño fijo a la tabla*/
#tmTabContentsat {
    padding: 20px 20px 20px;
    min-height: 560px;	
	
	
}
/*Fin de tabla facturación*/

/*tabla tramites*/


#tmCompanytramites .nav-item {
    width: 50%;
    text-align: center;
}


#tmCompanytramites.nav-item {
    border-bottom: thin solid #c7c7c7;
    border-top-width: thin;
    border-right-width: thin;
    border-left-width: thin;
}

#tmCompanytramites .tm-nav-link-border-right {
  border-right: 1px solid #c7c7c7;
}

#tmCompanytramites .nav-item.show .nav-link,
#tmCompanytramites .nav-link.active {
    border-bottom: none;
    width: auto;
}

/*Para poner un tamaño fijo a la tabla*/
#tmTabcontentramites {
    padding: 20px 20px 20px;
    min-height: 560px;	
	
	
}
/*Fin de tabla tramites*/
#tmCompanyTab .nav-item {
    width: 33.3%;
    text-align: center;
}


#tmCompanyTab .nav-link {
    border-bottom: thin solid #E97B00;
    border-top-width: thin;
    border-right-width: thin;
    border-left-width: thin;
}

#tmCompanyTab .tm-nav-link-border-right {
  border-right: 1px solid #E97B00;
}

#tmCompanyTab .nav-item.show .nav-link,
#tmCompanyTab .nav-link.active {
    border-bottom: none;
    width: auto;
}

/*Para poner un tamaño fijo a la tabla*/
#tmTabContent {
    padding: 20px 20px 20px;
    min-height: 440px;
	max-width: 360px
}

.nav-tabs {
  border-bottom: none;
}

.tm-contact-section {
  padding-top: 50px;
  margin-top: 40px;
  padding-bottom: 90px;
}

.tm-contact-left {
  margin-bottom: 30px;
}

.tm-contact-figure-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

figure {
  max-width: 100%;
}

.tm-contact-figcaption {
  margin-top: 27px;
  max-width: 600px;
}

.tm-contact-form-container {
  max-width: 362px;
  text-align: right;
}

.tm-contact-header {
  margin-bottom: 40px;
}

.form-control {
  border-radius: 0;
  padding: 14px;
  height: auto;
}

.tm-footer {
  margin-bottom: 40px;
}

.tm-footer-row {
  align-items: center;
}

.scroll {
  background: rgba(222, 226, 230, 0.1);
  padding: 18px 20px 10px;
  text-align: center;
  margin: 0 0 0 auto;
  cursor: pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  width: 65px;
  height: 60px;
}

.scroll:hover {
  background: rgba(237,107,6,0.7);
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.scroll:hover .fa {
  padding-top: -10px;
}

.scroll .fa {
  font-size: 30px;
  margin-top: -5px;
  margin-left: 1px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.tab-pane.fade {
  transition: opacity 0s linear;
}

@media (min-width: 768px) {
  .tm-feature-block {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .tm-activity-block {
    max-width: 582px;
    ;
    min-height: 365px;
  }

  .tm-company-about {
    flex-direction: column;
    align-items: center;
  }

  .tm-contact-left {
    margin-bottom: 0;
  }
}


.containerpags {
    max-width: 800px;
    text-align: center;
	align-content: center;
	align-items: center;
  }

@media (min-width: 1200px) {
  .container {
    max-width: 1220px;
    text-align: center;
  }
	

  .tm-company-about {
    flex-direction: row;
    align-items: flex-start;
  }

  .tm-company-about-text {
    padding: 0 35px 35px;
    max-width: 800px;
  }

  .tm-company-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68%;
    flex: 0 0 68%;
    max-width: 500px;
  }

  .tm-company-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 380px;
  }

  .tm-contact-left {
    padding-right: 0;
  }

  .tm-contact-right {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .navbar-toggler {
    margin-left: auto;
    margin-right: 0;
  }

  .navbar {
    text-align: center;
    padding: 3px 0;
    margin-right: 0;
    margin-left: auto;
  }

  #tmMainNav {
    border: 1px solid #2B20B7;
  }

  .navbar-light .navbar-toggler {
    border-radius: 0;
  }

  .scroll {
    margin: 20px auto 0;
  }

  .tm-banner-section video {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 540px) {
  .tm-activity-block {
    flex-direction: column;
  }

  .tm-activity-block-text {
    margin-top: 20px;
  }
}

@media (max-width: 440px) {
  .tm-features-section {
    padding-top: 60px;
    padding-bottom: 55px;
  }

  .tm-contact-section {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}
