/*-----------------------------------------------------------------------------------*/
/*Vars*/
/*-----------------------------------------------------------------------------------*/
:root {
    --font-size: 18px;        /* font size for desktop */
    --font-family: sans-serif;  /* body font family */

	--font-color: #e8e8e8; 
    --bg-color: #181821;
	--grey-color: #8a8aa2;
    --dark-color: #130415;
	--aux-color:#8c8dff; 

    --top-spacer: 0;
	--radius: 6px;
    --logo-size: 150px;
}
/*-----------------------------------------------------------------------------------*/
/*Main*/
/*-----------------------------------------------------------------------------------*/
html,body {
    margin: 0;
    padding: 0;
}
body {
    background: var(--bg-color);
    color: var(--font-color);
    font-family: var(--font-family);
    font-weight: 200;
	font-size: var(--font-size);
    line-height: 1.5;
}

a {
	color: var(--font-color);
	transition: 1s;
}
a:hover {
    color: var(--grey-color);
}

table {
	text-align: left;
	width: 100%;
}
tr th {
	background: var(--grey-color);
}
tr th,
tr td  {
	border-bottom: 1px solid var(--font-color);
	padding: 1rem;
}
li {
    padding-bottom: 0.5rem;
}
::selection,
::-moz-selection {
	color: var(--grey-color);
    background: var(--font-color);
}
input,
textarea,
input[type="message"],
input[type="text"],
input[type="submit"],
input[type="email"] {
	font-family: var(--main-font);
    -webkit-appearance: none;
    padding: 0 0.3rem 0 0.3rem;
    border-radius: 0;
    border: 1px solid var(--font-color);
}
input[type="text"],
input[type="submit"],
input[type="email"] {
	height: 40px;
}
textarea,
input[type="message"] {
    height: 100px;
	width: 100%
}
label {
    display: block;
}
blockquote {
    color: var(--grey-color);
    font-family: Garamond, 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 1.4rem;
    border-left: 3px solid var(--grey-color);
    margin-left: 0;
    padding-left: 1rem;
}
.author {
    font-size: 1rem;
    font-family: var(--font-family);
}
h1, h2, h3 {
    font-weight: 200;
    margin-top: 2.5rem;
}
strong {
    font-weight: 600;
}
img {
    width: 100%;
    height: auto;
}
/*-----------------------------------------------------------------------------------*/
/*Header*/
/*-----------------------------------------------------------------------------------*/
.logo {
    display: inline-block;
}
.logo svg {
    max-width: var(--logo-size)!important;
    height: auto;
}
/*-----------------------------------------------------------------------------------*/
/*Grid*/
/*-----------------------------------------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1.3rem;
}
.container.container-sm {
    max-width: 890px;
}
@media (min-width: 600px){ 
    .row {  
        display: flex; 
        flex-wrap: wrap;
        position: relative; 
    }
    .flexer {  
        display: flex; 
        align-items: center;
        justify-content: space-between;
    }
    .col_1 { 
        width:25% 
    }
    .col_2 { 
        width:75% 
    }
}
/*-----------------------------------------------------------------------------------*/
/*Footer*/
/*-----------------------------------------------------------------------------------*/
.footer {
    background: var(--dark-color);
    margin-top: 4rem;
    padding: 2rem 0;
}
@media (max-width: 600px){ 
    .header .menu {
        margin-top: 1rem;
    }
    .footer .menu {
        margin-bottom: 2rem;
    }
}
/*-----------------------------------------------------------------------------------*/
/*Stepper*/
/*-----------------------------------------------------------------------------------*/
@media (min-width: 600px){ 
    .stepper {
        margin-top: var(--top-spacer);
        position: fixed;
    }
}
.stepper a {
    text-decoration: none;
}
.step {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.v-stepper {
  position: relative;
}
.step .circle {
  background-color: var(--bg-color);
  border: 3px solid var(--font-color);
  border-radius: 100%;
  width: 20px;    /* +6 for border */
  height: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.step .line {
    top: 23px;
    left: 12px;
    height: 100%;
    position: absolute;
    border-left: 3px solid var(--font-color);
    z-index: 1;
}
.step.completed .circle {
    border-color: var(--aux-color);
}
.step.completed .line {
    border-left: 3px solid var(--aux-color);
}
.step.active .circle {
    background-color: var(--aux-color);
    border-color: var(--aux-color);
    z-index: 2;
}
.step.active a {
    color: var(--aux-color);
}
.step:last-child .line {
  border-left: 3px solid var(--bg-color);
  z-index: -1; /* behind the circle to completely hide */
}
.step-text {
    margin-left: 1rem;
    display: inline-block;
}
/*-----------------------------------------------------------------------------------*/
/*Content*/
/*-----------------------------------------------------------------------------------*/
@media (min-width: 600px){ 
    .content {
        padding-left: 3rem;
    }
}
main.container {
    padding-top: 0;
}
main h1 {
    margin-top: var(--top-spacer);
}
/*-----------------------------------------------------------------------------------*/
/*Faq*/
/*-----------------------------------------------------------------------------------*/
@media (min-width: 600px){ 
    .preguntas-index {
        margin-top: var(--top-spacer);
    }
}
/*-----------------------------------------------------------------------------------*/
/*Responsive video*/
/*-----------------------------------------------------------------------------------*/
 .video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px; height: 0; overflow: hidden;
  margin: 1rem 0 1rem;
}
.video iframe, 
.video object embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*-----------------------------------------------------------------------------------*/
/*Modules*/
/*-----------------------------------------------------------------------------------*/
.btn {
    color: var(--aux-color);
    border: 1px solid var(--aux-color);
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem;
}
.box {
    border: 1px solid var(--grey-color);
    border-radius: var(--radius);
    padding: 1.3rem;
    display: block;
    margin-bottom: 1.5rem;
}
.not-grow {
    text-align: center;
}
.not-grow img {
    width: auto;
    max-width: 100%;
}
.example {
    color: var(--grey-color);
    font-size: 90%;
}
.example a {
    color: var(--grey-color);
    font-weight: 600;
}