@import url(fontawesome.css);
@import url("<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300&family=Exo:wght@100;200;300;400;500&family=IBM+Plex+Sans+Condensed:wght@400&family=Viga&display=swap" rel="stylesheet">");

body {
    font-family: 'Exo', sans-serif;
    color:#fff;
    background:#000;
}

/* Basic */

a {
	color: #3CF;
    text-decoration: none;
}

a:hover {
	color: #3dd0d8;
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p {
    font-size: 18px;
    line-height: 32px;
}

h1 {
    font-size: 50px;
    font-family: 'vudo','Viga', sans-serif;
    letter-spacing:5px;
}
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 110%;
    font-weight: 700;
}

h4{
    font-size: 20px;
}

.font h3 {
    font-family: 'alien', sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #00a88e;
    /*padding-bottom: 40px;*/
}

.margin.top-40px {
    margin-top: 40px;
}

 /*** boton animado ***/
.glow-on-hover {
    width: 220px;
    height: 44px;
    border: none;
    outline: none;
    color: #fff;
    background-image: linear-gradient(45deg, #00afc1, #0d8cd8);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #4800f5, #9500ff, #0043ff, #00b8ff, #44d8fb, #5bb6fd, #b24ef1, #009dff, #a600ff);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #00afc1, #0d8cd8);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/*** Fin de boton animado ***/

/*** boton demo***/
.bn32_demo {
  border: 5em;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  -webkit-transform: translate(0);
  transform: translate(0);
  background-image: linear-gradient(45deg, #00afc1, #0d8cd8);
  padding: 0.4em 1.5em;
  border-radius: 6px;
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.438);
  -webkit-transition: box-shadow 0.25s;
  transition: box-shadow 0.25s;
  color: white;
  margin-bottom:35px;
}


.bn32_demo .text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
}

.bn32_demo:after {
  content: "";
  border-radius: 6px;
  position: absolute;
  margin: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.bn32_demo:hover {
  background-image: linear-gradient(-45deg, #0d8cd8, #00afc1);
  box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
}

.bn32_demo:hover .text {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
}
/*** fin boton demo ***/

.justificado {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-box._600px {
    max-width: 600px;
    min-height: 64px;
}

.paragraph.large-strong {
    font-size: 20px;
    /*font-weight: 500;*/
}

.text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.vertical-holder {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tab-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 49.5%;
    margin-bottom: 10px;
    padding: 20px 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    background-color: transparent;
    box-shadow: inset 0 0 0 1px #3f4456;
    color: #fff;
}

/* Footer Style */
footer {
	background-image: url(../images/footer-bg.jpg);
	background: #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 20px 0px 00px 0px;
}
footer .footer-heading h2 {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}
footer p {
	color: #fff;
	font-size: 20px;
}
footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
footer ul li {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.5px;
}
footer ul li:last-child {
	/*margin-bottom: 40px;*/
}
footer ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	transition: all 0.3s;
}
footer ul li a:hover {
	color: #fff;
	opacity: 0.75;
}

footer .sub-footer {
	text-align: center;
	/*margin-top: 80px;*/
	border-top: 1px solid rgba(250,250,250,0.30);
	padding-top: 10px;
}

footer .sub-footer a {
	color: #FFF;
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}

/*** start code ***/

/** principal ***/
.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 60vh;
    max-width: 100%;
    max-height: 60vh;
    object-fit: cover;
    z-index: -1;
    width: 100%;
    background-size: cover;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}
/*** fin de principal ***/

/*** section 1 ***/

.section1 {
    /*background-image: url(../images/choosing-bg.jpg); */
    background-color: #0c1228;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:200px;
    padding-bottom:50px;
}

.section1 h4{
    font-size: 45px;
    line-height: 3.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/*** fin de section 1 ***/

/*** Section firewall **/
.section_firewall {
    /*background-image: url(../images/choosing-bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:50px;
    padding-bottom:50px;
}

.section_firewall.bgkcolor {
    background-color: #0c1228;
}

.section_firewall.imagen {
    overflow: hidden;
    background-image: url(../images/almacenamiento/ibm/ibm1.png);
    background-position: 100% 35%;
    background-size: 30vw;
    background-repeat: no-repeat;
}



.section_firewall img {
    display:block;
    margin:auto;
    padding-top:40px;
}


/** fin de section firewall **/


/*** section 2 ***/
.section2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
}

.section2 h4{
    font-size: 45px;
    line-height: 3.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

#formato_fondo1 {
    position: relative;
    width:100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom:100px;
    background:#000101;
}

#fondo1 {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    height:auto;
    width:auto;
    z-index: -100;

}


/*** section img **/



.section_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:150px;
    padding-bottom:40px;
}

.section_img.bgkcolor {
    background-color: #fff;
}

.section_img.imagen {
overflow: hidden;
    background-image: url(../images/almacenamiento/ibm/ibm_fondo.png);
    background-position: 100% 100%;
    background-size: 100vw;
    background-repeat: no-repeat;
}

.orange-line {
    background: #00afd8;
    padding: 2px;
}

.section_img img {
    width:820px;
}

.section_img h1 {
    color:#ff5d00;
}

.section_img p {
    color:#fff;
    font-weight: 600;
}

.section_img .texto {
    color: #fff;
    font-weight: 300;
}

.section_img .padding {
    padding-top:70px;
}

.section_img .padding2 {
    padding-top:40px;
}
/** fin section img **/


/*** section img2 **/
.section_img2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:40px;
    padding-bottom:40px;
}

.section_img2.bgkcolor {
    background-color: #fff;
}

.section_img2.imagen {
overflow: hidden;
    background-image: url(../images/almacenamiento/ibm/ibm1.png);
    background-position: 100% 35%;
    background-size: 25vw;
    background-repeat: no-repeat;
}


.octopus img {
    width: 60%;
    float:right;
}

.consola img {
    width: 50%;
}

.section_img2 h2 {
    color:#000101;
    margin-right:-150px;
}

.section_img2 p {
    color:#fff;
}

.section_img2 .texto p {
    color:#cbc8c8;
}

.section_img2 .padding {
    margin-top: -40px;
}

.section_img2 .paddingtext {
    margin-top: 40px;
}

.section_img2 .padding2 {
    padding-top:40px;
}

.section_img2 .col-md-6 {
    padding-right:0px!important;
}
/** fin section img2 **/

/** benefits section **/

.benefits {
     padding: 20px 0;
}

.benefits .titlepage {
     text-align: center;
}

.benefits .titlepage h1 {
    font-size: 100px;
    color: #03a9f4;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}

.benefits .titlepage p {
     color: #fff;
}

.benefits .titlepage h6 {
    margin-top: 0px;
    padding-bottom: 40px;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    }

.benefits .Services-box i {
     benefits: #fff;
     width: 100px;
     height: 100px;
     border-radius: 50px;
     display: inline-block;
     padding-top: 19px;
}

.benefits .benefits-box i:hover {
}

.benefits .benefits-box h3 {
     padding: 20px 0px 20px 0px;
     font-size: 20px;
     line-height: 25px;
     color: #fff;
     display: block;
     font-weight: 500;

}

.imagen-beneficios1 img {
     width: 100%;
     padding-bottom: 10px;
}

.imagen-beneficios3 img {
     width: 35%;
     padding-bottom: 10px;
}

.imagen-beneficios2 img {
     width: 20%;
     padding-bottom: 10px;
}

.benefits .benefits-box {
    text-align: center;
    background-image: linear-gradient(135deg,#17376b,#1d5490);
    background-color: #000101;
    border-radius: 10px;
    padding: 20px;
    transition: ease-in all 0.5s;
    margin-bottom: 30px;
    box-shadow: 0 0 0px 1px #00bcd4;
}

.read_more {
     font-size: 16px;
     background-color: #fff;
     color: #000;
     padding: 10px 0px;
     width: 100%;
     max-width: 190px;
     display: flex;
     justify-content: center;
     text-align: center;
     margin: 0 auto;
     margin-top: 20px;
}

.read_more:hover {
     background: #8308eb;
     color: #fff;
}

.text-popup {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text-popup-tooltip {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease;
    bottom: 10%;
    padding: 10px;
    border-radius: 2px;
    background: rgb(2, 2, 111);
    color: rgb(255, 255, 255);
    box-shadow: 0px 0px 12px rgba(2, 2, 111, 0.4);
  }

  .text-popup:hover + .text-popup-tooltip {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }

/** end benefits section **/


/** benefits2 section **/

.benefits2 {
     padding: 20px 0;
}

.benefits2 .titlepage {
     text-align: center;
}

.benefits2 .titlepage h1 {
    font-size: 100px;
    color: #03a9f4;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}

.benefits2 .titlepage p {
     color: #fff;
}

.benefits2 .titlepage h6 {
    margin-top: 0px;
    padding-bottom: 40px;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    }

.benefits2 .Services-box i {
     benefits: #fff;
     width: 100px;
     height: 100px;
     border-radius: 50px;
     display: inline-block;
     padding-top: 19px;
}

.benefits2 .benefits-box i:hover {
}

.benefits2 .benefits-box h3 {
     padding: 20px 0px 20px 0px;
     font-size: 20px;
     line-height: 25px;
     color: #fff;
     display: block;
     font-weight: 500;

}

.benefits2 .benefits-box {
    text-align: center;
    background-image: linear-gradient(135deg,#0c1228,#0c1228);
    background-color: #000101;
    border-radius: 10px;
    padding: 20px;
    transition: ease-in all 0.5s;
    margin-bottom: 30px;
    box-shadow: 0 0 0px 1px #00afd8;
}


/** end benefits2 section **/


/*** fin de section 2 ***/

/*** section 3 ***/

.section3 {
    background-image: -webkit-gradient(linear,left top,left bottom,from(#1d19a9),to(rgba(23,27,41,0)));
    background-image: linear-gradient(180deg,#1d19a9,rgba(23,27,41,0));
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom:100px;
}

.section3 h4{
    font-size: 45px;
    line-height: 3.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.section3 span{
    font-size: 75px;
}

#formato_fondo2 {
    position: relative;
    width:100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** fin de section 3 ***/


/*** section 4 ***/

.section4 {
    /*background-image: url(../images/choosing-bg.jpg); */

    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
}

.section4 h4{
    font-size: 45px;
    line-height: 3.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/*** fin de section 3 ***/

.imagen_principal {
 width: 550px;
 margin-top: 110px;
 margin-left: -140px;
}

.imagen_secundaria {
 width: 450px;
 margin-top: 110px;
}

.padding-titulo {
    padding-top:200px;
}

.dashboard {
    width: 600px;
}

.inspeccion_memoria {
    width: 550px;
}

.margen_fondo1{
    margin-top:-100px;
}

.solicita-cotizacion-section {
    background-image: -webkit-gradient(linear,left top,left bottom,from(#0b132f),to(rgba(23,27,41,0)));
    background-image: linear-gradient(0deg,#0b132f,rgba(23,27,41,0));
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:100px;
    padding-bottom: 100px;
}

.solicita-cotizacion-section h1 {
    padding-bottom: 50px;
}
/*** button ***/
.bn30-cotizador {
  border: 5em;
  cursor: pointer;
  outline: none;
  font-size: 20px;
  -webkit-transform: translate(0);
  transform: translate(0);
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
  padding: 0.7em 5.5em;
  margin-left: 0.5em;
  border-radius: 6px;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.438);
  -webkit-transition: box-shadow 0.25s;
  transition: box-shadow 0.25s;
  color: white;
}


.bn30-cotizador .text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
}

.bn30-cotizador:after {
  content: "";
  border-radius: 6px;
  position: absolute;
  margin: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: #0e0e10;
}

.bn30-cotizador:hover {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
  box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
}

.bn30-cotizador:hover .text {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
}



/*** button ***/
.bn31contacto {
  border: 5em;
  cursor: pointer;
  outline: none;
  font-size: 1.3rem;
  -webkit-transform: translate(0);
  transform: translate(0);
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
  margin-right: 30px;
  margin-bottom: 20px;
  padding: 0.4em 1.5em;
  margin-left: 0.5em;
  border-radius: 6px;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.438);
  -webkit-transition: box-shadow 0.25s;
  transition: box-shadow 0.25s;
  color: white;
}

.bn31contacto .p{
    font-size:1.1rem;
}

.bn31contacto .text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
}

.bn31contacto:after {
  content: "";
  border-radius: 6px;
  position: absolute;
  margin: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.bn31contacto:hover {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
  box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
}

.bn31contacto:hover .text {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
}


/*** popup ***/
form label {
    text-transform: uppercase;
    /* font-weight: 500; */
    /* letter-spacing: 3px; */
    font-size: 15px;
}
input[type=text], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}
input[type="submit"] {
	background-color: #413b3b;
	color: #fff;
	padding: 15px 50px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 3px;
}


.form-control {
    background-color: #e7e7e700!important;
    color: #fff!important;
}

select option{
  color: #fff;
  background: #0c1228!important;

}

/* Contact */

section.contact {
    /*background-image: url(../images/contact-bg.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: #172238;*/
    /*padding-bottom: 120px;*/
    padding-bottom: 0px;
   /*padding-top:60px;*/
   /*padding-top:120px;*/
}


section.contact form {
    /*background-color: rgb(12 18 40 / 72%);*/
    /*background-color: rgba(250,250,250,0.1);*/
    padding: 30px;
    width: 100%;
}


@media screen and (max-width: 767px) {
  section.contact form {
      margin-bottom: 30px;
  }
}

section.contact form input {
    width: 100%;
    /*height: 40px;*/
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

section.contact form textarea {
    width: 100%;
    height: 100px;
    max-height: 100px;
    min-height: 100px;
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

section.contact form input:focus,
section.contact form textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: rgba(250,250,250,0.1);
}

section.contact form::placeholder { color: #fff }
section.contact form input::placeholder { color: #fff; }
section.contact form input::placeholder { color: #fff; }

section.contact form::placeholder { color: #fff }
section.contact form textarea::placeholder { color: #fff; }
section.contact form textarea::placeholder { color: #fff; }

section.contact form button {
    background-color: #3dd0d8;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 17px;
    padding-top: 17px;
    font-weight: 700;
    /*padding: 12px 20px;*/
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
}

.padding-contacto{
    padding-bottom:50px;
}

.zf-templateWidth {
    width: auto!important;
}

.zf-tempFrmWrapper .zf-labelName {
    font-size: 17px!important;
}

.zf-topAlign .zf-tempFrmWrapper .zf-labelName {
    padding-bottom: 0px!important;
}
.zf-form-sBox {
    height: 30px!important;
}

.zf-form-sBox {
    font-size: 16px;
}

.zf-large .zf-tempContDiv .zf-form-sBox {
    background: #fff0!important;
    color:#fff;
}

.zf-tempFrmWrapper {
    padding: 5px 5px!important;
}

.recaptcha {
    padding-top: 17px;
    display: flex;
    justify-content: center;
}

/**** fin pop up ****/

.ft-modal {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
        z-index: 9999;
        overflow: auto;
	position: fixed;
        visibility: hidden;
	margin-top: -250px;
	background: rgba(0,0,0,.8);

	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
}

.ft-modal:target {
	opacity: 1;
	margin-top: 0px;
	visibility: visible;
}

.ft-modal-content {
	width: 100%;
    padding: 25px;
	background-image: url(/assets/images/borrar1.jpg);
	max-width: 800px;
    margin: 70px auto;
	position: relative;
	border-radius: 8px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}


.ft-modal-close {
	top: 9px;
	right: 12px;
	float: right;
	position: absolute;
}
/*** fin de popup***/

@media screen and (max-width: 1642px) {
  .imagen_principal img {
      width: 100%;
  }
  .features-section {
    margin-top: -225px;
    }
}

@media screen and (max-width: 1600px) {
    .margen_fondo1{
    margin-top:0px;
    }
}

@media screen and (max-width: 1440px) {
    .imagen_principal {
    width: 450px;
    margin-top: 135px;
    }
    .margen_fondo1{
    margin-top:0px;
    }
    .dashboard {
    width: 500px;
    }
    .inspeccion_memoria {
    width: 500px;
    }
    /*.section_img2 p{
        margin-right: -200px;
    }
    .section_img2 .texto p {
    margin-right: -200px;
    }*/
}

@media screen and (max-width: 1199px) {
    .imagen_principal img {
      width: 100%;
  }
  .features-section {
    margin-top: -225px;
    }

  .bn30 {
    font-size: 1rem;
   }
}

@media screen and (max-height: 800px){
.imagen_principal img {
    padding-top:60px;
    }
}

@media screen and (max-width: 1024px) {
    .imagen_principal {
    width: 400px;
    margin-top: 135px;
    }
    .margen_fondo1{
    margin-top:0px;
    }
    .dashboard {
    width: 450px;
    }
    .inspeccion_memoria {
    width: 500px;
    }
     h1 {
     font-size:33px;
     }

     h2{
     font-size:27px;
     }

     p{
     font-size:17px;
     }

    }

@media screen and (max-width: 991px) {
    .imagen_principal img {
      width: 110%;
  }
  .features-section{
    margin-top: -90px;
    }
  .features-section p {
    margin-bottom: 0.5rem;
    }
    .features-section h4 {
    font-size: 1.5rem;
    text-align: left;
    line-height: 2.5rem;
    }
    .padding-principal {
    padding-bottom:20px;
    }
    .bn30 {
    font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) and (max-height: 896px) {
    .imagen_principal {
    width: 300px;
    margin-top: 40px;
    }
    .dashboard {
    width: 290px;
    }
    .inspeccion_memoria {
    width: 300px;
    }
    h1 {
     text-align:center;
     }

     h2{
     text-align:center;
     }

     p{
     text-align:center;
     }
     .section3 img {
     display:block;
     margin:auto;
     }
     .section1 img {
     display:block;
     margin:auto;
     }
     .padding-titulo{
       padding-top: 150px;
     }
     .bn30-cotizador{
    padding: 0.7em 5em;
    }
    .section_img2 h2 {
    color: #000101;
    margin-right: 0px;
    }
    .section_img2 p {
    margin-right: 0px;
    }
    .section_img2 .texto p {
    margin-right: 0px;
    }
    .main-header img {
    width: 50%!important;
    }

}

@media screen and (max-width: 767px) {
  .imagen_principal img {
      width: 100%;
  }

  .features-section h4 {
    padding-top: 120px;
    text-align: center;
    font-size: 2rem;
    }

  .features-section p {
    margin-bottom: 0.5rem;
    }
  .padding-principal {
    padding-bottom:40px;
    }

  .bn30 {
   padding: 0.8em 10em;
   font-size: 1.0rem;
    margin-bottom: 25px;
   }

}

@media screen and (max-width: 470px) {

.bn30 {
   padding: 0.8em 8em;
   font-size: 1.0rem;
    margin-bottom: 25px;
    }
}

