* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    overflow: hidden;
    height: 100%;
}

#fullview>* {
    display: block;
    height: 100vh !important;
    /* width: 100vw !important; */
    /* transform: translateZ(0) rotateZ(360deg); */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
    overflow: hidden;
}

#fv-dots {
    position: fixed;
    top: 50%;
    left: 96%;
    transform: translate(-50%, -50%);
}

#fv-dots ul {
    display: block;
    list-style: none;
}

#fv-dots ul li {
    padding: 10px;
}

#fv-dots ul li a {
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    text-align: center;
}

#fv-dots ul li a span {
    display: block;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    background-color: #888888;
    border-radius: 50%;
    margin: 0 auto;
    width: 7px;
    height: 7px;
    transition: 0.1s ease all;
}


#fv-dots ul a.active span {
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
}

#fv-dots ul a:hover span {
    width: 9px;
    height: 9px;
}

/* Tooltip container */
.fv-tooltip {
    position: relative;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

/* Tooltip text */
.fv-tooltip .fv-tooltiptext {
    visibility: hidden;
    width: 120px;
    background: #3E474F;
    border-radius: .25em;
    color: #EDEFF0;
    text-align: center;
    padding: 5px 0;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    top: -1px;
    right: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.fv-tooltip:hover .fv-tooltiptext {
    visibility: visible;
}

.fv-tooltip .fv-tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%;
    /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #3E474F;
}

.fv-tooltip.fv-tooltip-left .fv-tooltiptext::after {
    left: unset;
    right: 100%;
    border-color: transparent #3E474F transparent transparent;
}

::selection {
    background: rgba(41, 35, 92, .5);
    color: #fff;
}

/* DOCUMENT SETTING */

html {
    line-height: 1.29;
    font-size: 13px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: inherit;
    color: rgb(41, 35, 92);
    font-size: 1rem;
}

pre code {
    font-family: 'Roboto Mono', monospace !important;
}

a,
p {
    color: rgb(41, 35, 92);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 4.2rem;
    font-weight: 300;
    margin-bottom: -13px !important;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    left: 2px;
}

h4 {
    font-weight: 300;
    font-size: 1.5rem;
    /* text-transform: capitalize; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
}

section,
main {
    padding: 80px 0;
}


/* CUSTOM ROW/COLUMN GRID */
.main-container {
    width: 98%;
    max-width: 550px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.row>[class^='column-'] {
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex: none;
}

.row>.column-1 {
    width: calc((100% / 6) * 1);
}

.row>.column-2 {
    width: calc((100% / 6) * 2);
}

.row>.column-3 {
    width: calc((100% / 6) * 3);
}

.row>.column-4 {
    width: calc((100% / 6) * 4);
}

.row>.column-5 {
    width: calc((100% / 6) * 5);
}

.row>.column-6 {
    width: calc((100% / 6) * 6);
}


@media all and (min-width:570px) {

    h1 {
        font-size: 5rem;
        margin-bottom: -17px !important;
    }

    h3 {
        font-size: 1.45rem;
    }

    html {
        font-size: 14px;
    }

    .main-container {
        max-width: 540px;
        padding: 0px;
    }

    .row>.column-small-1 {
        width: calc((100% / 6) * 1);
    }

    .row>.column-small-2 {
        width: calc((100% / 6) * 2);
    }

    .row>.column-small-3 {
        width: calc((100% / 6) * 3);
    }

    .row>.column-small-4 {
        width: calc((100% / 6) * 4);
    }

    .row>.column-small-5 {
        width: calc((100% / 6) * 5);
    }

    .row>.column-small-6 {
        width: calc((100% / 6) * 6);
    }
}

@media all and (min-width:760px) {

    h1 {
        font-size: 6.2rem;
        margin-bottom: -22px !important;
    }

    h3 {
        font-size: 1.8rem;
    }

    html {
        font-size: 15px;
    }

    .main-container {
        max-width: 720px;
    }

    .row>.column-medium-1 {
        width: calc((100% / 6) * 1);
    }

    .row>.column-medium-2 {
        width: calc((100% / 6) * 2);
    }

    .row>.column-medium-3 {
        width: calc((100% / 6) * 3);
    }

    .row>.column-medium-4 {
        width: calc((100% / 6) * 4);
    }

    .row>.column-medium-5 {
        width: calc((100% / 6) * 5);
    }

    .row>.column-medium-6 {
        width: calc((100% / 6) * 6);
    }

}

@media all and (min-width:990px) {

    html {
        font-size: 16px;
    }

    .main-container {
        max-width: 960px;
    }

    .row>.column-large-1 {
        width: calc((100% / 6) * 1);
    }

    .row>.column-large-2 {
        width: calc((100% / 6) * 2);
    }

    .row>.column-large-3 {
        width: calc((100% / 6) * 3);
    }

    .row>.column-large-4 {
        width: calc((100% / 6) * 4);
    }

    .row>.column-large-5 {
        width: calc((100% / 6) * 5);
    }

    .row>.column-large-6 {
        width: calc((100% / 6) * 6);
    }
}

@media (min-width: 1200px) {

    html {
        font-size: 16px;
    }

    .main-container {
        max-width: 1140px;
    }

}

/* Navbar */

.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: 0.2s ease-in all;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
    z-index: 9999;
}

.header.changed {
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.brand a {
    color: #fff;
    font-size: 1.188rem;
    font-weight: 300;
    cursor: pointer;
}

@media all and (max-width:570px) {

    #equipo .main-container {
        width: 90% !important;
        padding: 0 !important;
    }
    
    #equipo .bg-img {
        display: none;
    }

    #fv-dots {
        display: none;
    }

    .header .brand {
        display: none;
    }

    .header .header-content,
    #navbar {
        justify-content: center;
    }

}

#navbar>.nav-item {
    margin: 0 10px;
    text-align: left;
}

#navbar a {
    display: inline-block;
    text-decoration: none;
    color: white;
    position: relative;
    font-weight: 400;
    /* transition: font-weight 0.25s ease-in-out; */
    /* transition: text-shadow 0.25s ease-in-out; */
}

#navbar a.active {
    font-weight: 900;
    /* text-shadow:
            -.025rem -.025rem 0 rgba(255, 255, 255, .4),
            .025rem -.025rem 0 rgba(255, 255, 255, .4),
            -.025rem .025rem 0 rgba(255, 255, 255, .4),
            .025rem .025rem 0 rgba(255, 255, 255, .4);
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s; */
}

/* #navbar a::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: transparent;
    margin: 6px auto 0;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 50%;
    transition: 0.1s ease-out all;
}

#navbar a.active::after {
    background: rgb(41, 35, 92);
} */

#navbar .nav-item .nav-icon {
    background-color: #ffffff;
    margin-left: 5px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    border: 1px solid #ffffff;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
}

#navbar .nav-item .nav-icon a {
    color: rgb(41, 35, 92);
    transition: 0.2s all ease-in;
}

#navbar .nav-item .nav-icon:hover a {
    color: rgba(41, 35, 92, 1);
}

.header.changed a,
.header.changed #navbar a {
    color: rgba(41, 35, 92, 92);
}

/* Section 1 */
#hero {
    /* background-color: rgb(41,35,92); */
    color: #ffffff;
    position: relative;
}

#hero .mask {
    z-index: -1;
    background: rgba(41, 35, 92, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#hero video {
    z-index: -2;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .hero-content,
.section-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.section-content a {
    text-decoration: underline;
}

#hero .hero-heading {
    margin-bottom: 10px;
    text-align: left;
}

.btn {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0px 5px 18px -12px rgba(0, 0, 0, 0.09);
    transition: 0.2s ease all;
}

#hero .hero-buttons .btn {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: rgb(41, 35, 92);
    margin: 0 3px;
}

#hero .hero-buttons .btn:hover {
    background-color: #ebe8e8;
}

.h-100 {
    height: 100%;
}

/* Section: Getting equipo */
section {
    /* padding-top: 3rem; */
    color: #ffffff;
}

#equipo {
    display: flex;
    padding: 0;
    color: rgb(41, 35, 92);
}

#equipo .main-container {
    width: 50%;
    padding: 11%;
}

#equipo .bg-img {
    /* background-image: url(equipo.jpg); */
    width: 50%;
    background-size: cover;
    background-position: center;
}

#equipo .main-container,
#contacto .main-container, section .main-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-box {
    min-width: 98%;
}

.section-box h4 {
    font-size: 1.3rem;
}

/* .section-content {
    margin-bottom: 2.4rem;
} */

.section-content span.material-icons {
    font-size: 8rem;
}

pre {
    text-align: left;
    background-color: #173549;
    color: #ebe8e8;
    padding: 22px;
    width: 100%;
    border-radius: 3px;
    overflow-y: auto;
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 25px;
}

pre .code-tag {
    color: rgb(113, 170, 255);
}

pre .code-attr {
    color: rgb(255, 166, 0);
}

pre .code-text {
    color: rgb(255, 255, 255);
}

pre::before {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    position: absolute;
    top: 4px;
    right: 6px;
    padding: 0;
}

pre.html::before {
    content: 'HTML';
    color: #ff8a00 !important;
}

pre.js::before {

    content: 'Javascript';
    color: #ff8a00 !important;
}

/* Section: contacto */

#contacto {
    background-color: rgb(41, 35, 92);
    color: #ffffff;
}

.contacto {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.contacto a {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    margin: 0 .25rem .75rem .25rem;
    white-space: normal;
    transition: all .8s;
    display: inline-block;
    font-size: 1.05rem;
    border-radius: 5px;
    padding: .5rem .75rem;
    font-weight: 600;
    line-height: 1.5;
}

.contacto a span {
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-right: .25rem;
}

.contacto a:hover {
    background: rgba(255, 255, 255, .4);
}

textarea {
    overflow: auto;
    resize: vertical;
}

input, textarea {
    padding: 1rem;
    display: block;
    border: none;
    width: 100%;
    border-radius: 5px;
    outline: none !important;
    font-weight: 600;
    margin: .75rem auto;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

input[type=submit] {
    color: white;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: .05rem;
    text-transform: uppercase;
}


/* Fullview dots */


#fv-dots ul li a span {
    background-color: #ddd;
    transition: 0.2s ease-in-out all;
    width: 6px;
    height: 6px;
}


#fv-dots ul a.active span {

    background-color: #173549 !important;
}

#fv-dots ul li {
    padding: 6px;
}

/* Section servicios */
#servicios {
    background-color: rgb(41,35,92);
    color: #ffffff;
}

#servicios .section-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

#servicios .btn {
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin: 3px;
    font-size: 0.9rem;
}

#servicios p {
    font-size: 1.2rem;
    font-weight: 300;
    background: #fbfbfb;
    padding: 23px;
    border-radius: 3px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn.btn-main {
    background: #1a53f2;
    border: 1px solid #1a53f2;
}


.btn.btn-sec {
    background: #dc3545;
    border: 1px solid #dc3545;
}

#servicios .btn:hover {
    background-color: #ffffff;
    border-color: #fbfbfb;
    color: #4f4f4f !important;
}

#servicios2 h4 {
    margin-bottom: 12px;
}

strong {
    font-weight: 600;
}

.color-transition {
    -webkit-animation-name: color-transition;
    animation-name: color-transition;
    -webkit-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transition: all .5s;
}

.bg-transition {
    -webkit-animation-name: bg-transition;
    animation-name: bg-transition;
    -webkit-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transition: all .5s;
}

@keyframes color-transition {
    0% {
        color: rgb(243, 146, 0);
    }

    33% {
        color: rgb(0, 161, 154);
    }

    66% {
        color: rgb(29, 113, 184);
    }

    100% {
        color: rgb(230, 0, 126);
    }
}

@keyframes bg-transition {
    0% {
        background-color: rgb(243, 146, 0);
    }

    33% {
        background-color: rgb(0, 161, 154);
    }

    66% {
        background-color: rgb(29, 113, 184);
    }

    100% {
        background-color: rgb(230, 0, 126);
    }
}

.scroll {
    position: relative;
    font-size: 1.3em;
    margin-top: 20px;
    display: inline-block;
    height: 100px;
    width: 100%;
    cursor: pointer;
}

.scroll:hover {
    text-decoration: none;
}

.scroll:after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;

    margin: auto;
    top: 10px;
    right: 0;

    left: 0;
    -webkit-animation: 3s arrow infinite ease;
    animation: 3s arrow infinite ease;
}

.scroll:after {
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

@-webkit-keyframes arrow {

    0%,
    100% {
        top: 10px;
    }

    50% {
        top: 30px;
    }
}

@keyframes arrow {

    0%,
    100% {
        top: 10px;
    }

    50% {
        top: 30px;
    }
}