@charset "UTF-8";
.navigation {
    height: 100px;
    background: #ffffff;
    position: fixed;
    z-index: 4;
    width: 100%;
}

/* Quitamos el relleno y el margen del documento */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI';
}

html{
    scroll-behavior: smooth;
}


::-webkit-scrollbar{
    background-color: #e7e7e7;
    width: 12px;
}

::-webkit-scrollbar-thumb{
    background-color: #222224;
}


/* Codificamos nuestra barra de navegación */
.brand {
    display: flex;
    position: absolute;
    padding-left: 20px;
    float: left;
    line-height: 20px;
    text-transform: uppercase;
    font-size: 1.4em;
    max-height: 100%;
}
.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
    max-height: 120px;
}

/* Configuramos el tamaño de la imagen dentro de la Barra */
.brand a img{
    max-height: 120px;
    margin-top: -15px;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    float: right;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    float: left;
    position: relative;
}

nav ul li .dc-one,
nav ul li .priv-one,
nav ul li .dc-one:visited,
nav ul li .priv-one:visited {
    display: block;
    padding: 15px 20px;
    line-height: 70px;
    color: #222222;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


nav ul li .dc,
nav ul li .dc:visited {
    display: block;
    padding: 0px 15px;
    line-height: 50px;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Aplicamos un efecto background a los elementos principales de la barra */
nav ul li a:hover,
nav ul li a:visited:hover {
    background: #2a2a2b;
    color: #ffffff;
}


/* Aplicamos otro color de background a un elemento en especifico */
nav ul li .dc-one:hover,
nav ul li .dc-one:visited:hover {
    background: #f38609;
    color: #fff;
}

/* Aplicamos otro color de background a un elemento en especifico */
nav ul li .priv-one:hover,
nav ul li .priv-one:visited:hover {
    background: #252627;
    color: #eeeeee;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 0px;
    content: " ▾";
}
nav ul li ul li {
    min-width: 240px;
}
nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Navgeación móvil */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    height: 70px;
    width: 70px;
}

@media only screen and (max-width: 798px) {
    .navigation {
        height: 80px;
        background: #ffffff;
        position: fixed;
        z-index: 4;
        width: 100%;
    }
    .nav-mobile {
        display: block;
    }
    nav {
        width: 100%;
        padding: 80px 0 15px;
    }
    nav ul {
        display: none;
    }
    nav ul li {
        float: none;
    }
    nav ul li a {
        padding: 15px;
        line-height: 20px;
    }
    nav ul li ul li a {
        padding-left: 30px;
    }
    .nav-dropdown {
        position: static;
    }

    nav ul li .dc-one,
    nav ul li .priv-one,
    nav ul li .dc-one:visited,
    nav ul li .priv-one:visited {
        display: block;
        padding: 15px 20px;
        line-height: 20px;
        background: #fcfcfc;
        color: #222222;
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }


    nav ul li .dc,
    nav ul li .dc:visited {
        display: block;
        padding: 0px 30px;
        line-height: 50px;
        background: #fcfcfc;
        color: #222222;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .brand a img{
        height: 90px;
        margin-top: -8px;
        margin-left: -30px;
    }
}


@media screen and (min-width: 799px) {
    
    .nav-list {
    display: block !important;
    }
}


#nav-toggle {
    position: absolute;
    left: 18px;
    top: 30px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: #000000;
    position: absolute;
    display: block;
    content: "";
    transition: all 200ms ease-in;
}
#nav-toggle span:before {
    top: -10px;
}
#nav-toggle span:after {
    bottom: -10px;
}
#nav-toggle.active span {
    background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
}
#nav-toggle.active span:before {
    transform: rotate(45deg);
}
#nav-toggle.active span:after {
    transform: rotate(-45deg);
}

article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .banner {
        display: flex;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background-color: #ffffff;
        position: relative;
    }

    #hero {
        display: flex;
        width: 100%;
        height: 100vh;
        position: absolute;
        background-image: linear-gradient(0deg,
                rgba(15, 15, 15, 0.7),
                rgba(0, 0, 0, 0.7)), url("../img/backgrounds/background-three.avif");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;

    }

    .titulo-banner {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .text-in {
        text-align: center;
        font-size: 25px;
        text-transform: uppercase;
        color: #ffffff;
    }

    .security-text {
        font-size: 15px;
        margin-top: 10px;
        color: #faf2f2;
        font-weight: 600;
        text-align: center;
    }
    
    /* Estilos para container camaras */
    .container-telefonia {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 10px;
        padding-bottom: 30px;
        background: #fafafa;
    }

    .contenedor-info{
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor-info .titulo-info{
        font-size: 25px;
        margin-top: 10px;
        color: #535353;
    }

    .contenedor-info .texto-info{
        max-width: 900px;
        font-size: 18px;
        text-align: center;
        font-weight: 300;
    }

    /* Soluciones dccomunicaciones */
    .global-soluciones {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    .title-soluciones {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        font-size: 16px;
        text-transform: uppercase;
    }

    .linea-title {
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }

    .linea-title:before {
        border-top: 2px solid #ff8800;
        content: "";
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }

    /* Estilos de carda */
    .telefonia-solutions {
        display: flex;
        width: 100%;
        max-width: 1200px;
        justify-content: space-around;
        margin-top: 40px;
        gap: 20px 15px;
        flex-wrap: wrap;
    }

    .card-container {
        position: relative;
        width: 260px;
        height: 350px;
    }

    .card {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease-in-out;
    }

    .card-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        transform-origin: center;
        z-index: 1;
        padding: 5px;
        text-decoration: none;
        color: #000;
    }

    .card-main img {
        height: 170px;
        margin-bottom: 0px;
    }

    .card-main .title-card{
        font-size: 12px;
        text-align: center;
        height: 30px;
        text-transform: uppercase;
    }

    .card-main .text-card{
        font-size: 12px;
        text-align: justify;
        height: 100px;
        background: #ffffff;
        padding: 10px;
    }

    .card-before:before,
    .card-after:after {
        content: "";
        position: absolute;
        border-radius: 2px;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ecebeb;
        transition: transform 0.3s ease-in-out;
    }

    .card:before {
        transform: rotate(-2deg);
    }

    .card:after {
        transform: rotate(2deg);
    }

    .card-container .button-link-one {
        display: flex;
        justify-content: end;
        height: 31px;
    }

    .button-link-one .nav-link-one {
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        color: #000;
        text-transform: uppercase;
        position: relative;
        margin-top: 10px;
    }

    .nav-link-one:hover {
        color: #1c6bff;
        transition: all .3s;
    }

    /* Estilos para sección de oficina */
    .oficinas {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background: #f59323;
    }

    .oficinas .logo-oficina {
        display: flex;
        justify-content: center;
        margin-top: 35px;
    }

    .logo-oficina img {
        height: 50px;
    }

    .controller-info {
        display: flex;
        width: 100%;
        margin-top: 20px;
        box-sizing: border-box;
        gap: 15px;
        flex-direction: column;
        flex-wrap: wrap;
    }

    /* Estilamos oficinas centrales */
    .controller-info .oficinas-centrales {
        display: flex;
        flex-direction: column;
        margin-left: 20px;
    }

    .oficinas-centrales .title-oficina {
        font-size: 16px;
        text-transform: uppercase;
        color: #333333;
        font-weight: 700;
    }

    .oficinas-centrales .oficinas-text {
        font-size: 14px;
        line-height: 25px;
        font-weight: 500;
        max-width: 350px;
        color: #333333;
    }

    /* Apartado de redes sociales */
    .redes-sociales {
        display: flex;
        flex-direction: column;
        width: 300px;
        margin-top: 10px;
    }

    .redes-sociales .container-redes {
        display: flex;
        width: 100%;
        margin-left: 20px;
    }

    .container-redes .title-redes {
        font-size: 16px;
        text-transform: uppercase;
        color: #333333;
    }

    .middle {
        display: flex;
        flex-wrap: wrap;
        width: 270px;
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .btn {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #e4e4e4;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #000000;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 43px;
        font-size: 18px;
        transition: 0.2s linear;
    }

    .btn:hover i {
        transform: scale(1);
        color: #f1f1f1;
    }

    .btn::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #3b5998;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
    }


    .btn:nth-child(2)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        left: -110%;
        top: 90%;
    }

    .btn:nth-child(3)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #25D366;
        left: -110%;
        top: 90%;
    }

    .btn:hover::before {
        animation: aaa 0.7s 1;
        top: -10%;
        left: -10%;
    }

    @keyframes aaa {
        0% {
            left: -110%;
            top: 90%;
        }

        50% {
            left: 10%;
            top: -30%;
        }

        100% {
            top: -10%;
            left: -10%;
        }
    }

    /* Sección de descargas */
    .descargas{
        display: flex;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 10px;
        margin-top: 15px;
    }

    .buttons-downloads{
        display: flex;
        width: 100%;
        height: 100%;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .buttons-downloads .button-anydesk{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 30px;
        padding: 7px 10px;
        background: #f00404;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 11px;
        color: #fff;
    }

    .button-anydesk:active{
        transform: scale(0.91);
    }

    .buttons-downloads .button-teamviewer{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 30px;
        background: #0527e2;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 11px;
        color: #fff;
    }

    .button-teamviewer:active{
        transform: scale(0.91);
    }


    /* Estilos para menú */
    .menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }

    .menu-title {
        display: flex;
        width: 100%;
    }

    .menu-title .title-me {
        margin-left: 20px;
        color: #333333;
    }


    .menu-items {
        display: flex;
        width: 50%;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .menu-link {
        line-height: 40px;
        text-decoration: none;
        color: #333333;
        margin-left: 20px;
    }

    .menu-link:hover {
        color: #ffffff;
    }

    .chev-right {
        margin-right: 10px;
        color: #000000;
        font-size: 12px;
    }


    /* Estilos para el footer*/
    .footer-ext {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: #000000;
        height: 40px;
    }

    .footer-ext .copyright {
        width: 100%;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        text-align: end;
        margin-right: 20px;
    }

    .footer-ext .footer-info {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .banner {
        display: flex;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background-color: #ffffff;
        position: relative;
    }

    #hero {
        display: flex;
        width: 100%;
        height: 100vh;
        position: absolute;
        background-image: linear-gradient(0deg,
                rgba(15, 15, 15, 0.7),
                rgba(0, 0, 0, 0.7)), url("../img/backgrounds/background-three.avif");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;

    }

    .titulo-banner {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .text-in {
        text-align: center;
        font-size: 30px;
        text-transform: uppercase;
        color: #ffffff;
    }

    .security-text{
        text-align: center;
        font-size: 20px;
        margin-top: 10px;
        color: #faf2f2;
        font-weight: 600;
    }

    /* Estilos para container camaras */
    .container-telefonia {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 10px;
        padding-bottom: 40px;
        background: #fafafa;
    }

    .contenedor-info{
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor-info .titulo-info{
        font-size: 40px;
        margin-top: 10px;
        color: #535353;
    }

    .contenedor-info .texto-info{
        max-width: 900px;
        font-size: 22px;
        text-align: center;
        font-weight: 300;

    }

    /* Soluciones dccomunicaciones */
    .global-soluciones {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    .title-soluciones {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .linea-title {
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }

    .linea-title:before {
        border-top: 2px solid #ff8800;
        content: "";
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }

    /* Estilos de carda */
    .telefonia-solutions {
        display: flex;
        width: 100%;
        max-width: 1200px;
        justify-content: space-around;
        margin-top: 40px;
        gap: 30px 15px;
        flex-wrap: wrap;
    }

    .card-container {
        position: relative;
        width: 260px;
        height: 350px;
    }

    .card {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease-in-out;
    }

    .card-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        transform-origin: center;
        z-index: 1;
        cursor: pointer;
        padding: 5px;
        text-decoration: none;
        color: #000;
    }

    .card-main img {
        height: 170px;
        margin-bottom: 0px;
    }

    .card-main .title-card{
        font-size: 12px;
        text-align: center;
        height: 30px;
        text-transform: uppercase;
    }

    .card-main .text-card{
        font-size: 12px;
        text-align: justify;
        height: 100px;
        background: #ffffff;
        padding: 10px;
    }

    .card-before:before,
    .card-after:after {
        content: "";
        position: absolute;
        border-radius: 2px;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ecebeb;
        transition: transform 0.3s ease-in-out;
    }

    .card:before {
        transform: rotate(-2deg);
    }

    .card:after {
        transform: rotate(2deg);
    }

    .card-container .button-link-one {
        display: flex;
        justify-content: end;
        height: 31px;
    }

    .button-link-one .nav-link-one {
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        color: #000;
        text-transform: uppercase;
        position: relative;
        margin-top: 10px;
    }

    .nav-link-one:hover {
        color: #1c6bff;
        transition: all .3s;
    }


    /* Estilos para sección de oficina */
    .oficinas {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background: #f59323;
    }

    .oficinas .logo-oficina {
        display: flex;
        justify-content: center;
        margin-top: 35px;
    }

    .logo-oficina img {
        height: 50px;
    }

    .controller-info {
        display: flex;
        width: 100%;
        margin-top: 20px;
        box-sizing: border-box;
        gap: 15px;
        flex-direction: column;
        flex-wrap: wrap;
    }

    /* Estilamos oficinas centrales */
    .controller-info .oficinas-centrales {
        display: flex;
        flex-direction: column;
        margin-left: 20px;
    }

    .oficinas-centrales .title-oficina {
        font-size: 16px;
        text-transform: uppercase;
        color: #333333;
        font-weight: 700;
    }

    .oficinas-centrales .oficinas-text {
        font-size: 14px;
        line-height: 25px;
        font-weight: 500;
        max-width: 350px;
        color: #333333;
    }

    /* Apartado de redes sociales */
    .redes-sociales {
        display: flex;
        flex-direction: column;
        width: 300px;
        margin-top: 10px;
    }

    .redes-sociales .container-redes {
        display: flex;
        width: 100%;
        margin-left: 20px;
    }

    .container-redes .title-redes {
        font-size: 16px;
        text-transform: uppercase;
        color: #333333;
    }

    .middle {
        display: flex;
        flex-wrap: wrap;
        width: 270px;
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .btn {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #e4e4e4;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #000000;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 43px;
        font-size: 18px;
        transition: 0.2s linear;
    }

    .btn:hover i {
        transform: scale(1);
        color: #f1f1f1;
    }

    .btn::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #3b5998;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
    }


    .btn:nth-child(2)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        left: -110%;
        top: 90%;
    }

    .btn:nth-child(3)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #25D366;
        left: -110%;
        top: 90%;
    }

    .btn:hover::before {
        animation: aaa 0.7s 1;
        top: -10%;
        left: -10%;
    }

    @keyframes aaa {
        0% {
            left: -110%;
            top: 90%;
        }

        50% {
            left: 10%;
            top: -30%;
        }

        100% {
            top: -10%;
            left: -10%;
        }
    }

    /* Sección de descargas */
    .descargas{
        display: flex;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 10px;
        margin-top: 15px;
    }

    .buttons-downloads{
        display: flex;
        width: 100%;
        height: 100%;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .buttons-downloads .button-anydesk{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 30px;
        padding: 7px 10px;
        background: #f00404;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 11px;
        color: #fff;
    }

    .button-anydesk:active{
        transform: scale(0.91);
    }

    .buttons-downloads .button-teamviewer{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 30px;
        background: #0527e2;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 11px;
        color: #fff;
    }

    .button-teamviewer:active{
        transform: scale(0.91);
    }


    /* Estilos para menú */
    .menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }

    .menu-title {
        display: flex;
        width: 100%;
    }

    .menu-title .title-me {
        margin-left: 20px;
        color: #333333;
    }


    .menu-items {
        display: flex;
        width: 50%;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .menu-link {
        line-height: 40px;
        text-decoration: none;
        color: #333333;
        margin-left: 20px;
    }

    .menu-link:hover {
        color: #ffffff;
    }

    .chev-right {
        margin-right: 10px;
        color: #000000;
        font-size: 12px;
    }


    /* Estilos para el footer*/
    .footer-ext {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: #000000;
        height: 40px;
    }

    .footer-ext .copyright {
        width: 100%;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        text-align: end;
        margin-right: 20px;
    }

    .footer-ext .footer-info {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .banner {
        display: flex;
        width: 100%;
        height: 80vh;
        overflow: hidden;
        background-color: #ffffff;
        position: relative;
    }

    #hero {
        display: flex;
        width: 100%;
        height: 80vh;
        position: absolute;
        background-image: linear-gradient(0deg,
                rgba(15, 15, 15, 0.0),
                rgba(0, 0, 0, 0.0)), url("../img/backgrounds/background-cibersecurity.avif");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .titulo-banner {
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .text-in {
        max-width: 650px;
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        color: #4b4a4a;
    }

    .security-text {
        font-size: 17px;
        margin-top: 10px;
        color: #4b4646;
        font-weight: 600;
        text-align: center;
    }

    /* Estilos para container camaras */
    .container-telefonia {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 10px;
        background: #fafafa;
        padding-bottom: 40px;
    }

    .contenedor-info{
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .contenedor-info .titulo-info{
        font-size: 44px;
        margin-top: 10px;
        color: #535353;
    }

    .contenedor-info .texto-info{
        max-width: 1200px;
        font-size: 28px;
        text-align: center;
        font-weight: 300;
    }

    /* Soluciones dccomunicaciones */
    .global-soluciones {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    .title-soluciones {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        font-size: 20px;
        text-transform: uppercase;
    }

    .linea-title {
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }

    .linea-title:before {
        border-top: 2px solid #ff8800;
        content: "";
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }

    /* Estilos de carda */
    .telefonia-solutions {
        display: flex;
        width: 100%;
        max-width: 1200px;
        justify-content: space-around;
        margin-top: 40px;
        gap: 30px 40px;
        flex-wrap: wrap;
    }

    .card-container {
        position: relative;
        width: 280px;
        height: 380px;
    }

    .card {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease-in-out;
    }

    .card-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        transform-origin: center;
        z-index: 1;
        cursor: pointer;
        padding: 5px;
        text-decoration: none;
        color: #000;
    }

    .card-main img {
        height: 200px;
        margin-bottom: 0px;
    }

    .card-main .title-card{
        font-size: 12px;
        text-align: center;
        height: 30px;
        text-transform: uppercase;
        padding: 0px 10px;
    }

    .card-main .text-card{
        font-size: 12px;
        text-align: justify;
        height: 100px;
        background: #ffffff;
        padding: 10px;
    }

    .card-before:before,
    .card-after:after {
        content: "";
        position: absolute;
        border-radius: 2px;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ecebeb;
        transition: transform 0.3s ease-in-out;
    }

    .card:before {
        transform: rotate(-2deg);
    }

    .card:after {
        transform: rotate(2deg);
    }

    .card-container .button-link-one {
        display: flex;
        justify-content: end;
        height: 28px;
    }

    .button-link-one .nav-link-one {
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        color: #000;
        text-transform: uppercase;
        position: relative;
        margin-top: 10px;
    }

    .nav-link-one:hover {
        color: #1c6bff;
        transition: all .5s;
    }

    .nav-link-one::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: #1c6bff;
        transition: width .5s;
    }

    .nav-link-one:hover::before {
        width: 100%;
    }

/*    .card-container:hover .card:before {
        transform: rotate(-5deg);
    }

    .card-container:hover .card:after {
        transform: rotate(5deg);
    }  */

    /* Estilos para sección de oficina */
    .oficinas {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 250px;
        background: #fa840e;
    }

    .oficinas .logo-oficina {
        display: flex;
        justify-content: center;
        margin-top: 35px;
    }

    .logo-oficina img {
        margin-left: 40px;
        height: 65px;
    }

    .controller-info {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
        box-sizing: border-box;
        gap: 10px;
    }

    /* Estilamos oficinas centrales */
    .controller-info .oficinas-centrales {
        display: flex;
        flex-direction: column;
        width: 50%;
        margin-left: 30px;
    }

    .oficinas-centrales .title-oficina {
        font-size: 18px;
        text-transform: uppercase;
        color: #080808;
        margin-bottom: 5px;
    }

    .oficinas-centrales .oficinas-text {
        font-size: 14px;
        line-height: 25px;
        font-weight: 500;
        max-width: 350px;
        color: #333333;
    }

    /* Estilamos direccion fiscal */
    .controller-info .direccion-fiscal {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .direccion-fiscal .title-direccion {
        font-size: 18px;
        text-transform: uppercase;
        color: #000000;
    }

    .direccion-fiscal .direccion-text {
        font-size: 17px;
        line-height: 25px;
        font-weight: 600;
        max-width: 360px;
    }

    /* Apartado de redes sociales */
    .redes-sociales {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .redes-sociales .container-redes {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 0px;
    }

    .container-redes .title-redes {
        font-size: 18px;
        text-transform: uppercase;
        color: #000000;
    }

    .middle {
        display: flex;
        flex-wrap: wrap;
        transform: translateY(-50%);
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-top: 40px;
    }

    .btn {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #f1f1f1;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 5px 15px -5px #00000070;
        color: #000000;
        overflow: hidden;
        position: relative;
    }

    .btn i {
        line-height: 43px;
        font-size: 18px;
        transition: 0.2s linear;
    }

    .btn:hover i {
        transform: scale(1);
        color: #f1f1f1;
    }

    .btn::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #3b5998;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
    }


    .btn:nth-child(2)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        left: -110%;
        top: 90%;
    }

    .btn:nth-child(3)::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #25D366;
        left: -110%;
        top: 90%;
    }
    
    .btn:hover::before {
        animation: aaa 0.7s 1;
        top: -10%;
        left: -10%;
    }

    @keyframes aaa {
        0% {
            left: -110%;
            top: 90%;
        }

        50% {
            left: 10%;
            top: -30%;
        }

        100% {
            top: -10%;
            left: -10%;
        }
    }

    .descargas{
        display: flex;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 10px;
    }

    .buttons-downloads{
        display: flex;
        width: 100%;
        height: 100%;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .buttons-downloads .button-anydesk{
        padding: 10px 15px;
        background: #da0707;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 13px;
        color: #fff;
    }

    .button-anydesk:hover{
        background: #fc0707;
    }

    .button-anydesk:active{
        transform: scale(0.91);
    }

    .buttons-downloads .button-teamviewer{
        padding: 10px 15px;
        background: #0652c4;
        border-radius: 3px;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
        text-decoration: none;
        font-size: 13px;
        color: #fff;
    }

    .button-teamviewer:hover{
        background: #1132f1;
    }

    .button-teamviewer:active{
        transform: scale(0.91);
    }

    /* Estilos para menú */
    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
    }

    .menu-title .title-me {
        font-size: 17px;
        color: #000000;
        text-transform: uppercase;
    }

    .menu-items {
        display: flex;
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 10px;
        align-content: center;
    }

    .menu-link {
        line-height: 40px;
        text-decoration: none;
        color: #333333;
        font-size: 14px;
    }

    .menu-link:hover {
        color: #050505;
    }

    .chev-right {
        margin-right: 10px;
        color: #080808;
        font-size: 12px;
    }

    /* Estilos para el footer*/
    .footer-ext {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: #000000;
        height: 50px;
    }

    .footer-ext .copyright {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        text-align: left;
        margin-left: 20px;
    }

    .footer-ext .footer-info {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        margin-right: 20px;
    }
}