/* import css */
@import 'slider.css';
@import 'comment.css';

@import 'style-articulos.css';

/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');


/*titulos servicios*/
@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');

/*PUBLICIDAD TEXT COMPUBAHIA*/
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

/* TITLE SERVICIO TECNICO PC */
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');
/* TITLE  DE NOTICIAS*/
@import url('https://fonts.googleapis.com/css2? family= Ubuntu:wght@500 & display=swap');

/* PARA TEXTO DESTACADO EN NOTICIAS */
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital@1&display=swap');
/* -- TEXTO PARA TITULOS NOTICIAS GRID --*/
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}


/* ===== Colours ===== */
:root{
    --body-color: #f9f9f9;
    --nav-color: #4070F4;
    --side-nav: #010718;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --font: 'Mulish', sans-serif;
    --font-parrafo: 'Rubik', sans-serif;
    --compu-color: #ff0000 ;
    --fontService: 'Ultra', serif;
    --font-h3: 'Ultra', serif;;
    --font-h2: 'Poppins', sans-serif;
    --font-h3-Shrikhand:  'Shrikhand', cursive;
    --font-CB:'Alfa Slab One', cursive;
    --font-NewsTitle:'Ubuntu', sans-serif;
    --font-NotiDestacada: 'Old Standard TT', serif;
    --font-News_grid: 'Patua One', cursive;
    
}
/*====== Fuentes de letras ============*/
h1,h2,h4{
    font-family: var(--font);
}

p{
    font-family: var(--font-parrafo);
    font-size: 17px;
}
compu{
    color:var(--compu-color);
    font-weight: 600;
    
}
compubahia{
    color: var(--compu-color);
    font-size: 18px;
    font-weight: 500;
    font-family:var(--font-parrafo);

}
.red{
    color: red;
}

/*===Fin fuentes====*/
/*-Deshabilitar scroll horizontal-*/
body{
    width: 100%;
	overflow-x: hidden;
}
html{
    width: 100%;
    overflow-x: hidden;
}
/*======= COLORES FUENTE =========*/
.text-red{
    color: red;
}

body{
    height: 100vh;
    background-color: var(--body-color);
}

body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
    box-shadow: 1px 2px 4px 2px #34343476;
}

body.dark nav{
    border: 1px solid #3938384d;

}

nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color: var(--nav-color);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}

.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before{
    opacity: 1;
}

/* .nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

.searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}

.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}

.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}

.searchBox{
    position: relative;
}

.searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
}

.search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}

body.dark .search-field input{
    color: var(--text-color);
}

.search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

body.dark .search-field i{
    color: var(--text-color);
} */

.img-logo{
    width: 100%;
    max-width: 60%;
}

/*===============end header==================*/
/* ===== index =======*/
/*------slider carousel----------------*/
.slider-carousel{
    margin-top: 4.3em;
}
/*==================slider==================*/
.slider{
    margin-top: 2.7em;
}
/*===end slider==*/
/*card*/
.card{
    margin:5px;
}
/* ------------------- INDEX  INTRO------------------------*/
#artindex{
      /* The image used */
 /* background-image: url("../img/backgroung/img-intro.webp"); */

  /* Set a specific height */
  width: 100%;
  min-height: auto;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container-sm{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    cursor: default;


    
}
.card-contain{
    background-color: #d3d3d3ec;
    width: 21em;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 0px rgb(46, 46, 46);
    transition: transform .4s;
    -webkit-transition: transform .4s;
    -moz-transition: transform .4s;
    -ms-transition: transform .4s;
    -o-transition: transform .4s;
}
.card-contain:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    box-shadow: 1px 1px 10px 0px rgb(46, 46, 46);
}
.card-contain img{
    border-bottom: 4px solid rgb(250, 250, 250);
}



/*-------------- medidas queries ---------------------*/
@media only screen and (min-width: 360px) and (max-width: 799px){
    .container-sm{
        grid-template-columns: 1fr;
    }
}
@media only screen and (min-width: 800px) and (max-width: 1279px){
    .container-sm{
        grid-template-columns: 1fr;
    }
}


/*------------- end media queries ----------------*/
/*--Service---*/
/*--------------------servicios-----------------------------*/
#service{
  /*background-image: url("../img/backgroung/img-service.webp");*/
  width: 100%;
  min-height: auto;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Service-title{
    padding: 1.5em;
    background-image: linear-gradient(to bottom, #0888ff96, #07e1fd2c, #06e2ff38, #3cd2f811, #b6fcfc00);
}
.Service-title h5{
    color: rgb(5, 5, 5);
}
/*--------------------servicios-----------------------------*/

.contenedor{
	display: flex;
	align-items: center;
	justify-content: center;


}
.contenedor{
	padding: 5px ;
	
	
}

.contenedor figure{
   position:relative;
	height: 250px;
	cursor: pointer;
	width: 350px;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0px 10px 19px rgba(5, 5, 5, 0.5);
}

.contenedor figure img{
	width: 100%;
	height: 100%;
	transition: all 400ms ease-out;
	will-change: transform;
}
.contenedor figure .capa{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(33, 35, 36, 0.7);
	opacity: 0;
	visibility: hidden;
   text-align: center;
}
.contenedor figure:hover > .capa {
	opacity: 1;
	visibility: visible;
}
.contenedor figure:hover > .capa h3{
	margin-top: 50px;
	margin-bottom: 15px;
}
.contenedor figure:hover > img{
	transform: scale(1.3);
}
.contenedor figure .capa h3{
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 120px;
	transition: all 400ms ease-out;
}
.contenedor figure .capa p{
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
	width: 100%;
	max-width: 220px;
	margin: auto;
}

/*--------------------Publicidad-----------------------------*/
.publicidad-compu{
	width: 100%;
	height: 50vh;
	background-image: url(../img/header-intro/img_media.webp);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	
}
/*=========Pag. Error 404 =============*/
.section--error{
    margin-top: 5em;
}
.col__text{
    height: auto;
    padding-top: .5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.col__text a{
    display: inline-block;
    width: 250px;
}

.text--col{
    display: flex;
    margin-top: .5em;
    padding: 1em;
    flex-direction: column;
    justify-items: center;
    align-items: center;

   
}
.btn--p{
   margin-bottom: 2em;
}
/*--------------------Tienda Online-----------------------------*/
/* tienda online new*/
#Tienda-OnLIne{
    width: 100%;
    height: auto;
}
.Store{
    background-image: linear-gradient(to bottom, #08acf896, #3bb2f72c, #4ce1f538, #3cdcf811, #b6fcfc00);
    width: 100%;
    min-height: auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;

}
.store-Online{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:8px;
    margin-top: 2em;
    margin-bottom: 1em;
}
.contenedor-Store a{
    text-decoration: none;
}
.contenedor-Store figure{
    position:relative;
	height: 250px;
	cursor: pointer;
	width: 200px;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0px 10px 19px rgba(207, 205, 205, 0.5);
}
.contenedor-Store figure img{
    width: 100%;
	height: 100%;
	transition: all 400ms ease-out;
	will-change: transform;
}
.contenedor-Store figure:hover >img{
	transform: scale(1.3);
}
.contenedor-Store .store_Title h2{
    margin-top: 2px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: #0633f8;
    text-align: center;
}
.contenedor-Store .store_Title h2:hover{
	background-color: rgba(37, 37, 37, 0.432);
	transition: all 400ms ease-out;
}

/*===============================================*/

/*======Grid News=======*/
.container-featured{
    margin-bottom: 3em;
}
.paralelogramo {
    position: relative;
    width: 205px; 
    height: 35px; 
    border: 1px solid rgb(20, 136, 161);
    border-radius: 6px; 
    background: #6f00ff;
    -webkit-transform: skew(-25deg);
    -moz-transform: skew(-25deg);
    -ms-transform: skew(-25deg);
    -o-transform: skew(-25deg);
    transform: skew(-25deg);
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    
  }
  .paralelogramo h5{
    position: absolute;
    margin-top: -0px;
    font-size: 2rem;
    font-weight: 600;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: white;
    margin-left: .7em;
  }
  .line{
    position: relative;
    width: 100%;
    max-width: 100%;
    border: 2px solid rgb(0, 0, 255);
    margin: -17px;
    margin-right: auto;
    margin-left: auto;
  }
  /*======News Index==========*/
  #News{
    height: auto;
    background-color: #ede9e9c1;
  }

  .card-News{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }


  .container-over{
   width: 100%;
   margin: 4px;
   box-shadow: 1px 1px 1px 1px rgba(54, 54, 54, 0.723); 
   border-radius: 5px;
   background-color: #E4E9F7;
   

}
.container-over:hover{
    box-shadow: 1px 2px 5px 2px rgba(54, 54, 54, 0.723) ;
    transform: scale(1.1);
    /*evita que el texto se deforme se ponga borroso*/
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: perspective(1px)
    
}
.body{
    transform:scale(1);
}
.pictureOver img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.col-body a{
    text-decoration: none;
    color: #010718;
}
.body{
    margin-left: 5px;
}
.body h5{
    text-align: center;
    margin-bottom: 5px;
}
.btn-more{
    margin-bottom: 1em;
}

/*============CONTACTO==============*/
.contact{
    background-image: url("../img/backgroung/img-contact.webp");
    width: 100%;
    min-height: auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.page__section_6{
    color: white;
    
}

.textarea{
    height:150px ;
    resize: none;
}
.form__section_6{
    box-shadow: 2px 2px 9px 2px rgba(255, 255, 255, 0.723); 
}

/*============FOOTER=============*/
.footer{
    background-color: #18191a;
}
.Social{
    display: flex;
    justify-content: center;
    gap: 5px;

}
.icons_fa{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}
.icons_fa li{
    text-decoration: none;
}
/*======== PAGE SECCION SERVICIOS ==========*/
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.img__service{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__service::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/intro__service.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
.text_hero{
    width: 100%;
    height: auto;
    margin-top: 9em;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text_hero h5{
    color: #F2F2F2;
    font-size: 4rem;
    font-family: var(--fontService);
}

.text_hero p{
    color: aliceblue;
    font-size: 1.2em;
    text-align: center;
}
.welcome{
    width: 100%;
    max-width: 75%;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
}
.welcome p{
    font-family: var(--font-parrafo);
    font-size: 18px;
}
/*========== SECCTION BOX ==================*/
#section{
    background-color: #ffffff;
}
.box__section{
    display: grid;
    /* align-items: center; */
    justify-items: center;
    grid-template-columns: repeat(3,1fr);
    padding: 2.5em;
    width: 100%;
    height: auto;
    gap: .5em;

}
.box__service{
    background-color: rgba(6, 7, 9, 0.518);
    width: 100%;
    height: auto;
    display:flex;
    flex-direction:column;
    justify-items: center;
    align-items: center;
    border-radius: 10px;
    gap: .5em;
    padding: .5em;
    cursor: default;

    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}
.box__service:hover{
    background-color: rgba(0, 81, 255, 0.582) ;
    transition: all 400ms ease-out;
    box-shadow: 1px 2px 5px 2px rgba(0, 0, 0, 0.275);


}
.box__title h5{
    font-family: var(--font);
    font-size: 1.4rem;
    color: white;
}

.box__img img{
    background-color: white;
    width: 80px;
    border-radius: 50%;
    border: #ffffff 3px solid;
}

.box__body{
    color: white;
}
.box__body ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;

    
}
.bi{
    margin-right: 5px;
}

/*========== PAGE MANTENIMIENTO ==============*/
.img__maintenance{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__maintenance::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_Mantenimiento.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
.text_hero h2{
    color: #F2F2F2;
    font-size: 5rem;
    font-family: var(--fontService);
}
/*===== main mantenimiento =======*/

#Preventivo{
    background-color: rgb(255, 255, 255);
}

#Predictivo{
    background-color: rgba(74, 74, 207, 0.174);
}
#correctivo{
    background-color: #e5e5e5;
}
#evolutivo{
    background-color: #dce5f4;
}

.box__card{
    padding: 2em;
}

.box__card p{
    font-size: 18px;
}
.card-row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-row{
    box-shadow: 2px 2px 5px 3px rgba(56, 56, 56, 0.141);
    margin: 7px 0;
}
.mant_img img{
    border-radius: 6px;
}
/*items predictivo*/
.items_Predic{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
/*mantenimiento correctivo*/
.card_items{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
/*======= PAGE ARMADO DE EQUIPOS ==============*/

.img__armed{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__armed::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_ArmadoEquipos.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
#carouselArmado{
    width: 100%;
    left: -5px;
    margin-top: .5em;
    padding: .5em;
}
.pad-tex{
    padding: .5em 0;
}
/*sistemas operativos*/
.wrap__sistems{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    
}

.img__sistems{
    display: flex;
    gap: .5em;
    justify-content: center;
    margin-top: 1.5em;
    
}

/*============= PAGE SERVICE CELULAR ==================*/
.img__stc{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__stc::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_STC.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}

/*servicio tecnico body*/
#background__cel{
    background-color: #4070f446;
}

.contenedore{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(19em, 1fr));
}
.card__stc{
    width: auto;
    height: auto;
    background-color: rgb(255, 255, 255);
    margin: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.card__stc picture{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card__stc picture img{
    width: 50%;
    border-radius: 50%;
    
}
.card__stc h3{
    text-align: center;
    font-family:var(--font-h3);
    font-size: 1.2em;
    color: rgba(0, 0, 255, 0.772);
}
.card__stc p{
text-align: center;
}
.banner__stc{
    width: 100%;
    height: 300px;
    background-image: url(../img/Service/banner_STCelulares.webp);
    background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
  
}
#services__class{
    background-image: linear-gradient(to right top, #277d9b, #0077b6, #006dd0, #005de2, #363ee5);    
}
.card__services{
    border: 2px solid #4070F4;
    padding: .5em;
    margin: 5px 0;
    background-color: whitesmoke;
    width: 100%;
    height: auto;
    box-shadow: 1px 2px 5px 2px rgba(204, 204, 204, 0.7);
}

.card__title h3{
    font-family: var(--font-h3);
    font-size: 21px;
    text-align: center;
}

.body__card{
    margin-left: auto;margin-right: auto;
    display: flex;
    flex-direction: column;

    align-items: center;
    
    
}
.body__card img{
    max-width: 95%;
    height: auto;
}
/*cel phone repair*/
#repair{
    background-color: #cdcdcd62;

}
.repair__row{
    display:grid ;
    grid-template-columns: repeat(auto-fill,minmax(18em, 1fr));
    justify-items: center;


}
.repair__text-intro{
    margin-top: 1.5em;
    padding: .5em;
}
.repair__text-intro p{
    font-size: var(--font-parrafo);
    font-size: 17px;
}

.card__repair{
    float: right;
    margin: 5px;
    height: auto;
    border: solid 2px black;
    display: flex;
    flex-direction: column;

    clip-path: inset(2px 2px 2px round 15px 0);
    position: relative;
    z-index: 1;
}
.card__repair::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  clip-path: circle(0 at top right);
  transition: 0.3s ease-out;

}
.card__repair:hover::before{
    clip-path: circle(150% at top right);
}


/*IMAGENES CARD CELULARES*/
.card__repair_samsung{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.683) 0%,rgba(0, 0, 0, 0.23) 100%),url(../img/Service/img__service_samsung.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.card__repair_xiaomi{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.683) 0%,rgba(0, 0, 0, 0.23) 100%),url(../img/Service/img__service_xiaomi.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.card__repair_iphone{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.683) 0%,rgba(0, 0, 0, 0.23) 100%),url(../img/Service/img__service_iphone.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*END IMAGENES CELULARES*/
.card__title_repair{
    margin-top: 5em;
    
}
.card__title_repair h3{
    font-family:Arial, Helvetica, sans-serif ;
    font-weight: 600;
    text-align: center;
    font-size: 28px;

}

.body__card{
    margin-top: 3em;
    margin-bottom: 5em;
    max-width: 95%;
}
.body__card_cel P{
    padding: .5em;
    color: white;
}
/*=================REPARACION NOTEBOOKS SLIDERS=========================*/
.swiffy-advertising{
    width: 100%;
    height: 150px;
}
/*==================== carousel_work ===========================*/
.swiffy-service{
    width: 100%;
    height: 800px;
}

/*======= INTRO DE IMAGENES PAGE SECCIONES ========*/
/*SERVICIO REPARACION NOTEBOOKS*/
.img_intro__reparacion_Notebook{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img_intro__reparacion_Notebook::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_Service_ReparacionNotebook.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}

/*========= PAGE SERVICIO REMOTO ================*/
.img_intro__remote{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img_intro__remote::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_remote.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
/*SECCTIONES AREA*/
.title-SRemote{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 2em;
}
.title-SRemote h6{
    font-size: 15px;
    color: #646464;
}
.title-SRemote h2{
    font-family: var(--fontService);
    font-size: 2.5em;
    color: red;
}
/*CARD SERVICIO REMOTO*/
.Container-row{
    width: 100%;
    
}

.row__cardService{
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(20em, 1fr));
    gap: 5px;
    margin-right: auto;
    margin-left: -6px;
}
.img__remote{
    width: 100%;
}
.img__remote img{
    width: 100%;
    border: 5px solid white;
}
.card_remote{
    width: 100%;
    height: auto;
    border: 2px solid black;
    margin: 5px;
}
.card__bodyRemote{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(15em, 1fr));
    height: auto;
}
.body__ServiceRemote{
    margin-top: 6px;
    margin-left: .5em;
}
/*colores de tarjetas*/
.remote__primary{
    background-color: #4125e0;
}
.p__remote{
   padding-top: 1.2em;
}
.remote__secondary{
    background-color: #1370b8;
}
.remote__third{
background-color: #9f8920;
}
.remote__fourth{
background-color: #0b8d62;
}
/*end de colores*/
.body__ServiceRemote{
    color: white;
}
.body__ServiceRemote h3{
    text-align: center;
    padding-top: .5em;
    font-family: var(--font-h3);
    font-size: 20px;
    margin-bottom: 2em;
    letter-spacing: 1px;
}
/*======================= BANNER SEPARADOR REMOTE ==============*/
.S_R__BannerSeparator{
	width: 100%;
	max-width: 100%;
    max-height: auto;
	background-image: url(../img/Service/img__Banner_serviceRemote.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.card_separater{
    display: grid;
    grid-template-rows: repeat(2,1fr);
    width: 100%;
    align-items: center;
    

}
.title__bannerRemote h5{
    margin-top: .5em;
    font-size: 5em;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-weight: 700;
	font-stretch: expanded;
	text-align: center;
	background-color: rgba(153, 148, 148, 0.548);
	padding: 20px;
	border: 3px  solid #f0f2f3;

}
/* .S_R__BannerSeparator h5{
	font-size: 5em;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-weight: 700;
	font-stretch: expanded;
	text-align: center;
	background-color: rgba(153, 148, 148, 0.548);
	padding: 20px;
	border: 3px  solid #f0f2f3;
	
} */
.enlace_remote{
    text-align: center;
    position: relative;
}
.enlace_remote a{

    text-decoration: none;
}
.enlace_remote a p{
    position: relative;
    font-size: 2.5em;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	font-weight: 700;
	color: #f0f2f3;
	
}
/* .S_R__BannerSeparator a> p{
    position: relative;
	font-size: 1.5em;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	font-weight: 700;
	color: #f0f2f3;
    margin-bottom: .2em;

} */
.btn-contact{
    background-image: linear-gradient(to right top, #323ae3, #6163eb, #8789f0, #acaff1, #d3d5f0);
	border-radius: 6px;
    padding: 0 .2em;
    position: relative;
    z-index: 2;
}
.btn-contact::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.492);
    opacity: 0.5;
    clip-path: circle(0 at center);
    transition: 0.3s ease-out;
}
/*hover*/
.btn-contact:hover::before{
    clip-path: circle(150px at center);
  }
.S_R__BannerSeparator a> p:hover{
	color: #ffffff;
	transition: all 0.5s ease-out;
}

/*========== RECOMENDACION GOOGLE ================*/
#sliderCard{
    display: flex;
    justify-content: center;
}
.Recomendationgoogle{
    display: grid;
    grid-template-rows: repeat(2,1fr);
    justify-content:center;
    background-color: #0c1727;
    width: 100%;
    height: 20em;
    box-shadow: 1px 1px 9px 5px rgba(20, 20, 20, 0.671);
    
    
  }
  .Recomendation-Google{
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 100%;
  
  }
  .title__google h5{
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #2d7d9c;
    padding: 5px;
    letter-spacing: 2px;
    text-align: center;
}
.title__google h2{
    font-size: 3em;
    text-align: center;
    font-family:'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 3.5px;
    margin-top: .5em;
    color: #ffffff;
}
  .Logo_Google{
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
  }
    .Logo_Google img{
    width: 9em;
  }
    .Logo_Google__start picture{
    display: flex;
    justify-content: center;
    margin-top: .5em;
    padding-bottom: 3em;
  }
  .Logo_Google__start picture>img{
    width: 2.5em;
  }
  .title__evaluacion h6{
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #0a0a0a;
    padding: 5px;
    letter-spacing: 2px;
    text-align: center;
    margin-top: -25px;

  }
  /*=== DESCARGAR ANYDESK TEAMVIEWER =====*/
  .row__download{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
    padding-top: .5em;
    padding-bottom: .5em;
  }

.title_Download img{
    width: 50%;
}

/* ========= CARD GOOGLE CARROUCEL ========*/
#card__google{
    background-color: #19283f;
}
.card_Slider{
    display: flex;
    width: 100%;
    max-width: 90%;
    height: 350px;
    background-color: #19283f;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;
  }

  .Contenedor_Slider{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #f0f2f3;
    width: 100%;
    max-width: 30%;
    height: 100%;
    max-height: 60%;
    border-radius: 6px;
    box-shadow: 1px 1px 15px 4px rgba(0, 0, 0, 0.541);
    margin: 2em;
    position: relative;
  }
  .cardBody_Slider{
    position: absolute;
    /* background-color: #0b8d62; */
    width: 100%;
    height: 100%;
  }

  .date__user{
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }
  .logo__name_card{
    display: flex;
  }
  .logo_name picture img{
    width: 50px;
    border-radius: 50%;
    margin-left: 5px;
  }
  .name_card{
    margin-top: .4em;
    margin-left: .5em;
  }
  .name_card h5{
    font-size: 1em;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    margin-left: .8em;
    font-weight: bold;
    margin-top: 2px;
  }
  .name_card h6{
    font-size: .8em;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    margin-left: .9em;
    font-weight: bold;
    margin-top: -9px;
  }

  .logo__google{
    position: absolute;
    display: flex;
    justify-content: end;
    margin-top: .4em;
   width: 100%;
 
 
 }
 .logo__google picture img{
    width: 50px;
   /* margin-top: .5em;
    margin-right: .5em; */
 
 
 }
 /*start*/
 .star__card{
    width: 100%;
    max-width:29%;
  }
  .star__card picture{
    display: flex;
    margin-top: 1em;
    margin-left: .6em;
  }
  .star__card picture >img{
    width: 17px;
  }
  .star__card picture p{
    position: absolute;
    bottom: 13em;
    left: 12.5em;
    width: 6em;
    height: 2em;
    background-color: #4b4d4e;
    color: #fff;
    text-align: center;
    font-size: 10px;
    padding: 2px;
    box-sizing: border-box;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
  
  }
  .star__card picture p::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 11px;
    background-color: #4b4d4e;
    margin-left: -11.5px;
    margin-top: 2.5px;
    transform: rotate(50deg);
  }
  .star__card:hover picture p{
    visibility: visible;
    opacity: 1;
    transform: translateX(0%) translateY(20px);
  }
  .Contenedor_Slider:hover{
    transform: translateX(0%) translateY(-4px);
    transition: all 0.35s ease-in-out ;
  
  }
  
  .verifield__tilde{
    width: 15px !important;
    margin-left: 5px;
    margin-top: 1.5px;
  }
  .text_card__google{
    margin-top: 1.5em;
    margin-right: 10px;
    margin-left: 10px;
    
  }

  /*========== SECCION MANTERNIMIENTO REPARACION NOTEBOOK ========*/
  #ul-reparacion{
    background-image: linear-gradient(to bottom, #5ea4b3, #4ea3cb, #609dde, #8e91e6, #c27fda);
  }
  .bw__primary{
    background-image: linear-gradient(to right top, #a05eb3, #935fb7, #8561bb, #7663be, #6464c0);
  }
  .img__remote{
    cursor: default;
    box-shadow: 1px 2px 5px 1px rgba(255, 255, 255, 0.678);
  }
  /* .card__service-Notebook{

  } */
  .card-body__reparation h3{
    font-family: var(--font-h3);
    font-size: 1.5em;
    margin-bottom: .5em;
    text-align: center;
  }
  .card-body__reparation p{
    margin-bottom: 2em;
  
  }
  .card-body ul{
    margin-bottom: 1.6em;
  }
  .space{
    margin-bottom: 1em;
  }
  /* CARD ONE */
.img__remote{
    background-image:  linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url('../img/Service/service_laptops/img_mantenimiento-laptop_01.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* CARD TWO*/
.img__two{
    background-image:  linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url('../img/Service/service_laptops/img_mantenimiento-laptop_02.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* CARD THREE */
.img__three{
    background-image:  linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url('../img/Service/service_laptops/img_mantenimiento-laptop_03.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* SECTION -- ul-reparacion REPARACION ITEMS */
.body__col{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    padding-top: .5em;
    padding-bottom: .5em;
}


/*CARD*/
.card_repairNot{
    background-image: linear-gradient(to top, #002dff, #565dff, #8285ff, #a9adfd, #d1d3f4);
    border: #5892ff solid 2px;
    width: 100%;
    box-shadow: 0px 0px 3px 0px rgb(255, 255, 255);

    
}
.card_repairNot div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.card_repairNot div >img{
    width: 30%;
    border-radius: 50%;
    box-shadow: 1px 2px 5px 2px #fff;
    
}
.card__rn_title h2{
    font-family: var(--font-h2);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.card_body__Repair p{
    padding: 6px;
    font-family: var(--font-parrafo);
    font-size: 17px;
    color: white;

}
/*ul SERVICE REPARACION PC*/
.rapair__pc{
    width: 100%;
    height: 52vh;
    background-color: #006dd0;
}
.rapair__pc{
    position: relative;
    width: 100%;
    background-image:  linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url('../img/Service/service_laptops/img__flayer_ServiceTecnico_PC.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.intro__repair_pc{
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.intro__repair_pc h2{
    color: #F2F2F2;
    font-size: 4rem;
    font-family: var(--fontService);
}
.intro__repair_pc h4{
    color: aliceblue;
    font-size: 1.2em;
    text-align: center;
}
/*  SERVICIO TECNICO PC */
.body_col-st h2{
    font-family: var(--font-h2);
    font-size: 25px;
}
.body_col-st p{
    font-family: var(--font-parrafo);
    font-size: 17px;
}
.body_cold-st_img{
    margin-left: auto;
    margin-right: auto;
    
}
/*card de servicios section blue*/
.separater-blue{
	width: 100%;
	height: 8em;
	background-color: #1900ff;
	display: flex;
	justify-content: center;
	align-items: center;
    padding: .5em;
}
.separater-blue h3{
    
    text-align: center;
    position: relative;
	font-size: 2em;
	font-family:var(--font-h3-Shrikhand);
	color: whitesmoke;
    letter-spacing: .5px;
}

/*ARTICULOS - ITEMS SERVICIOS PC*/
.row-card-stpc{
    display: flex;
    justify-content: center;
}
.card-serviceTcPc:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.424);
    transform: translateX(0%) translateY(-4px);
    transition: all 0.35s ease-in-out ;
}
.card-serviceTcPc img:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.424);
    -webkit-box-shadow: 2px 2px 5px #999;
    -moz-box-shadow: 2px 2px 5px #999;
}
.card-serviceTcPc img{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 50%;
}
.card-serviceTcPc h2{
    font-family: var(--font-h2);
    font-size: 21px;
    text-align: center;
    font-weight: 600;
    color: #005de2;
}
.card-serviceTcPc div> p{
    margin-top: .4em;
    font-family: var(--font-parrafo);
    font-size: 18px;
}
/*===================SLIDER GAMER========================*/
.swiffy-gamer{
    width: 100%;
    height: 400px;
}
@media only screen and (max-width: 768px){
    .swiffy-gamer{
        width: 100%;
        height: 250px;
    }
}
/*  === BANNER GAMER PC==*/
.container-gamer{
    background-image:linear-gradient(180deg, #0000008c 0%, #0000008c 100% ), url(../img/Service/service_laptops/st_pc/img__Banner_PC_Gamer.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.title-gamer{
    width: 100%;color: white; text-align: center; padding: 2em;
}
.title-gamer h2{
    font-family: var(--font-h2);
    font-size: 2.5em;
    font-weight: 700;
}
.banner-gamer_pc{
    padding: .5em;
}
.slider-gamer{
    padding: 2em;
}

.title-growth{
    text-align: center;
    font-family: var(--font-h2);
    font-size: 20px;
    font-weight: 700;
}
.body-growth{
    margin: 12px 2em;
}
.body-growth p{
    font-size: 18px;
    font-family: var(--font-parrafo);
}


/*====== CAROUSEL SLIDER TRABAJOS ======*/
.slider-container{
    overflow-y: hidden;
}
/*=========== BANNER COMPUBAHIA ==============*/
.card__Isntaller__OS{
  width: 100%;
  height: auto;
  background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ), url(../img/Service/service_laptops/banner__CompuBahia.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.card_publi{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
}
.tex__installer{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.title__installer h2{
    font-family: var(--font-h3);
    
    
}
.body__installer p{
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 19px;
    font-weight: 700;
}
.CB__text{
    text-align: center;
}
.CB_text{
    font-family: 'Alfa Slab One', cursive;
    font-size: 3rem;
    color: red;
    text-shadow: 3px 3px 5px rgb(255, 255, 255);

}
.CB__text p{
    font-size: 25px;
    font-style:italic;
    font-weight: 800;
    color: black;
    letter-spacing: 2px;
}
/*==== wrap-growth-gamer =====*/
.text-cb{
    font-family: var(--font-CB);
    color: var(--compu-color);
}
/* ======== DESING WEB ========*/
.img__desing{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__desing::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/intro__DesingWeb.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
/* === BODY =====*/
.Design-row{
    margin-top: .5em;
    margin-bottom: 1.5em;
}
.body__text-desing{
    font-family: var(--font-parrafo);
    padding: 0 2.5em;
}
/* SECTION DESING*/
.create-desing{
    display: flex;
    justify-content: center;
}
.create-desing{
    background-color: rgb(7, 127, 239);
}
.create-desing div >h2{
    font-family: var(--font-h3);
    font-size: 2em;
}


/* COLORES FONDO  ACORDION*/
.button-one{
    background-color: rgba(42, 149, 211, 0.27);
}
.button-two{
   background-color: rgb(237, 249, 0.27);
}
.button-three{
    background-color: rgb(77, 242, 0.27);
}
.button-four{
    background-color: rgba(127, 20, 143, 0.27);
}
/* END COLORES ACORDION*/
/* == CARD DESING ===*/

.row-design_card{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
}
.contenedor-card_desing{
	width: 100%;
    max-width: 95%;
	height: 25em;
	margin: auto;
	box-shadow: 1px 2px 5px 1px #aeaeae;
	position:relative;
	overflow: hidden;
	cursor:default;
    background-color: white;
   
}
.img-design-card{
    display: flex;
    justify-content: center;
}
.body-card-design div > h3{
    font-family: var(--font-h2);

}
.Text-design p{
    font-family: var(--font-parrafo);
    font-size: 18px;
}
/* === BANNER CONTACT ===*/
/*consultas design*/
.content-Design_Contact{
	width: 100%;
	max-width: 100%;
	height: 400px;
	background-image: url(../img/Service/desing_web/img__bannerDesing_contact.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
    flex-direction: row;
	justify-content: center;
	align-items: center;
    position: relative;
}
.content-Design_Contact h3{
	position:absolute;
	color: whitesmoke;
	font-size: 3.5em;
	font-family: var(--font-h3);
	font-stretch: expanded;
	text-align: center;
	padding: 20px;
}

.content-Design_Contact a{
	position: absolute;
	margin-top: 20.5em;
	font-size: 16px;
	font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	font-weight: 600;
	color: whitesmoke;
}
.btn-contact_Design{
    width: auto;
    height: auto;
	padding: 5px 25px;
    margin: 1.5em;
	border-radius: 6px;
	background-color: rgb(55, 170, 236);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-contact_Design p{
    margin-top: 5px;
    font-size: 20px;
    text-align: center;

}
.btn-contact_Design:hover{
	background-image: linear-gradient(to top, #2c00ff, #4c32f2, #614be3, #7260d3, #8073c2);
	box-shadow: 1px 2px 20px 2px #c2c2c2;
	transition: all 0.5s ease-out;
}
/* == END BANNER CONTACT ===*/
/* === ITEMS DESING ===*/
.row__colums{
    display: flex;
    justify-content: center;
}
.Profits-Text_design h2{
    
    font-weight: 700;
    margin-bottom: .5em;
    color: rgb(0, 30, 255);
}
.Profits-Text_design h6{
    font-family: var(--font-h2);
    font-weight: 700;
    font-size: 25px;
    color: rgb(0, 30, 255);
    text-align: center;
}
.Profits-Text_design p{
    font-family: var(--font-parrafo);
    font-size: 18px;
}
.Profits-Text_design div >p{
    font-family: var(--font-parrafo);
    font-size: 16px;

}
.Profits-Img_design {
    display: flex;
    justify-content: center;
    align-items: center;
    }
/* == END ===*/
/* ===== ADVANTAGES =======*/
#advantages{
    background-image: linear-gradient(to top, #000000, #250117, #370032, #3c005a, #00138c);
}
.row-advantage{
    display: flex;
    justify-content: center;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
.col__adv{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    gap: 5px;
}
.card__advantage{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    width: 100%;
    
}
.card__advantage img{
    width: 100%;
    
}
.card-body h2{
    font-family: var(--font-h2);
    font-size: 19px;
    font-weight: 700;

}
.card-body p{
    font-family: var(--font-parrafo);
    font-size: 17px;
}
/* === END ADVANGES*/
/* === CITA ===*/
.container-cita{
    width: 100%;
    background-color: #0077b6;
}
/* === CALL DESING ===*/
.row-callme{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 5px;
    padding: .5em;
}
.box-callme{
    background-color: white;
    box-shadow: 0 0 2px 0 rgb(148, 148, 148) ;
   
}
.img_desing-ico img{
    width: 45px;
}
.img-phone h2{
    font-family: var(--font-h2);
    font-size: 18px;
    font-weight: 600;
}
.text-callme p{
    font-family: var(--font-parrafo);
    font-size: 16px;
}
/*== QUESTION WEBSITE ====*/
#question{
    background-image: linear-gradient(to bottom, #003de9, #0060f1, #0079ed, #008ee2, #279fd3);
}
.question-desing{
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
.title-question h2{
    font-family: var(--font-h2);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: whitesmoke;
}

/*======= CONTACT US ========*/
#contact-intro{
    background-image: linear-gradient(to bottom, #f9f9f9, #dde0f6, #b7caf4, #81b7f1, #04a6ec);
}
.img__contact{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__contact::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_Contact-us.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}
.contact-text{
    margin-top: 2em;
}
.contact-text h1{
    font-size: 40px;
    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.contact-text p{
    font-family: var(--font-parrafo);
    font-size: 20px;
}
.contact-phone{
    padding-top: 2em;
}
.contact-phone h2{
    font-family: var(--font-h2);
    font-size: 25px;
    font-weight: 700;
}
/* ===== SECTION NEWS ====*/
.img__news{
    width: 100%;
    height: 10vh;
    min-height: 500px;
    max-width: 100%;
    position: relative;
}
.img__news::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100% ),url(../img/Service/Intro_Mantenimiento.webp);
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    z-index: -99;
}

/*ARTICULOS GRID*/
.container-grid{
display: grid;
width: 100%;
height: auto;
gap: 10px;
grid-template-columns: repeat(3,1fr);
grid-template-areas: 
'articule articule rigth-slider'



}
.container-grid .rslider-left{
    grid-area: articule;

}
.container .rslider-rigth{
    grid-area: rigth-slider;
}
/* ===== NEWS INTRO ========*/
.content-col div{
    width: 100%;
}
.content-col  div img{
    width: 100%;
}
.col__prame a{
    text-decoration: none;
}
.title__prime h4{
    font-family: var(--font-NewsTitle);
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}
.body__prime p{
    color: #000000;
    font-family: var(--font-parrafo);
    font-size: 17px;
}
/*==== MORE NOTICIAS ====*/
.paralelogramo {
    position: relative;
    width: 180px; 
    height: 40px; 
    border: 1px solid rgb(20, 136, 161);
    border-radius: 6px; 
    background: #0040ff;
    -webkit-transform: skew(-25deg);
    -moz-transform: skew(-25deg);
    -ms-transform: skew(-25deg);
    -o-transform: skew(-25deg);
    transform: skew(-25deg);
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    
  }
  .paralelogramo h5{
    position: absolute;
    margin-top: -0px;
    font-size: 2rem;
    font-weight: 600;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: white;
    margin-left: .3em;
  }

  .line{
    position: relative;
    width: 400px;
    max-width: 100%;
    border: 2px solid rgb(0, 8, 255);
    margin-right: auto;
    margin-left: auto;
  }
  .row-col{
    display: grid;
    grid-template-rows:1fr ;
  }

  .col_body a{
    text-decoration: none;
    color: #000000;
  }
  .body_card{
    display: flex;
    flex-direction: row;
    gap: 7px;

  }
  .img_art{
    width: 100%;
    height: auto;
  }
  .img_art img{
    width: 100%;
    height: auto;
  }
  .body_text{
    width: 100%;
  }
  .body_text h3{
    font-size: 18px !important;
    font-weight: 500;
  }
.container--news_col a{
    text-decoration: none !important;
    color: #000000 !important;
}
.theClass{
    display: flex;
    
}
.the-best ul li{
    list-style: none;
    margin: 5px;
}
.the-bad ul li{
    list-style: none;
    margin: 5px;
}
/*stile 2023 noticias*/
.divcard{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgb(182, 182, 182);
    max-height: auto;
    position: relative;
}
.card_news{
    height: auto;
}

/*CARD PRIMARY PHP*/
.info-News{
    position:relative;
    
    
}
.infoNews{
  position: absolute;
  margin-top: 7px;
  margin-left: 7px;
  padding: 2px;
  color: whitesmoke;
  background-color: rgba(243, 40, 26, 0.712);
  box-shadow: 1px 2px 4px 2px #ffffff76;
}
/* ESTILO PARA NOTICIAS  */
.Desk_News{
    font-family: var(--font-NotiDestacada);
}
/*ARTICULOS RELACIONADOS*/
.Related_row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    
    
}
.Related_news h5{
    font-weight: 600;
}
.related_content{
    background-color: #f7f3ef;
    padding: 2px;
}
.related{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;


}
.related a{
    text-decoration:none;
}
.r_content_title h5{
    font-size: 20px;
    color: red;
}
.r_content p{
    color: #000000;
}
.r_hr{
    margin-top: -.3em;
    border-top: 3px solid rgb(255, 0, 0);
}
/*macbook*/
.comparative{
    display: grid;
     grid-template-columns: repeat(2,1fr);
     gap: 4px;
     margin-top: 50px;
}
.comparative-laptop{
    position: relative;
}
.macbook_title{
    position: absolute;
    margin-top: -50px;
    z-index: 90;
    color: #ffffff;
    background-color: #6e6e6ec2;
    padding: 15px;
    width: 75%;
}
.pos-comparative ul{
    list-style: none;

}
.table-comparative{
    background-color: rgb(255, 255, 255);
}
@media only screen and (max-width: 768px){
.comparative{
    grid-template-columns: 1fr;
}
.samsung-Book{
    margin-top: 3em;
}
/* PHP SECONDARY*/


}
/*  PHP SECONDARY*/
@media only screen and (max-width: 768px){
    .layout_news{
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        
        }
   
        
}

.layout_news{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap:8px;
align-self: center;
grid-auto-rows: auto;



}
.layout_news_gel{
    max-width: auto;
    max-height: 550px !important;
    
}
.layout_news_gel a{
    text-decoration: none;
    color: #000000;
}

.layout_news_body__content-paragraph {
height:260px;
width:auto;
overflow: hidden;
text-overflow: ellipsis;

    
    
}
.layout_news_body__content-paragraph p{
    display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 7;
overflow: hidden;
}

.layout__gs{
    background-color: white;
    grid-area: 1;
}
.layout_news_body__content-paragraph h3{
    padding: 2px;
    margin-top: 5px;
    margin-left: 6px;
    font-size: 18px;
    font-family:var(--font-News_grid);

}
.layout_news_body__content-paragraph p{
    margin: 3px;
}

/* advertising*/
.advertising-flyer{
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to bottom, #f80001, #ff0048, #f6007d, #d700ab, #a443cf);
}
.title-advertising h2{
    color:whitesmoke;
    font-size:xx-large;
    text-align: center;
}
.card-text-line{
    margin-top: -4px !important;
}

/**/


