diff --git a/services/web/app/views/subscriptions/plans-marketing-v2.pug b/services/web/app/views/subscriptions/plans-marketing-v2.pug
index deaa02b55c..33001e4964 100644
--- a/services/web/app/views/subscriptions/plans-marketing-v2.pug
+++ b/services/web/app/views/subscriptions/plans-marketing-v2.pug
@@ -35,6 +35,8 @@ block content
i.fa.fa-cc-paypal.fa-2x(aria-hidden="true")
span.sr-only Paypal accepted
+ include ./plans-marketing/v2/_university_info
+
include ./plans-marketing/_quotes
include ./plans-marketing/v2/_faq
diff --git a/services/web/app/views/subscriptions/plans-marketing/v2/_university_info.pug b/services/web/app/views/subscriptions/plans-marketing/v2/_university_info.pug
new file mode 100644
index 0000000000..381249097a
--- /dev/null
+++ b/services/web/app/views/subscriptions/plans-marketing/v2/_university_info.pug
@@ -0,0 +1,7 @@
+.row.row-spaced-large.text-centered
+ .col-sm-8.col-sm-offset-2.col-xs-12.card.plans-v2-university-info
+ h3 #{translate('would_you_like_to_see_a_university_subscription')}
+ .row-spaced
+ p #{translate('student_and_faculty_support')}
+ p #{translate('let_us_know_which_university_you_are_from')}
+ button.btn.plans-v2-btn-header.text-capitalize #{translate('show_your_support')}
\ No newline at end of file
diff --git a/services/web/frontend/stylesheets/app/plans-v2.less b/services/web/frontend/stylesheets/app/plans-v2.less
index b8d80a388a..9c13d9dc8f 100644
--- a/services/web/frontend/stylesheets/app/plans-v2.less
+++ b/services/web/frontend/stylesheets/app/plans-v2.less
@@ -1195,3 +1195,21 @@ p.plans-v2-table-discount-highlighted-text {
}
}
}
+
+.plans-v2-university-info {
+ padding: @padding-lg @padding-xxl;
+ background-color: @ol-blue-gray-1;
+ border-radius: 20px;
+
+ p {
+ margin: 0;
+ }
+
+ button {
+ margin-top: @margin-md;
+ }
+
+ @media (max-width: @screen-xs-max) {
+ padding: @padding-lg;
+ }
+}
diff --git a/services/web/frontend/stylesheets/core/variables.less b/services/web/frontend/stylesheets/core/variables.less
index 3bdd54b17c..a739fe75f7 100644
--- a/services/web/frontend/stylesheets/core/variables.less
+++ b/services/web/frontend/stylesheets/core/variables.less
@@ -143,6 +143,7 @@
@padding-md: 20px;
@padding-lg: 30px;
@padding-xl: 40px;
+@padding-xxl: 50px;
@line-height-large: 1.33;
@line-height-small: 1.5;
diff --git a/services/web/locales/en.json b/services/web/locales/en.json
index 994ed2d85d..bf4e531650 100644
--- a/services/web/locales/en.json
+++ b/services/web/locales/en.json
@@ -1789,5 +1789,9 @@
"commons_plan_tooltip": "You’re on the __plan__ plan because of your affiliation with __institution__. Click to find out how you could benefit from Overleaf premium features!",
"trial_last_day": "This is the last day of your Overleaf Premium trial",
"trial_remaining_days": "__days__ more days on your Overleaf Premium trial",
- "get_most_subscription_by_checking_premium_features": "Get the most out of your __appName__ subscription by checking out the list of <0>__appName__’s premium features0>."
+ "get_most_subscription_by_checking_premium_features": "Get the most out of your __appName__ subscription by checking out the list of <0>__appName__’s premium features0>.",
+ "would_you_like_to_see_a_university_subscription": "Would you like to see a university-wide __appName__ subscription at your university?",
+ "student_and_faculty_support": "Student and faculty support make a difference!",
+ "let_us_know_which_university_you_are_from": "Let us know which university you are from and we will take care of the rest.",
+ "show_your_support": "Show your support"
}