*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
}

.box {
    width: 100%;
    height: 90px;
    background: #000000;
    display: inline-block;
    position: fixed;
    z-index: 100;
}

.menu {
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img img {
    width: 11%;
    height: 40px;
    position: absolute;
    top: 25px;
    left: 15%;
    right: 0;
}

.menu .navbar ul li {
    position: static;
    float: left;
}

.menu .navbar ul li a{
    font-size: 20px;
    font-family: Montserrat;
    font-weight: 500;
    padding: 30px;
    color: #ffffff;
    display: block;
}

.menu .navbar ul li:hover{
    border-radius: 5px;
    margin-top: 10px;
    height: 70px;
    background-color: #f56349;
    animation: scale 0.7s ease-in infinite;
}

@keyframes scale {
    0% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
    100% {
    transform: scale(1);
    }
}

#menu {
    display: none;
}

.menu-icono {
    width: 55px;
}

.menu label {
    cursor: pointer;
    display: none;
}

/*///////FOOTER///////*/

.footer {
    padding: 100px 0 50px 0;
    background-color: #f56349;
    margin-top: auto;
}

.footer-link {
    display: flex;
}

.link-reg {
    width: 500px;
}

.link-reg h3 {
    font-size: 25px;
    font-family: Montserrat;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 20px 0;
}

.btn-r {
    display: block;
    text-align: center;
    padding: 11px 35px;
    margin: 30px 0;
    font-size: 25px;
    letter-spacing: 8px;
    font-family: Montserrat;
    font-style: Italic;
    font-weight: 200;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 20px;
    border: 2px solid #000000;
    background: linear-gradient(
        90deg,
        rgb(0, 0, 0) 30%,
        rgba(130, 125, 125, 0.337) 100%
    );
}

link {
    width: 100%;
}

.link h3 {
    font-size: 18px;
    font-family: Montserrat;
    font-style: bold;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin: 20px;
}

.link a {
    font-size: 18px;
    font-family: Montserrat;
    font-weight: 400;
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: 20px;
    margin: 20px;
}

.link a:hover {
    color: rgb(0, 255, 255) ;
}

.social {
    display: flex;
    text-align: center;
}

.social a {
    display: inline-block;
    min-height: 50px;
    min-width: 70px;
    background-color: #ffa595a1;
    margin: 10px 0;
    margin-right: 30px;
    line-height: 70px;
    border-radius: 40%;
    color: #ffffff;
    font-size: 25px;
}

.face:hover {
    background-color: #53528f              ;
}

.t:hover {
    background-color: #3972ce;
}

.w:hover {
    background-color: #2dfc7f;
}

.tik:hover {
    background-color: #242424;
}

.redes-icons {
    display: flex;
    background-color: #00000000;
    padding-left: 35%;
}

.footer-content hr {
    border: 1.5px solid rgb(255, 255, 255);
    width: 100%;
}

/*/////////PRODUCTOS///////////*/

.header__productos,
.header__servicios {
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url(images/img12.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 20vh;
    padding: 170px 100px;
    padding-bottom: 20px;
}

.header__productos-txt,
.header__servicios-txt {
    padding: 10px 0;
}

.header__productos-txt h2,
.header__servicios-txt h2 {
    font-size: 70px;
    font-family: Montserrat;
    font-weight: 800;
    text-align: right;
    line-height: 0.5;
    color: #ffffffd8;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.productos {
    padding: 10px 0;
    background-color: #e2e2e2;
}

.productos-content {
    display: flex;
    align-items: center;
}

.productos-txt {
    flex-basis: 100%;
    text-align: center;
}

.productos-txt h2 {
    font-size: 50px;
    font-family: Montserrat;
    font-style: ExtraBoldItalic ;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 1px;
}

.productos p {
    color: #000000;
    font-size: 20px;
    font-family: Montserrat;
    font-weight: 400;
    padding: 0 40px;
}

/*MENU NAVEGACION SCROLLABE*/

.scroll-menu-container {
    font-family: sans-serif;
    background-color: transparent;
    max-width: 950px;
    margin: 100px auto;
    margin-bottom: 50px;
    border-radius: 50px;
    border: 2px solid #000;
    overflow: hidden;
    position: relative;
}

.scroll-menu-container svg {
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 50%;
    pointer-events: auto;
}       

.scroll-menu-container ul{
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.scroll-menu-container ul.dragging {
    scroll-behavior: auto;
}

.scroll-menu-container ul.dragging a {
    pointer-events: none;
}

.scroll-menu-container ul::-webkit-scrollbar {
    display: none;
}

.scroll-menu-container a{
    color: #fff;
    text-decoration: none;
    background-color: #000000;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 20px;
    user-select: none;
    white-space: nowrap;
}

.scroll-menu-container a.active {
    background-color: #f56349;
    color: #ffffff;
}

.scroll-menu-container .right-arrow,
.scroll-menu-container .left-arrow {
    position: absolute;
    height: 100%;
    width: 100px;
    top: 0;
    display: none;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
}

.scroll-menu-container .right-arrow.active,
.scroll-menu-container .left-arrow.active {
    display: none;

}

.scroll-menu-container .right-arrow {
    right: 0;
    background: linear-gradient(to left, #000e 10% , transparent);
    justify-content: flex-end;
    display: none;
}

.scroll-menu-container .left-arrow {
    background: linear-gradient(to right, #000e 10% , transparent);
}

.scroll-menu-container svg:hover {
    background-color: #f56349;
}

.tab-sw-container {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    background-color: transparent;
    max-width: 500px;
    margin: 0 auto;
    padding: 8px 20px 8px 30px;
    border-radius: 50px;
    background-color: #000000d4;
    overflow: hidden;
    position: relative;
}

.tab-sw {
    text-decoration: none;
    background-color: transparent;
    border-radius: 50px;
    border: 2px solid #ffffff;
    padding: 5px 24px;
    display: inline-block;
    user-select: none;
    white-space: nowrap;
}

.tab-sw a{
    color: #ffffff;
}

.tab-sw:hover {
    background-color: #f56349;
}

/*PRODUCTOS INTERACCION*/

.contenedor {
    position: relative;
    background-color: #ffffff;
}

/* funcionamiento básico del sistema de pestañas */
.tab-content {
    display: none;
}

/* ESTILO PRODUCTOS 1 */
.productos-content,
.products__2-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.products,
.products__2 {
    width: 20%;
    height: 370px;
    background-color: #b0e5ff36;
    padding: 12px 15px;
    margin: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.36);
}

.products h4,
.products__2 h4 {
    font-size: 18px;
    font-family: Montserrat;
    font-weight: 800;
    color: #fc000089;
    text-transform: uppercase;
} 

.products p,
.products__2 p {
    color: #000000;
    font-size: 15px;
    margin: 10px 0;
    font-family: Montserrat;
    font-weight: 400;
}

.products span,
.products__2 span {
    color: #908a8af9;
    font-size: 15px;
    font-family: Montserrat;
    font-style: italic;
    font-weight: 400;
}

.products .prod,
.products__2 .prod {
    width: 95%;
    height: 160px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.btn-productos,
.btn-productos2 {
    display: block;
    text-align: center;
    font-size: 14px;
    font-family: Montserrat;
    font-style: Italic;
    font-weight: 300;
    color: #ffffff;
    padding: 8px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 15px;
    background: linear-gradient(
        90deg,
        #f56349 30%,
        rgb(251, 157, 79) 100%
    );
}

.tab:target .tab-content, .tab:last-of-type .tab-content {
    display: block;
}

.tab:target ~ .tab:last-of-type .tab-content {
    display: none;
}

/* parámetros para configurar las pestañas */
:root {
    --tabs-text-color: rgb(0, 0, 0);
    --tabs-dark-color: #f56349 ;
    --tabs-lite-color: #f56349;
    --tabs-width: 155px;
    --tabs-height: 60px;
}

  /* esto es para posicionar las pestañas correctamente */
.tab-container {
    position: relative;
    padding-top: 0; /* en esta zona colocaremos las pestañas */
} 

#tab1>a { --tabs-position: 0; }
#tab2>a { --tabs-position: 1; }
#tab3>a { --tabs-position: 2; }
#tab4>a { --tabs-position: 3; }
#tab5>a { --tabs-position: 4; }
#tab6>a { --tabs-position: 5; }
#tab7>a { --tabs-position: 6; }
#tab8>a { --tabs-position: 7; }
#tab9>a { --tabs-position: 8; }
#tab10>a { --tabs-position: 9; }

.tab>a {
    text-align: center;
    position: absolute;
    width: 10%;
    height: calc(var(--tabs-height) + var(--tabs-border-size)); 
    top: 20px;
    left: calc(var(--tabs-width) * var(--tabs-position)); /* posición de cada pestaña */
}

  /* más aspecto */
.tabs { 
    padding: 10px 110px;
    color: var(--tabs-text-color);
}

.tab-content {
    /*color transparente background: linear-gradient(#00000069,transparent);*/
    border-radius: 0 0 10px 10px;
    position: relative;
}

.tab>a {
    background-color: var(--tabs-dark-color); 
    padding: 10px 0;
    border: var(--tabs-border-size) solid var(--tabs-border-color);
    border-radius: 10px;
    align-content: center;
    color: #e2e2e2;
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.tab:target>a, .tab:last-of-type>a {
    background-color: var(--tabs-lite-color); 
}

.tab:target ~ .tab:last-of-type>a {
    background-color: var(--tabs-dark-color); 
}

#menu-desp {
    display: none;
}

/*//////////////SERVICIOS//////////////*/

/*MENU NAVEGACION SCROLLABE*/

.scroll-menuS-container {
    font-family: sans-serif;
    background-color: transparent;
    max-width: 400px;
    margin: 30px auto;
    border-radius: 50px;
    border: 1px solid #000;
    overflow: hidden;
    position: relative;
}

.scroll-menuS-container ul{
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.scroll-menuS-container ul.dragging {
    scroll-behavior: auto;
}

.scroll-menuS-container ul.dragging a {
    pointer-events: none;
}

.scroll-menuS-container ul::-webkit-scrollbar {
    display: none;
}

.scroll-menuS-container a{
    color: #fff;
    text-decoration: none;
    background-color: #000000d2;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 20px;
    user-select: none;
    white-space: nowrap;
}

.scroll-menuS-container a.active {
    background-color: #f56349;
    color: #ffffff;
}

.contenedor {
    position: relative;
    background-color: #ffffff;
}

/* funcionamiento básico del sistema de pestañas */
.tab-s-content {
    display: none;
}

.tab-s:target .tab-s-content, .tab-s:last-of-type .tab-s-content {
    display: block;
}

.tab-s:target ~ .tab-s:last-of-type .tab-s-content {
    display: none;
}

/* parámetros para configurar las pestañas */
:root {
    --tab-ss-text-color: rgb(0, 0, 0);
    --tab-ss-dark-color: #f56349 ;
    --tab-ss-lite-color: #f56349;
    --tab-ss-width: 155px;
    --tab-ss-height: 60px;
}

  /* esto es para posicionar las pestañas correctamente */
.tab-s-container {
    position: relative;
    padding-top: 0; /* en esta zona colocaremos las pestañas */
} 

#tab-s1>a { --tab-ss-position: 0; }
#tab-s2>a { --tab-ss-position: 1; }
#tab-s3>a { --tab-ss-position: 2; }
#tab-s4>a { --tab-ss-position: 3; }
#tab-s5>a { --tab-ss-position: 4; }
#tab-s6>a { --tab-ss-position: 5; }
#tab-s7>a { --tab-ss-position: 6; }
#tab-s8>a { --tab-ss-position: 7; }
#tab-s9>a { --tab-ss-position: 8; }
#tab-s10>a { --tab-ss-position: 9; }

.tab-s>a {
    text-align: center;
    position: absolute;
    width: 10%;
    height: calc(var(--tab-ss-height) + var(--tab-ss-border-size)); 
    top: 20px;
    left: calc(var(--tab-ss-width) * var(--tab-ss-position)); /* posición de cada pestaña */
}

  /* más aspecto */
.tab-ss { 
    padding: 10px 110px;
    color: var(--tab-ss-text-color);
}

.tab-s-content {
    /*color transparente background: linear-gradient(#00000069,transparent);*/
    border-radius: 0 0 10px 10px;
    position: relative;
}

.tab-s>a {
    background-color: var(--tab-ss-dark-color); 
    padding: 10px 0;
    border: var(--tab-ss-border-size) solid var(--tab-ss-border-color);
    border-radius: 10px;
    align-content: center;
    color: #e2e2e2;
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.tab-s:target>a, .tab-s:last-of-type>a {
    background-color: var(--tab-ss-lite-color); 
}

.tab-s:target ~ .tab-s:last-of-type>a {
    background-color: var(--tab-ss-dark-color); 
}

.dise {
    padding: 30px 0;
    background-color: #eee1e1;
}

.dise-content {
    display: flex;
    align-items: left;
}

.dise-txt {
    flex-basis: 120%;
    text-align: justify;
    margin: 20px 50px;
    font-size: 17px;
}

.disee-txt h2 {
    font-size: 40px;
    font-family: Montserrat;
    font-style: ExtraBoldItalic ;
    font-weight: 800;
    color: #FF7838;
    margin: 20px 0;
    line-height: 1;
}

.dise-txt h2 {
    font-size: 40px;
    font-family: Montserrat;
    font-style: ExtraBoldItalic ;
    font-weight: 800;
    color: #FF7838;
    margin: 20px 0;
    line-height: 1;
}

.dise-txt p {
    color: #000000;
    font-size: 18px;
    margin: 10px 0;
    font-family: Montserrat;
    font-weight: 400;
}


.dise-txt ul li {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    text-align: left;
    list-style: inside;
}

.disee-txt {
    font-family: Montserrat;
    font-weight: 200;
    flex-basis: 120%;
    text-align: justify;
    margin: 20px 50px;
    font-size: 17px;
}


.disee-txt p {
    color: #000000;
    font-size: 18px;
    margin: 10px 0;
    font-family: Montserrat;
    font-weight: 400;
}


.disee-txt ul li {
    font-size: 17px;
    color: #000000;
    text-align: left;
    list-style: inside;
}

.btn-1 {
    display: inline-block;
    padding: 10px 35px;
    font-size: 20px;
    font-family: Montserrat;
    font-style: Italic;
    font-weight: 200;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 15px;
    background: linear-gradient(
        90deg,
        #f56349 30%,
        rgb(251, 157, 79) 100%
    );
}

.dise-img {
    padding: 100px 0;
    flex-basis: 100%;
}

/*///CONTACTO////*/

.contact__inicio {
    background: linear-gradient(
        rgba(29,30,35,0.8),
        rgba(54, 55, 59, 0.369)
    ),
    url(images/img3.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: block;
    min-height: 38vh;
    padding: 100px 0;
    padding-bottom: 0;
}

.news {
    background: linear-gradient(
        rgba(29,30,35,0.8),
        rgba(54, 55, 59, 0.369)
    ),
    url(images/img4.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: block;
    min-height: 38vh;
    padding: 100px 0;
    padding-bottom: 0;
}

.contact__inicio-txt,
.news-txt {
    text-align: left;
    padding: 60px 0;
    padding-bottom: 0;
}

.contact__inicio-txt h2,
.news-txt h2 {
    font-size: 70px;
    line-height: 0.5;
    color: #ffffff;
    font-family: Montserrat;
    font-style: ExtraBoldItalic;
    font-weight: 800;
    text-align: left;
    letter-spacing: 5px;
    margin-bottom: 0;
}

.Contact {
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
    box-shadow: 0px 26px 87px -11px rgba(0,0,0,0.11);
    position: relative;
}

.datacrm_webforms {
    position: relative;
    display: block;
    width: 55%;
    margin: 0 auto;
}

.form-txt h2 {
    font-family: Montserrat;
    font-style: ExtraBoldItalic ;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    color: #f56349;
    margin: 40px 0;
}

.mapa {
    max-width: 1200px;
    padding: 50px 20px;
    margin: 0 auto;
    box-shadow: 0px 26px 87px -11px rgba(0,0,0,0.11);
    display: flex;
    flex-wrap: wrap;
    align-items: center;    
}

.info {
    margin: 0 auto;
}

.inline {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.inline p {
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 400;
    color: #000000;
    padding: 10px;
}

.call,
.call-o {
    border-radius: 10px;
    background-color: #f56349;
    color: #fff;
    width: 50px;
    height: 50px;
    padding: 10px;
}


/*///SOPHOS////*/
.sophos {
    width: 100%;
    height: 800px;
    margin: 100px 0;
}

.forti {
    position: relative;
    width: 50%;
    margin: -135px 110px;
    margin-right: 0;
}

/*.forti {
    position: relative;
    background-color: #000000;
    width: 100%;
    margin: 15px 0;
}*/

@media (max-width:900px) {

    .forti {
        position: absolute;
        width: 22%;
        margin: 0;
        margin-left: 68px;
        margin-top: -115px;
    }

    #scroll {
        display: flex;
    }

    #menu-desp {
        display: none;
    }
    
    .menu {
        padding: 20px;
    }

    .logo-img img {
        left: 10px;
        width: 35%;
        height: 40px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1f1d1db9;
        display: none;
    }
    
    .navbar ul li {
        width: 100%;
    }

    .menu .navbar ul li a{
        font-size: 20px;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        padding: 25px;
        color: #ffffff;
        display: block;
    }    

    .menu .navbar ul li:hover{
        padding-left: 20px;
        margin: 0;
        margin-left: 20px;
        width: 90%;
        height: 70px;
        background-color: #f56349;
        animation: scale 0.9s infinite;
        border: 2px solid#ffffff;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    /*//////////PRODUCTOS/////////////*/

    .header__productos, 
    .header__servicios {
        padding: 140px 10px;
        padding-bottom: 20px;
    }
    
    .header__productos-txt,
    .header__servicios-txt {
        padding: 0;
        text-align: center;
    }
    
    .header__productos-txt h2,
    .header__servicios-txt h2 {
        font-size: 50px;
        font-family: Montserrat;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
    }
    
    .productos {
        padding:0;
        padding-bottom: 10px;
        background-color: #e2e2e2;
    }

    .productos-txt {
        text-align: center;
        padding: 0;
    }
    
    .productos-txt h2 {
        font-weight: 500;
        font-size: 25px;
        margin: 15px 30px;
        line-height: 1.25;
        letter-spacing: 0;
        text-align: center;
    }
    
    .productos p {
        font-size: 13px;
        font-family: Montserrat;
        font-weight: 400;
        padding: 0 20px;
    }
    
    .scroll-menu-container {
        margin: 50px auto;
        border-radius: 0;
        border: 1.5px solid #000;
        border-left: none;
        border-right: none;
    }

    .tab-sw-container {
        font-size: 12px;
        margin: auto;
        padding: 10px 103px;
        border-radius: 0;
    }
    
    .tab-sw {
        padding: 5px;
    }

    .contenedor {
        position: relative;
        display: flex;
    }

    /*//////////ESTILO PRODUCTOS///////////////*/

    .products,
    .products__2 {
        width: 25vh;
        height: auto;
        padding: 10px;
        margin: 20px 5px;
    }

    .products .prod,
    .products__2 .prod {
        width: 100%;
        height: 18vh;
        border-radius: 8px;
        margin-bottom: 5px;
        padding-left: 0;
    }
    
    .products h4,
    .products__2 h4 {
        font-size: 17px;
    }
    
    .products p,
    .products__2 p {
        font-size: 14px;
        margin: 0;
        font-weight: 400;
    }

    .products span,
    .products__2 span {
        font-size: 12px;
    }
    
    .btn-productos,
    .btn-productos2 {
        display: flex;
        padding: 6px 15px;
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 1px;
        margin: 5px;
    }

    .products__2-content {
        margin: 0 35px;
    }
    
    .tabs { 
        padding: 0;
    }

    .scroll-menu-container .right-arrow.active,
    .scroll-menu-container .left-arrow.active {
        display: flex;
    }

    /*//////////SERVICIOS/////////////*/

    .servred {
        display: none;
    }

    .dise-content {
        padding: 0;
        flex-direction: column;
    }

    .tab-ss { 
        padding: 10px 10px;
    }
    
    .dise-txt {
        margin: 10px 10px;
        font-size: 17px;
    }
    
    .disee-txt h2 {
        font-size: 35px;
        text-align: center;
    }
    
    .dise-txt h2 {
        font-size: 35px;
        text-align: center;
    }
    
    .dise-txt p,
    .disee-txt p {
        font-size: 15px;
        margin: 10px 20px;
    }
    
    .dise-txt ul li,
    .disee-txt ul li {
        font-size: 15px;
        margin: 10px 20px;
    }
    
    .disee-txt {
        margin: 10px 10px;
        font-size: 17px;
    }

    .btn-1 {
        display: inline-block;
        padding: 10px 35px;
        font-size: 15px;
        margin: 0 50px;
        text-align: center;
    }
    
    .dise-img {
        padding: 30px 30px;
        flex-basis: 50%;
    }

    .scroll-menuS-container ul {
        padding: 10px auto;
        margin: 0 auto;
    }

    .scroll-menuS-container a{
        padding: 5px auto;
        display: inline-block;
        border-radius: 50px;
        text-align: center;
    }

    .scroll-menuS-container {
        margin: 20px auto;
    }

    /*//////////FOOTER/////////////*/

    .footer {
        padding:30px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-link {
        flex-direction: column-reverse;
        display: inline;
    }

    .link-reg {
        width: 100%;
    }

    .link-reg h3 {
        font-size: 20px;
        margin: 10px 0;
    }
    
    .btn-r {
        display: block;
        text-align: center;
        padding: 11px 20px;
        margin: 10px 0;
        font-size: 20px;
    }

    .redes-icons {
        padding-left: 0;
    }

    .social a {
        margin: 10px 5px;
        text-align: center;
        line-height: 70px;
        font-size: 25px;
    } 

    /*//////////CONTACTO/////////////*/

    .contact__inicio {
        flex-direction: column;
        min-height: 30vh;
        padding: 50px 0;
        padding-bottom: 0;
    }

    .contact__inicio-txt h2 {
        font-size: 50px;
        text-align: center;
        letter-spacing: 5px;
        padding-top: 30px;
    }

    .Contact {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .datacrm_webforms {
        width: 100%;
        height: 100%;
        margin: auto;
    }
    
    .form-txt h2 {
        font-size: 30px;
        text-align: center;
        margin: 20px 0;
    }

    .mapa {
        max-width: 1200px;
        padding: 50px 20px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;    
    }
    
    .info {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .inline {
        margin: 20px 0;
        display: flex;
        flex-flow: nowrap;
    }
    
    .inline p {
        font-size: 12px;
        padding: 0 10px;
    }

    .call-o {
        width: 65px;
        height: 55px;
        padding: 10px;
    }
    
    
}