.portada{
    width: 100%;
    height: fit-content;
    display: flex;
}
.portada video, canvas{
    width: 100%;
    height: auto;
    position: relative;
}
.doubleSize {
    transform: rotate("360deg");
    -webkit-transform: rotate("360deg");
}
.always-on-top{
    width: 75px;
    height: 75px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
}
    .always-on-top > .icon-container{
        width: 75%;
        height: fit-content;
        margin: auto auto;
    }

    .header__icons_icon{
        background-color: blueviolet;
        width: 16px; height: 16px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
        transition: all .4s linear;
        -webkit-transition:all .4s linear;
        -moz-transition:all .4s linear;
    }
    .header__icons_icon.--correo{
        background-image: url('/assets/images/icons/header__menu_correo.png');
    }   
    .header__icons_icon.--correo:hover{
        background-image: url('/assets/images/icons/header__menu_correo--hovered.png');
    }  
    .header__icons_icon.--whatsapp{
        background-image: url('/assets/images/icons/header__menu_whatsapp.png');
    }   
    .header__icons_icon.--whatsapp:hover{
        background-image: url('/assets/images/icons/header__menu_whatsapp--hovered.png');
    }  
    .header__icons_icon.--facebook{
        background-image: url('/assets/images/icons/header__menu_facebook.png');
    }   
    .header__icons_icon.--facebook:hover{
        background-image: url('/assets/images/icons/header__menu_facebook--hovered.png');
    }  
    .header__icons_icon.--linkedin{
        background-image: url('/assets/images/icons/header__menu_linkedin.png');
    } 
    .header__icons_icon.--linkedin:hover{
        background-image: url('/assets/images/icons/header__menu_linkedin--hovered.png');
    } 
    .header__icons_icon.--instagram{
        background-image: url('/assets/images/icons/header__menu_instagram.png');
    }   
    .header__icons_icon.--instagram:hover{
        background-image: url('/assets/images/icons/header__menu_instagram--hovered.png');
    }
    .header__icons_icon.--youtube{
        background-image: url('/assets/images/icons/header__menu_youtube.png');
    }     
    .header__icons_icon.--youtube:hover{
        background-image: url('/assets/images/icons/header__menu_youtube--hovered.png');
    }   

    .img-flip{
        transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-out;
    }

    .img-flip:hover{
        transform: scale(1.4);
        transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
    }

@media screen and (max-width: 1024px) {
    .portada video, canvas{
        margin-top: 10px;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    
}

span.icon-button{
    margin: .25em;
    font-size: 56px;
    background-color: antiquewhite;
    color: #B09980;
    opacity: .5;
    cursor: pointer;
}

span.icon-button:hover{
    opacity: 1;
}

img.zoom-in{
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-out;
}

img.zoom-in:hover{
    transform: scale(1.1) rotate(-3deg);
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

.slider-img-link{
    cursor: hand;
}

.slide-caption-container{
    position:absolute;
    bottom:0; 
    left:calc(240px);
    width: calc(720px); height: 6em;
    color:white;
    text-align:center;
    background-color: rgba(1, 1, 1, 0.7);
    padding: 1em;
    font-size: x-large;
    line-height:  0.9;
}

.page-back-button{
    position: absolute;
    margin-left: 5px;
    margin-right: 1em;
    cursor: pointer;
    opacity: .5;
    transition: all .25s ease-in;
    -webkit-transition: all .2s ease-in;
}

.page-back-button:hover{
    opacity: 1;
    transform: scale(1.2);
    transition: all .25s ease-in;
    -webkit-transition: all .2s ease-in;
}

.service-datail-main{
    height: fit-content; 
    padding: 3em 1em;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(255,255,255,.2);
}

@media screen and (max-width: 767.98px) {
    .slide-caption-container {
        font-weight: bold;
        font-size: 1.75em;
    }

    .service-title{
        width: 75%
    }
}