
body{
    background-color: var(--color-bg-secondary);
}
h1{
    font-family: 'Gilroy';
    font-size: 48px;
    color: var(--color-accent-purple);
}
h1, h2, h3, h4{
    text-align: center;
}
h3{
    margin-top: 80px;
    font-size: 32px;
    color: var(--color-accent-purple);
}
.main{
    margin: 120px auto;
    max-width: 1200px;
}
.about_industry{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.about_industry img{
    max-width: 500px;
    object-fit: contain;
}
.about_row{
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.about_industry h2{
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

.ctaMoreProjects{
    margin-top: 20px;
    text-align: center;
}



.projectList{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    gap: 60px;
}
.projectRow , .projectRow2{
    display: flex;
    gap: 40px;
}
.projectRow{
    flex-direction: row-reverse;
}
.projectRow > img, .projectRow2 > img{
    max-width: 600px;
    margin-bottom: 40px;
    object-fit: contain;
}
.projectDescription{
    font-family: 'Inter';
    display: flex;
    font-size: 16px;
    font-weight: 600;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    line-height: 1.8;
}
.clientLogo{
  text-align: center;
}
.ctaMoreProjects {
  display: flex;
  width: fit-content; 
  margin: 0 auto; 
  text-align: center;
  gap:20px;
  flex-wrap: wrap;
  justify-content: center;
}

.separator{
  height: 3px;
  width: 80%;
  background-color: rgba(139, 92, 246, 1);
  margin: auto;
}