/* Fonts */
@font-face {
  font-family:"Rajdhani";
      src:url("fonts/rajdhani/Rajdhani-Bold.woff2") format("woff2"),
          url("fonts/rajdhani/Rajdhani-Bold.woff") format("woff"),
          url("fonts/rajdhani/Rajdhani-Bold.otf") format("opentype");
  font-style:normal;
  font-weight:400;
}

@font-face {
  font-family:"RajdhaniRegular";
    src:url("fonts/rajdhani/Rajdhani-Regular.woff2") format("woff2"),
        url("fonts/rajdhani/Rajdhani-Regular.woff") format("woff"),
        url("fonts/rajdhani/Rajdhani-Regular.otf") format("opentype");
  font-style:normal;
  font-weight:400;
}
      

@font-face {
  font-family:"RajdhaniSemiBold";
  src:url("fonts/rajdhani/Rajdhani-SemiBold.woff2") format("woff2"),
      url("fonts/rajdhani/Rajdhani-SemiBold.woff") format("woff"),
      url("fonts/rajdhani/Rajdhani-SemiBold.otf") format("opentype");
  font-style:normal;
  font-weight:400;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/Montserrat-Regular.eot'); /* IE9 Compat Modes */
  src: url('fonts/montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat/Montserrat-Regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat/Montserrat-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat/Montserrat-Regular.svg.svg#2eb9a020d90588d099da01ff1a93c6338') format('svg'); /* Legacy iOS */
       
  font-style:   normal;
  font-weight:  700;
}

@font-face {
  font-family: 'MontserratBold';
  src: url('fonts/montserrat/Montserrat-Bold.eot'); /* IE9 Compat Modes */
  src: url('fonts/montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/montserrat/Montserrat-Bold.woff') format('woff'), /* Modern Browsers */
       url('fonts/montserrat/Montserrat-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/montserrat/Montserrat-Bold.svg#2eb9a020d90588d099da01ff1a93c338') format('svg'); /* Legacy iOS */
       
  font-style:   normal;
  font-weight:  700;
}

@font-face {
  font-family: 'Playfair';
  font-style: normal;
  font-display: swap;
  font-weight: 400 900;
  src: url('fonts/playfair/latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}



/* Global Styles */

html{
  margin-top: 0 !important;
}

.container {
  position: relative;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  /*
  padding-right: calc(var(--bs-gutter-x) * 1.5);
  padding-left: calc(var(--bs-gutter-x) * 1.5);
  */
}

*{
  outline: 0!important;
}

.vc_column_container {
    padding-left: 15px!important;
    padding-right: 15px!important;
}

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0!important;
}

dl, ol, ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 17px;
}

.row.row-double-space {
    --bs-gutter-x: 60px;
}

.row.row-double-space [class*=col-] {
    padding-right: 30px;
    padding-left: 30px;
}

html, body {
  font-size: 16px;
  height:100%;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:focus, a:active, a:visited{
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

a:hover{
	color: #fff;
	text-decoration: none;
}

.thumbnail-link{
  display: block;
  position: relative;

  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

.thumbnail-link:before{
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;

  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

.thumbnail-link:hover:before{
  opacity: 1;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 32px;
    border-radius: 1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: #333333;
}

.hamburger {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.hamburger-box {
  width: 32px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  height: 2px;
}

@-webkit-keyframes stuckMoveDown{
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }

  100% {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

@keyframes stuckMoveDown{
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }

  100% {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

body.navbar-fixed{
  padding-top: 81px;
}

.navbar-fixed .navbar{
  -webkit-animation: stuckMoveDown .6s;
  animation: stuckMoveDown .6s;
  top: 0;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1030;
  height: auto;
  background: #fff;
  box-shadow: 0 0px 20px rgb(0 0 0 / 8%);
}

.navbar-nav li a {
    padding: 15px;
}

.page-header {
    background: #000000;
    padding: 50px 0;
    color: #fff;
}

h1.page-title {
    margin: 0;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-gallery a, .custom-gallery a:focus, .custom-gallery a:active{
  margin-bottom: 30px!important;
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
}

.custom-gallery a:hover{
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@-webkit-keyframes slideIn{
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

.dropdown-menu{
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

/* CAROUSEL */
.main-swiper {
    width: 100%;
    height: 650px;
    background: #232b2f;
    color: #fff;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}
/* CAROUSEL */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

.full-table {
    display: table;
    width: 100%;
    height: 100%;
}

.full-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.section {
	padding: 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.btn-check:active+.btn:focus, .btn-check:checked+.btn:focus, .btn.active:focus, .btn.show:focus, .btn:active:focus, .btn:focus {
  box-shadow: none;
}


/* footer */
footer.site-footer {
	color: #fff;
  text-align: center;
  font-family:"Rajdhani";
}

footer.site-footer .col-md-12{
  border-top: 1px solid #DADADB;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* /footer*/

/* footer always bottom */
body.footer-always-bottom #page {
   min-height:100%;
   position:relative;
}

body.footer-always-bottom #primary {
   padding-bottom:100px;   /* Height of the footer */
}

body.footer-always-bottom footer.site-footer {
   position:absolute;
   bottom:0;
   width:100%;
   height:100px;   /* Height of the footer */
}
/* /footer always bottom */

/* Checkbox */
input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.3s;
}

input[type=radio]{
  border-radius: 50%;
}

input[type=checkbox]:checked, input[type=radio]:checked {
  /* background-color: #2196f3; */
}

input[type="checkbox"]:before {
  background: #000;
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: all .2s ease .1s;
  transition: all .2s ease .1s;
  border-radius: 5px;
  z-index: 100;
  width: 0px;
  bottom: 13px;
  left: 4px;
  transform: rotate(45deg);
}

input[type="checkbox"]:after {
  right: 0;
  z-index: 100;
  background: #000;
  content: "";
  position: absolute;
  height: 0px;
  border-radius: 5px;
  -webkit-transition: all .2s ease .3s;
  transition: all .2s ease .3s;
  width: 2px;
  left: 8px;
  bottom: 5px;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked::before{
  width: 6px;
  bottom: 7px;
}

input[type="checkbox"]:checked::after{
  height: 10px;
  left: 11px;
}

input[type=radio]:before {
  background: #000;
  content: "";
  position: absolute;
  height: 0px;
  border-radius: 50%;
  -webkit-transition: all .2s ease .1s;
  transition: all .2s ease .1s;
  border-radius: 50%;
  z-index: 100;
  width: 0px;
  bottom: 6px;
  left: 6px;
}

input[type=radio]:checked:before{
  height: 8px;
  width: 8px;
}

.woocommerce form .form-row .input-checkbox {
  margin: 0;
  vertical-align: initial;
  display: inline-block;
  text-align: initial;
}
/* Checkbox */

/* pagination */
.pagination {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.pagination > li > a, .pagination > li > span {
  border: none;
  margin: 0 1px;
  background: transparent;
}

.pagination > li > span.current{
  background: #4BB4E3;
  color: #FFF;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
/**************/

/* Contact form 7 */
.wpcf7 input[type="text"], .wpcf7 textarea{
  border-radius: 13px;
  color: #192b33;
  font-size: 17px;
  padding: 15px 20px;
  resize: none;
  width: 100%;
  border: none;
  height: 60px;
  line-height: 60px;
}

.wpcf7 textarea{
  height: 200px;
  line-height: 27px;
}

span.wpcf7-not-valid-tip {
  color: #E05D5B;
  margin-top: 5px;
}

div.wpcf7-validation-errors{
  background-color: #F2DEDE;
  border-color: #EBCCD1;
  color: #A94442;
  padding: 15px;
  border: none;
  margin: 10px 0;
  border-left: 4px solid;
}

div.wpcf7-mail-sent-ok{
  background-color: #DFF0D8;
  border-color: #3C763D;
  color: #3C763D;
  padding: 15px;
  border: none;
  margin: 10px 0;
  border-left: 4px solid;
}

input[type="submit"].wpcf7-submit{
  background: #000000;
  color: #FFF;
  cursor: pointer;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 13px;
  padding: 6px 25px;
  margin: 20px 0;
  text-shadow: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

input[type="submit"].wpcf7-submit:hover, input[type="submit"].wpcf7-submit:active{
  background: #000000;
  color: #FFF;
}

div.wpcf7 img.ajax-loader {
  width: 25px;
  margin: -5px 0 0 15px;
}

.wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin: 0;
}
/* /Contact form 7 */

/* magnific jquery */
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b, .mfp-arrow-left:after, .mfp-arrow-left .mfp-a, .mfp-arrow-right:before, .mfp-arrow-right .mfp-b, .mfp-arrow-right:after, .mfp-arrow-right .mfp-a{
  display: none;
}

button.mfp-arrow {
  background: #000;
  color: #FFF;
  padding: 0 20px;
  width: auto;
  font-size: 25px;
  height: 50px;
  border-radius: 0;
  margin-top: -25px;
  margin-left: 20px;
  margin-right: 20px;
}

.mfp-arrow:active{
  margin-top: -25px;
}

.mfp-counter{
  display: none;
}
/* ./magnific-jquery */

#topcontrol{
  background-color: #313035;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 28px;
  line-height: 20px;
  color: #FFF;
  z-index: 99;

  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

#topcontrol:hover{
  background: #000;
}

.gm-style img {
  max-width: none;
}

/* Comentarios */
ol.comment-list {
    list-style: none;
    margin: 0;
}

ol.comment-list ol{
  list-style: none;
}

.comment-body {
    background: #FFF;
    padding: 40px 40px 40px 140px;
    position: relative;
    margin: 0 0 15px 0;
}

.comment-form-comment textarea {
    background: #FFF;
    border: 1px solid #CCC;
}

.comment-form-comment label {
    font-weight: normal;
    font-size: 20px;
}

.comment-author .avatar {
    width: 70px;
    border-radius: 50px;
    position: absolute;
    left: 40px;
}

.comment-metadata time {
    color: #868686;
    margin: 5px 0 20px 0;
    display: block;
    font-size: 12px;
}

.reply{
  text-align: right;
}

a.comment-reply-link, a.comment-reply-link:focus {
    background: #009483;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 3px;
    color: #FFF;
}

a.comment-reply-link:hover{
  background: #343440;
  color: #FFF;
}

.logged-in-as img.avatar {
    width: 30px;
    border-radius: 50px;
    margin: 0 5px 0 0;
}

.comments-area {
    margin: 30px 0 0 0;
}

h3.comment-reply-title {
    margin: 50px 0 20px 0;
}

.comment-form-captcha label {
    display: block;
    margin-bottom: 10px;
}

p.comment-awaiting-moderation {
    font-style: italic;
}
/* Comentarios */

/* animsition */
.animsition-loading {
    background-color: rgba(0, 0, 0, 0);
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-left: 2px solid #eee;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-name: animsition-loading;
    animation-name: animsition-loading;
}

.animsition-loading {
    border-left: 2px solid #2a2a2a;
}
/* animsition */

/* CRP */
.crp_related h3{
  font-size: 15px;
  margin: 0 0 15px 0;
}

.crp_related{
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  padding: 30px 0;
  margin: 40px 0;
}

.crp_related a img {
    margin-bottom: 10px;
}

.crp_related a {
    display: block;
    margin: 15px 0;
}
/* CRP */

/* select2 */
.select2-container--default .select2-selection--single {
    border-color: #d5d8da;
    border-radius: 10px;
    height: 60px;
    width: 100%;
}

.select2-container {
    width: 100%!important;
    display: block;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 60px;
    padding-left: 25px;
    padding-right: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 60px;
    position: absolute;
    top: 0;
    right: 15px;
    width: 20px;
}

ul.select2-results__options li {
    margin: 0;
    padding: 10px 25px;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #192b33;
    color: white;
}
/* /select2 */

::selection{
  background:#000;
  color:#fff;
}

::-moz-selection{
  background:#000;
  color:#fff;
}

/* Large devices (Larger desktops, 1200px and up) */
@media (max-width: 1399px){
	
}

/* Medium devices (desktops, 992px and up) */
@media (max-width: 1199px){
	
}

/* Small devices Tablets  */
@media (max-width: 991px) {
	
}

/* Small devices Phones */
@media (max-width: 767px) {
	
}

/* Extra small devices Phones */
@media (max-width: 577px) {
  
}


/******CUSTOM******/

h1,h2,h3,h4,h5,h6{
  margin-bottom: 0;
}

.mb-20{
  margin-bottom: 20px;
}

.mb-30{
  margin-bottom: 30px;
}

p:last-child{
  margin-bottom: 0;
}

body{
  background-color: #000;
  color: #fff;
}

.container-home{
  height: calc(100vh - 55px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tinkle-home{
  width: 200px;
}

.logo-tinkle-cases{
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  z-index: 3;
}

header.header-case{
  min-height: 800px;
  display: grid;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

header.header-case.bg-dots{
  background: rgba(43, 43, 43, 0.8);
  background-image: url(../img/dots-green.png);
  background-size: 18px;
  background-repeat: repeat;
}

.logo-main{
  width: auto;
  height: auto;
  max-height: 100px;
  margin: 0 !important;
  max-width: 200px;
}

.title-main{
  text-transform: uppercase;
  color: #fff;
  font-family: "Rajdhani";
  font-size: 50px;
  line-height: 50px;
}

.title-prev{
  text-transform: uppercase;
  color: #87d12b;
  font-family:"Rajdhani";
}


.title-secondary{
  color: #87d12b;
  font-family: "Rajdhani";
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.content-header {
  border-top: 1px solid #82d436;
  border-top: 1px solid #82d436;
  border-bottom: 1px solid #82d436;
  padding: 20px 0;
  margin: 30px 0;
}

.content-header.texto{
  font-family: "Rajdhani";
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
}

.content-header.columnas .title-prev{
  font-size: 40px;
}

.content-header.columnas p{
  color: #fff;
  font-size: 30px;
  line-height: 36px;
}

.section-textoimagen h2.title-main{
  font-family: "Rajdhani";
  font-size: 50px;
  line-height: 50px;
  color: #87D12A;
  margin-bottom: 40px;
}

.section-textoimagen{
  font-family: "RajdhaniRegular";
  font-family: "Montserrat";
  font-size: 20px;
}

.swiper {
  width: 100%;
  margin: 40px 0;
  padding: 45px 0;
}

.swiper-slide {
  opacity: 0.4;
  overflow: hidden;
  transition: .7s;
}

.swiper-slide img {
  width: 100%;
}

.swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.5);
}


.swiper-pagination-clickable{
  text-align: center;
  margin-top: 15px;
}

.swiper-pagination-bullet {
  background: #87d12b;
  height: 12px;
  width: 12px;
}


a.video-thumbnail{
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

a.video-thumbnail:before {
  font-family: 'themify';
  content: "\e6ad";
  position: absolute;
  font-size: 40px;
  line-height: 60px;
  background: rgba(147, 222, 31, 0.8);
  padding: 15px 0 15px 27px;
  width: 90px;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  color: #fff;
  margin: -45px 0 0 -45px;
  z-index: 1;
}

a.video-thumbnail:after {
  content: '';
  background: rgba(33, 37, 41, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .4s ease-in-out;
   -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
}

a.video-thumbnail:hover:after{
  background: rgba(147, 222, 31, 0.3);
}

.titulo-informe{
  font-family: "Playfair";
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: #ffff;
  text-transform: lowercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 1;
}

.logo-informe{
  width: 75px;
}

.navbar .navbar-collapse{
  flex-grow: initial;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: #88d32c;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #87d12b;
}

.texto-header{
  position: relative;
  margin-right: 80px;
}

.texto-header h1{
  font-family: "Rajdhani";
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #87D12A;

    -webkit-text-stroke: 3px #88d32c;
    text-stroke: 3px #88d32c;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
    position: relative;
}

.arrow-right {
  color: #87D12A;;
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  font-size: 34px;
}

.navbar-nav li a{
  font-size: 20px;
  color: #87D12A !important;
  text-transform: uppercase;
  font-family: "RajdhaniSemiBold";
}

.card{
  border: 0;
  border-radius: 0;
  height: 500px;
  position: relative;
}

.card.card-case .card-front{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  filter: grayscale(100%);
}

.logo-case-informe{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card.card-case::after {
  content: "";
  width: 100px;
  height: 8px;
  position: absolute;
  background: #87d12b;
  top: -4px;
  right: -50px;
  z-index: 999;
}

.card.card-case::before {
  content: "";
  width: 8px;
  height: 100px;
  position: absolute;
  background: #87d12b;
  top: -50px;
  right: -4px;
  z-index: 999;
}

.card.card-case::after, .card.card-case::before{
  opacity: 0;
}

/*
.single-informes .content-area .row.gx-0 .col-12 .card.card-case::after{
  opacity: 1;
}
*/

/*select only .single-informes .content-area .row.gx-0 .col-12 child 4, 5, 7, 8...*/
.single-informes .content-area .row.gx-0 .col-12:nth-child(4) .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:nth-child(5) .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:nth-child(7) .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:nth-child(8) .card.card-case::after{
  opacity: 1;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(4) .card.card-case::before, .single-informes .content-area .row.gx-0 .col-12:nth-child(5) .card.card-case::before, .single-informes .content-area .row.gx-0 .col-12:nth-child(7) .card.card-case::before, .single-informes .content-area .row.gx-0 .col-12:nth-child(8) .card.card-case::before{
  opacity: 1;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(4){
  z-index: 12;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(5){
  z-index: 11;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(7){
  z-index: 13;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(8){
  z-index: 12;
}



    .card.card-case {
      background-color: #fff;
      perspective: 1000px; 
    }
    

    .card-case-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      -webkit-transition: -webkit-transform 0.6s;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }
    

    .card.card-case:hover .card-case-inner, .card-case.card-flipped .card-case-inner {
      transform: rotateY(180deg);
    }
    

    .card.card-case .card-front, .card.card-case .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden; /* Safari */
      backface-visibility: hidden;
    }
    

    .card.card-case .card-front {
      color: #000;
    }

    .card-front::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.35);
    }

    .card.card-case .card-back .card-back-inner{
      /*background: #fff;*/
      color: #000;
      padding: 40px;
    }

    .card.card-case .card-back .card-back-inner img{
      width: 200px;
    }
    
    /* Style the back side */
    .card.card-case .card-back {
      transform: rotateY(180deg);
    }
    






  .informe-separador{
    margin: 30px auto;
    width: 100px;
    display: block;
    text-align: 0;
  }

  a.btn.btn-primary {
    font-family: "Rajdhani";
    border-radius: 0;
    border: 3px solid #87d12b;
    background: transparent;
    color: #87d12b;
    text-transform: uppercase;
    padding: 7px 27px;
    font-size: 20px;
}

a.btn.btn-primary:hover{
  background: #87d12b;
  color: #fff;
}


.login-body {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
}

.login-body.login-body-full-width {
  width: auto;
  max-width: 100%;
}

.login-body h4 {
  margin: 0 0 20px 0;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.login-body h2 {
  font-size: 25px;
  margin: -50px -50px 40px -50px;
  font-weight: 500;
  border-bottom: 1px solid;
  padding: 40px 50px;
  background: #323132;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

input.form-control {
  color: #323132;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 25px;
  resize: none;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  background: #fff;
  border-color: #d5d8da;
}

.input-icon input.form-control {
  padding-left: 50px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 22px;
  left: 25px;
  color: #a9aebd;
}

.form-group {
  margin-bottom: 1rem!important;
}

#formLogin a.btn {
  position: relative;
  bottom: auto;
  left: auto;
}

.alert {
  border: none;
  border-radius: 0;
  border-left: 5px solid;
  background: none;
  font-size: 14px;
  box-shadow: 0 0 10px #d1d1d1;
}

.alert-success {
  color: #4CAF50;
}

.alert.alert-danger {
  border-color: #d50f00;
  color: #d50f00;
}

.form-control:focus {
  box-shadow: none;
  border-color: #343a40;
}

.transparent-text{
color: transparent!important;
}

.long-arrow {
  height: 2px;
  width: 0;
  background: #87d22b;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  transition: width 2s ease
}

.long-arrow.in-view {
  width: 190px;
}

.long-arrow:before {
  height: 2px;
  width: 20px;
  background: #87d22b;
  content: '';
  position: absolute;
  transform: rotate(40deg);
  right: -3px;
  top: -6px
}

.long-arrow:after {
  height: 2px;
  width: 20px;
  background: #87d22b;
  content: '';
  position: absolute;
  transform: rotate(-40deg);
  right: -3px;
  bottom: -6px
}

.card.card-case .card-back{
  display: flex;
  align-items: center;
  justify-content: center;
}

.card.card-case .card-back .card-back-inner{
  height: auto;
}


.single-cases .page{
  overflow-y: hidden;
}

.single-cases footer.site-footer{
  padding-bottom: 200px;
}

.navbar-logos{
  z-index: 3;
  min-height: 120px;
}



/* Large devices (Larger desktops, 1200px and up) */
@media (max-width: 1399px){

  .texto-header {
    margin-right: 20px;
  }
	
}

/* Medium devices (desktops, 992px and up) */
@media (max-width: 1199px){

  .card.card-case .card-back .card-back-inner{
    padding: 20px;
    font-size: 14px;
  }



  .content-header.columnas p {
    font-size: 26px;
    line-height: 32px;
  }
	
}

/* Small devices Tablets  */
@media (max-width: 991px) {

  .texto-header{
    order: 3;
    margin: 0 auto;
    margin-top: 31px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .arrow-right {
    left: -10px;
  }

  .texto-header h1{
    font-size: 50px;
    line-height: 50px;
  }

  .section {
    padding: 40px 0;
  }

  /* .card.card-case::after, .card.card-case::before */
  /*Odd ones show, even ones opacity 0*/
  
  .single-informes .content-area .row.gx-0 .col-12:nth-child(odd) .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:nth-child(odd) .card.card-case::before{
    opacity: 1;
  }

  .single-informes .content-area .row.gx-0 .col-12:nth-child(odd) .card.card-case, .single-informes .content-area .row.gx-0 .col-12:nth-child(odd) .card.card-case{
    z-index: 9;
  }

  .single-informes .content-area .row.gx-0 .col-12:first-child .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:first-child .card.card-case::before{
    display: none;
  }

  .single-informes .content-area .row.gx-0 .col-12:nth-child(even) .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12:nth-child(even) .card.card-case::before{
    display: none;
  }


  
  
.single-informes .content-area .row.gx-0 .col-12:nth-child(3){
  z-index: 23;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(5){
  z-index: 24;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(7){
  z-index: 25;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(9){
  z-index: 26;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(11){
  z-index: 27;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(13){
  z-index: 28;
}

.single-informes .content-area .row.gx-0 .col-12:nth-child(15){
  z-index: 29;
}



  .section-textoimagen h2.title-main {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .title-main {
    font-size: 47px;
    line-height: 47px;
  }

  .content-header.columnas .row{
    --bs-gutter-y: 1rem;
  }

  .section-textoimagen img{
    margin-top: 40px;
  }
	
}

/* Small devices Phones */
@media (max-width: 767px) {

  .single-informes .content-area .row.gx-0 .col-12 .card.card-case::after, .single-informes .content-area .row.gx-0 .col-12 .card.card-case::before{
    display: none;
  }

  .logo-tinkle-cases {
    width: 75px;
  }

  .navbar-logos {
    z-index: 3;
    min-height: 90px;
  }

  .logo-main {
    max-height: 70px;
  }


  .section-textoimagen h2.title-main {
    font-size: 35px;
    line-height: 35px;
  }

  .title-main{
    font-size: 35px;
    line-height: 35px;
  }

  .title-secondary{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .section-textoimagen {
    font-size: 17px;
}

.texto-header h1 {
  margin-left: 140px !important;
  margin-top: -1px;
}



	
}

/* Extra small devices Phones */
@media (max-width: 577px) {

  .texto-header{
    justify-content: end;
  }

  .texto-header h1 {
    margin-left: 0px !important;
    font-size: 40px;
    line-height: 40px;
  }

  .arrow-right {
    transform: translateY(-63%);
    font-size: 28px;
  }

  .long-arrow.in-view {
    width: 140px;
  }

  .card.card-case::after, .card.card-case::before{
    display: none;
  }


  .section-textoimagen {
    font-size: 15px;
  }


  .login-body {
    padding: 25px;
    width: 90%;
  }

  
  
}

@media (max-width: 400px) {
  .long-arrow.in-view {

    width: 140px;
  }
}

