#loading{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue1);
    z-index: 999;
}

header{
    position: relative;
    border-bottom: solid 1px var(--blue1_2);
    background-color: transparent;
    z-index: 999;
    transition: all 0.3s;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(var(--generalSpace) * 1);
    background-color: var(--blue1);
    margin-top: calc(var(--generalSpace) * 6);
    color: var(--white);
    box-sizing: border-box;
}

#main-logo img{
    height: 50px;
    width: auto;
}

#inicio{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: -1;
}

#bg-video{
    position: absolute;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

#dark-glass{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

#typed{
    color: var(--white);
    font-size: 70px;
    text-align: center;
}

.typed-cursor{
    font-size: 70px;
    color: var(--white);
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.section{
    padding: calc(var(--generalSpace) * 6) 0 0 0;
}

.section-head{
    margin-bottom: calc(var(--generalSpace) * 2) !important;
    text-align: center;
    box-sizing: border-box;
}

.section-title h1{
    color: var(--blue1);
    box-sizing: border-box;
}

.section-desc{
    box-sizing: border-box;
}

.service-card{
    display: flex;
    margin-bottom: calc(var(--generalSpace) * 2) !important;
    box-sizing: border-box;
}

.service-card-icon{
    width: 30%;
    /* padding-right: 5%; */
    color: var(--blue1);
    box-sizing: border-box;
}

.service-card-icon img{
    display: block;
    width: 70%;
}

.service-card-content{
    width: 70%;
    box-sizing: border-box;
}

.service-card-title{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: calc(var(--generalSpace) / 3);
    box-sizing: border-box;
}

.service-card-text{
    box-sizing: border-box;
}

.portafolio-card{
    box-shadow: 0 8px 6px -6px black;
    padding: calc(var(--generalSpace) / 2);
    /* background-color: var(--blue1_07); */
    border-radius: calc(var(--generalSpace) / 3);
    opacity: 0.9;
    box-sizing: border-box;
    transition: all 0.3s;
}

.portafolio-card:hover{
    opacity: 1;
    /* background-color: var(--blue1_2); */
}

.portafolio-card-title{
    font-size: 22px;
    font-weight: 500;
    margin-top: calc(var(--generalSpace) / 3);
    color: var(--black);
    box-sizing: border-box;
}

.portafolio-card-desc{
    box-sizing: border-box;
}

.ico-social{
    display: block;
    margin-bottom: calc(var(--generalSpace) / 2);
    box-sizing: border-box;
}

.ico-social img{
    max-width: 50px;
    filter: opacity(0.8);
    transition: all 0.3s;
}

.ico-social img:hover{
    filter: opacity(1);
}

/* Misceláneos */
.validation{
    min-height: 35px;
    color: red;
    font-size: 12px;
}
