body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    width:100vw;
    overflow-x: hidden;
}

header {
    padding: 20px 0;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.section {
    padding: 32px 15px 20px 15px;;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
}

.section h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.section p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

.section img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 15px;
    object-fit: cover;
    max-height: 100%;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.subfooter{
    margin-top: 1rem !important;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    h3 {
        margin-top: 1rem !important;
    }
    .mb-xs-2 {
        margin-bottom: 2rem !important;
    }
}

.navbar-nav {
    flex-wrap: wrap;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover, .dropdown-item:hover {
    background-color: #333;
    color: #fff;
}

.navbar-nav .dropdown-menu {
    background-color: #333;
}

.navbar-nav .dropdown-item {
    color: #fff;
    border-bottom: 2px solid white;
}

.navbar-nav .dropdown-item:hover, .navbar-nav .dropdown-item:focus {
    background: rgb(12, 12, 12);
}

.navbar-nav .dropdown-item.loginG {
    background-color: #cddc00;
    color: #000;
}

.navbar-nav .dropdown-item.loginG:hover {
    background-color: #b5c000;
}

.navbar-brand img {
    max-height: 50px;
}

.white {
    color: white;
}

.section {
    position: relative;
    background: #2f2c2c;
    scroll-margin-top: 50px;
    scroll-snap-margin-top: 50px; /* iOS 11 and older */
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        float: none;
    }
}
@media (min-width: 992px ) and (max-width: 1400px) {
    .hideOnSmallDesktop{
        display: none;
    }
}

@media (min-width: 992px) {
    .hideDesktop{
        display: none;
    }

    .nav-item {
        margin-left: 1em;
    }
}

@media (max-width: 992px) {
    .hideMobile{
        display: none;
    }

    .section {
        scroll-margin-top: 90px;
        scroll-snap-margin-top: 90px;
    }
}

.carousel-item.active{
    display: flex !important;
}

.carousel{
    height: 80vh;
    padding: 0
}

.carousel-inner{
    height: 100%;
}

.carousel-item{
    height: 100%
}

.carousel-item img {
    height: 100%;
    margin: 0;
    object-fit: cover;
}

#carouselAutoplaying{
    min-height: 350px;
}

@media (max-width: 912px) {
    #carouselAutoplaying{
        height:60vh;
    }
}

@media (max-width: 576px) {
    #carouselAutoplaying{
        height:40vh;
    }
}

/* CLIENTES */
#clients .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
#clients .column {
    flex: 20%;
    padding: 0 4px;
}

#clients .column img {
    margin-top: 8px;
    vertical-align: middle;
}

/* TEXTO EN CARRUSEL */
#textInVideo {
    position: absolute;
    right: 1em;
    top: 2vh;
    /* transform: translateY(-50%); */
    padding: 1em 1em 0em 1em;
    max-width: 100%;
    width: 20em;
    z-index: 1;
    background: rgba(0, 0, 0, 0.05);
    background: linear-gradient(175deg,rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 4px;
    text-shadow: -1px 0 #00000085,1px 0 #00000085,0 1px #00000061,0 -1px #0000004d;
}

@media (max-width: 991px) {
    #textInVideo {
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    #textInVideo {
        top: 1em;
        transform: translateX(-50%);
    }
}

.carousel-control-next-icon, .carousel-control-prev-icon{
    margin-top: 18vh
}

/* VIDEO MODAL */
.modal-video{
    max-width: 100vw;
}
.modal-video-movie-wrap iframe {
    outline: 2px solid white;
    border-radius: 1px;
}

@keyframes modal-video {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes modal-video-inner {
    from {
        transform: translate(0, 100px)
    }

    to {
        transform: translate(0, 0)
    }
}

.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    cursor: pointer;
    opacity: 1;
    animation-timing-function: ease-out;
    animation-duration: .3s;
    animation-name: modal-video;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.modal-video-close {
    opacity: 0
}

.modal-video-close .modal-video-movie-wrap {
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px)
}

.modal-video-body {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    box-sizing: border-box
}

.modal-video-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

@media (orientation: landscape) {
    .modal-video-inner {
        padding: 10px 60px;
        box-sizing: border-box
    }
}

.modal-video-movie-wrap {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    background-color: #333;
    animation-timing-function: ease-out;
    animation-duration: .3s;
    animation-name: modal-video-inner;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -ms-transition: -ms-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out
}

.modal-video-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.modal-video-close-btn {
    position: absolute;
    z-index: 2;
    top: -45px;
    right: 0;
    display: inline-block;
    width: 35px;
    height: 35px;
    overflow: hidden;
    border: none;
    background: transparent
}

@media (orientation: landscape) {
    .modal-video-close-btn {
        top: 0;
        right: -45px
    }
}

.modal-video-close-btn:before {
    transform: rotate(45deg)
}

.modal-video-close-btn:after {
    transform: rotate(-45deg)
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
    margin-top: -6px
}


/* FOOTER */
footer{
    padding-bottom: 1.75em;
}

.footer-social {
    position: relative;
    margin: auto;
    margin-top: auto;
    display: flex;
    justify-content: center;
    width: 250px;
    margin-top: 50px;
}

.icon-box {
    width: 35px;
    height: 35px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: flex;
    float: left;
    margin-left: 20px;
    background: #175ba3;
    justify-content: center;
    align-items: center;
    color: white;
}

.icon-box .fa.fa-envelope{
    transform: rotate(-45deg);
}




#vboxImageMobile{
    display: none
}
#vboxInfoButton{
    margin-left:50%;
    transform:translateX(50%);
    float: left;
    width: auto;
    margin: 3em 0 0 0;
    font-size: 1.15em;
}

@media (min-width: 1500px) {
    .pt-md-2{
        padding-top: 2rem !important;
    }
    .mt-md-0{
        margin-top: 0 !important;
    }
    .mt-md-1{
        margin-top: 1rem !important;
    }
}

@media (max-width:1400px){
    #vboxImage{
        width:28.5% !important;
        margin-top: -6.5em !important
    }

}


@media (max-width:1200px){
    #vboxImage{
        width: 27% !important;
        margin-top: -7em !important;
    }
}
@media (max-width:991px){
    #vboxImage{
        display: none !important
    }
    #vboxImageMobile{
        display: block !important
    }
    #vboxInfoButton{
        float: none;
        transform: none;
        margin-top: 1em !important
    }
    #vboxImageMobile_2{
        aspect-ratio: 1.25;
        object-position: 15% center;
    }
    #vboxImageMobile_3{
        aspect-ratio: 1.25;

    }
    #vboxImageMobile_4{
        object-position: 40% center;
        aspect-ratio: 1.25;
    }
}

@media (max-width:767px){
    #textInVideo{
        display: none !important
    }
    .carousel-control-next-icon, .carousel-control-prev-icon{
        margin-top: 0;
    }

    #solution1, #solution2{
        display: none;
    }
}
@media (min-width:768px){
    #solution1, #solution2{
        display: block !important;
    }
}

html, body {
	overflow-x: hidden;
}

#sol1Header, #sol2Header{
    background: #ffffff1c;
    padding: .5em .25em;
    border-radius: 4px;
}