diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index cfc62451e984945342059e7574286bab82fb2873..b9bc6cc927b00f524f18ec18933add1f2c50e055 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -1,6 +1,6 @@
 <div class="structure" fxLayout="column" (click)="cardClicked()" (mouseenter)="cardHover()">
   <div class="headerStructure" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
-    <span class="nomStructure">{{ structure.structureName }}</span>
+    <span class="structure-name">{{ structure.structureName }}</span>
     <div
       *ngIf="structure.distance"
       class="distanceStructure"
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index 4bae4df3d7107b0eec3f29ef29f99ca332bd63ea..ac49fb15474ee6980ea7122f7aec205bd8915175 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -11,12 +11,13 @@
     color: $grey-3;
     @include cn-regular-16;
   }
-  .nomStructure {
+  .structure-name {
     padding-top: 13px;
     color: $grey-1;
     @include cn-bold-20;
     padding-bottom: 5px;
     width: 100%;
+    text-transform: capitalize;
   }
   .distanceStructure {
     @include cn-regular-16;