diff --git a/web/themes/asc_bootstrap/assets/sass/layout/_header.scss b/web/themes/asc_bootstrap/assets/sass/layout/_header.scss
index 1070bfef3207c7ec170ca15bf2d75fa67cdf06d7..2c4617d16ea3e30b798c4e8d8cbf335ed973cd54 100644
--- a/web/themes/asc_bootstrap/assets/sass/layout/_header.scss
+++ b/web/themes/asc_bootstrap/assets/sass/layout/_header.scss
@@ -104,6 +104,10 @@
     display: none;
   }
 
+  .form-type-search {
+    margin: 15px 0;
+  }
+
   @media (max-width: 768px) {
     width: 100%;
     padding: 15px 10px 0px;
diff --git a/web/themes/asc_bootstrap/css/style.css b/web/themes/asc_bootstrap/css/style.css
index be961c3ea78d8e4697b3d2c10dd3184200a1668f..9e117edff5c703e319d71a65795ca81548eccf32 100644
--- a/web/themes/asc_bootstrap/css/style.css
+++ b/web/themes/asc_bootstrap/css/style.css
@@ -9396,6 +9396,10 @@ h6 {
 .search-block-form .help-block {
   display: none;
 }
+/* line 107, ../assets/sass/layout/_header.scss */
+.search-block-form .form-type-search {
+  margin: 15px 0;
+}
 @media (max-width: 768px) {
   /* line 85, ../assets/sass/layout/_header.scss */
   .search-block-form {
@@ -9406,35 +9410,35 @@ h6 {
   }
 }
 
-/* line 115, ../assets/sass/layout/_header.scss */
+/* line 119, ../assets/sass/layout/_header.scss */
 .search-icon {
   float: right !important;
   cursor: pointer;
 }
-/* line 119, ../assets/sass/layout/_header.scss */
+/* line 123, ../assets/sass/layout/_header.scss */
 .search-icon .active-search {
   min-height: 40px;
 }
 @media (max-width: 768px) {
-  /* line 115, ../assets/sass/layout/_header.scss */
+  /* line 119, ../assets/sass/layout/_header.scss */
   .search-icon {
     display: none;
   }
 }
 
-/* line 128, ../assets/sass/layout/_header.scss */
+/* line 132, ../assets/sass/layout/_header.scss */
 .search-icon-mobile {
   display: none;
   float: right;
   font-size: 24px;
   margin: 5px 15px;
 }
-/* line 134, ../assets/sass/layout/_header.scss */
+/* line 138, ../assets/sass/layout/_header.scss */
 .search-icon-mobile a {
   color: #ffffff;
 }
 @media (max-width: 768px) {
-  /* line 128, ../assets/sass/layout/_header.scss */
+  /* line 132, ../assets/sass/layout/_header.scss */
   .search-icon-mobile {
     display: block;
   }
diff --git a/web/themes/asc_bootstrap/templates/paragraph/paragraph--column_one.html.twig b/web/themes/asc_bootstrap/templates/paragraph/paragraph--column_one.html.twig
index 8b5da739b0376e483ef14c7ae0a29fc32db01b67..1ddac5b409cbf45dceb21d57955b922a1e12547b 100644
--- a/web/themes/asc_bootstrap/templates/paragraph/paragraph--column_one.html.twig
+++ b/web/themes/asc_bootstrap/templates/paragraph/paragraph--column_one.html.twig
@@ -51,8 +51,12 @@
     {% if page_content_type == 'landing_page' %}
         <div class="container">
     {% endif %}
+    {% set thecont = [] %}
+      {% for item in content|without('field_column_style_2')|without('field_background_color') %}
+        {% set thecont = thecont|merge(item) %}
+      {% endfor %}
     <div class="col-xs-12 col-f">
-      {{ content.field_column_content_1 }}
+      {{ thecont[0] }}
     </div>
     {% if page_content_type == 'landing_page' %}
         </div>