body {
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    min-height: 100vh;
    color: var(--color-alternative);
}
html {

}

.none {
    display: none;
}

/*************************************************************************
*
*   Componente: Home Page
*
**************************************************************************/

.homepage {
    position: relative;
}
.homepage__brand {
    display: none;
}
.homepage__logotipo {
    position: absolute;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    z-index: 30;
    display: none;
    max-width: 100%;
    width: 120px;
    height: auto;
}
.homepage__grid {
    height: 100vh;
    min-height: 640px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr;
    overflow: hidden;
}
.homepage__grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    padding: 1rem 2rem;
}
.homepage__grid-item:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(25,25,25,.5);
    transition: all .3s ease;
    z-index: 20;
}
.homepage__grid-item--left::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 10;
    transition: all .3s ease;
}
.no-webp .homepage__grid-item--left::before {
    background-image: url("../images/photos/banners/mobile/capital.jpg");
}
.webp .homepage__grid-item--left::before {
    background-image: url("../images/photos/banners/mobile/webp/capital.webp");
}

@media screen and (-webkit-device-pixel-ratio: 2),
        screen and (-webkit-device-pixel-ratio: 1.325),
        screen and (-webkit-device-pixel-ratio: 1.4),
        screen and (-webkit-device-pixel-ratio: 1.5),
        screen and (-webkit-device-pixel-ratio: 1.8) {
    .no-webp .homepage__grid-item--left::before {
        background-image: url("../images/photos/banners/mobile/capital@2x.jpg");
    }
    .webp .homepage__grid-item--left::before {
        background-image: url("../images/photos/banners/mobile/webp/capital@2x.webp");
    }
}
@media screen and (-webkit-device-pixel-ratio: 3),
        screen and (-webkit-device-pixel-ratio: 3.5),
        screen and (-webkit-device-pixel-ratio: 2.4),
        screen and (-webkit-device-pixel-ratio: 2.5),
        screen and (-webkit-device-pixel-ratio: 2.75) {
    .no-webp .homepage__grid-item--left::before {
        background-image: url("../images/photos/banners/mobile/capital@3x.jpg");
    }
    .webp .homepage__grid-item--left::before {
        background-image: url("../images/photos/banners/mobile/webp/capital@3x.webp");
    }
}
.homepage__grid-item--right::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .3s ease;
    z-index: 10;
}
.no-webp .homepage__grid-item--right:before {
    background-image: url("../images/photos/banners/mobile/industrial.jpg");
}
.webp .homepage__grid-item--right:before {
    background-image: url("../images/photos/banners/mobile/webp/industrial.webp");
}

@media screen and (-webkit-device-pixel-ratio: 2),
        screen and (-webkit-device-pixel-ratio: 1.325),
        screen and (-webkit-device-pixel-ratio: 1.4),
        screen and (-webkit-device-pixel-ratio: 1.5),
        screen and (-webkit-device-pixel-ratio: 1.8) {
    .no-webp .homepage__grid-item--right:before {
        background-image: url("../images/photos/banners/mobile/industrial@2x.jpg");
    }
    .webp .homepage__grid-item--right:before {
        background-image: url("../images/photos/banners/mobile/webp/industrial@2x.webp");
    }
}
@media screen and (-webkit-device-pixel-ratio: 3),
        screen and (-webkit-device-pixel-ratio: 3.5),
        screen and (-webkit-device-pixel-ratio: 2.4),
        screen and (-webkit-device-pixel-ratio: 2.5),
        screen and (-webkit-device-pixel-ratio: 2.75) {
    .no-webp .homepage__grid-item--right:before {
        background-image: url("../images/photos/banners/mobile/industrial@3x.jpg");
    }
    .webp .homepage__grid-item--right:before {
        background-image: url("../images/photos/banners/mobile/webp/industrial@3x.webp");
    }
}
.homepage__grid-item--left:hover:after,
.homepage__grid-item--right:hover:after,
.homepage__grid-item--left:focus:after,
.homepage__grid-item--right:focus:after {
    background-color: rgba(25,25,25,.2);
}

.homepage__grid-item--left:hover:before,
.homepage__grid-item--right:hover:before,
.homepage__grid-item--left:focus:before,
.homepage__grid-item--right:focus:before {
    transform: scale(1.1);
}
.homepage__content {
    max-width: 500px;
    z-index: 30;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.homepage__image {
    display: block;
    max-width: 100%;
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}
.homepage__title {
    margin-bottom: .3rem;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 500;
}
.homepage__description {
    margin-bottom: 1rem;
    font-size: .8rem;
    line-height: 1.5;
    font-weight: 500;
}
.homepage__button {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: .4rem 2rem;
    display: inline-block;
    text-transform: uppercase;
    font-size: .7rem;
    transition: all .3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}
.homepage__button:hover,
.homepage__button:focus {
    color: var(--color-alternative);
    box-shadow: inset -5rem 0 0 0 var(--color-white), inset 5rem 0 0 0 var(--color-white);
}



/*************************************************************************
*
*   Componente: Social Media
*
**************************************************************************/

.socialmedia {
    position: absolute;
    z-index: 30;
    bottom: 1rem;
    left: 5rem;
    display: none;
}
.socialmedia__menu {
    display: flex;
}
.socialmedia__item {
    margin-right: .7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socialmedia__item:nth-child(3),
.socialmedia__item:nth-child(4){
    border-right: 1px solid var(--color-white);
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socialmedia__link {
    color: var(--color-white);
    display: inline-block;
    text-transform: uppercase;
    font-size: .8rem;
    transition: all .2s linear;
}
.socialmedia__link:hover {
    text-shadow: 0 0 1px var(--color-white);
}
.socialmedia__item:nth-child(3) .socialmedia__link,
.socialmedia__item:nth-child(4) .socialmedia__link {
    padding: .4rem 1rem;
    font-size: .7rem;
}
.socialmedia__icon {
    color: var(--color-alternative);
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    padding: .2rem;
    border-radius: .15rem;
    transition: all .2s linear;
}
.socialmedia__icon:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}


/*************************************************************************
*
*   Componente: Video Intro
*
**************************************************************************/

.video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f5f3f5;
    z-index: 100;
}
.video__player {
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    height: 100%;
}