*{
    margin: 0;
    padding: 0;
}
#banner-hero{
    min-height: 460px;
    background-image: url("../img/bannerhero.png");
}
#banner-hero h1{
    color: #FAFCFF;
    padding-top: 230px;
    padding-left: 10%;
}
#banner-hero p{
    padding-left: 10%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 0.15px;
    color: #FAFCFF;
    text-align: left;
}
#services{
    width: 80%;
    padding: 180px 10% 30px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.service{
    width: 347px;
    height: 481px;
    background-color: #EFEFEF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service img{
    width: 90%;
    height: auto;
    margin-top: -100px;
}
.service h3, .service p{
    margin: 5% 10% 0 10%;
    color: #000E29;
    text-align: center;
}
#btn-proyectos{
    margin: 0 10%;
    display: flex;
    justify-content: flex-end;
}
#btn-proyectos a{
    padding-left: 9%;
    padding-right: 9%;
}
#about{
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    background-color: #EFEFEF;
}
#about-image{
    width: 155%;
    height: auto;
    background-image: url("../img/about.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#about-information{
    padding: 60px 10% 60px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#about a{
    width: 200px;
    padding-left: 3%;
    padding-right: 3%;
    text-align: center;
}
#values-title{
    width: 80%;
    margin-top: 80px;
    padding: 0 10%;
    text-align: center;
    color: #000E29;
}
#values{
    width: 80%;
    margin-top: 40px;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.value{
    width: 220px;
    height: auto;
    padding: 2%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #EFEFEF;
    color: #000E29;
}
.value p{
    text-align: center;
}
.value:hover, .value:focus{
    box-shadow: 0px 3px 5px #E3E3E3;
}
#costumers{
    width: 80%;
    margin-top: 80px;
    padding: 3% 10%;
}
#costumers h3{
    margin-bottom: 30px;
    color: #000E29;
    text-align: center;
}
.content2{
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(calc(-250px * 10));
   }
}
.slider {
    background: white;
    height: 127px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 127px;
    position: absolute;
    width: 20px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: scroll 70s linear infinite;
    display: flex;
    gap: 50px;
    width: calc(247px * 14);
}
.slider .slide {
    height: 127px;
    width: 247px;
}
/*Responsive adjustments for tablet version*/
@media screen and (min-width: 1023px) and (max-width: 1393px) {
    .service:nth-child(1), .service:nth-child(2){
        margin-bottom: 150px;
    }
}
/*Responsive adjustments for tablet version*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
    #services{
        justify-content: center;
    }
    #btn-proyectos{
        justify-content: center;
    }
    #values{
        justify-content: center;
        gap: 30px;
    }
    .service:nth-child(1), .service:nth-child(2){
        margin-bottom: 150px;
    }
}
/*Responsive adjustments for mobile version*/
@media screen and (max-width: 767px) {
    #banner-hero h1{
        padding-left: 5%;
    }
    #services{
        justify-content: center;
    }
    #btn-proyectos{
        justify-content: center;
    }
    #values{
        justify-content: center;
        gap: 30px;
    }
    #about{
        flex-direction: column;
    }
    #about-image{
        width: auto;
        height: 300px;
    }
    .service:nth-child(1), .service:nth-child(2){
        margin-bottom: 150px;
    }
}