@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Open Sans', sans-serif;
    /* Para el cuerpo del texto */
}

h1,
h2,
h3 {
    font-family: 'Roboto', sans-serif;
    /* Para los títulos */
}

/* Carrousel Header*/
header {
    width: 100%;
    background-color: #f4f4f4;
}

.slider-container {
    position: relative;
    width: 83%;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    padding-top: 15%;
    padding-bottom: 15%;
}

.slider1 {
    background: url(/img/WeldingSrvcs/mobile-welding.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.slider2 {
    background: url(/img/WeldingSrvcs/WeldingMIG.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.slider3 {
    background: url(/img/WeldingSrvcs/weldingmag.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.slider4 {
    background: url(/img/WeldingSrvcs/weldingchasis.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.slide h2 {
    font-size: 3em;
    color: #e2e2e2;
    text-shadow: 1px 2px 2px rgb(4, 4, 4);
}

.slide p {
    font-size: 1.8em;
    font-style: oblique;
    color: #dedede;
    text-shadow: 1px 2px 2px rgb(4, 4, 4);
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.arrow-left {
    background-image: url('/img/misc/chev-left.webp');
    left: 10px;
}

.arrow-right {
    background-image: url('/img/misc/chev-right.webp');
    right: 10px;
}

.bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 1;
}

.bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(170, 4, 4);
    margin: 0 5px;
    cursor: pointer;
}

.bullet.active {
    background-color: rgb(31, 31, 31);
}

/* TuneUpBarn Welding */
.WeldSrvcs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f8f8f8;
}

/*Introducción*/
#introduccion,
#servicios,
#Action,
#porque-elegir,
#aplicaciones,
#benefits {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.introduccion,
.servicios,
.Action,
.porque-elegir,
.benefits-section,
.aplicaciones {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 20px;
    background: linear-gradient(145deg, #eeeeee, #ffffff);
    box-shadow: 6px 0px 8px 8px #00000098, -6px 0px 8px 8px #111111;
}

/* Beneficios TuneUpBarn */

.introduccion h2,
.servicios h2,
.Action h2,
.porque-elegir h2,
.aplicaciones h2,
.benefits-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.benefit {
    width: 80%;
    padding: 25px;
    margin-bottom: 40px;
}

.WeldSrvcs li strong,
.benefit h3 {
    font-size: 1.8em;
    color: #004a91;
    margin-bottom: 10px;
}


.introduccion p,
.servicios p,
.Action p,
.porque-elegir p,
.benefit p {
    font-size: 1.2em;
    color: #555;
}