diff --git a/donation_website/index.html b/donation_website/index.html
index 21c65e7..3832448 100644
--- a/donation_website/index.html
+++ b/donation_website/index.html
@@ -427,9 +427,56 @@
+
+
+
+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+

+
+
+
+
+
+
+
+
diff --git a/donation_website/style.css b/donation_website/style.css
index 0951a9b..1c91d05 100644
--- a/donation_website/style.css
+++ b/donation_website/style.css
@@ -816,7 +816,41 @@ form.search i{
line-height: 55px;
visibility: hidden;
}
-/**/
+/*----- partner -----*/
+.partner{
+ max-width: 100%;
+ background-color: #DCDCDC;
+ align-items: center;
+ justify-content: center;
+}
+.partner-slider{
+ height: 150px;
+ width: auto;
+ margin: auto;
+ overflow: hidden;
+ position: relative;
+}
+.slide-track{
+ animation: scroll 60s linear infinite;
+ display: flex;
+ width: calc(250px * 20);
+ gap: 50px;
+}
+.partner-logo img{
+ margin-top: 30px;
+ width: 250px;
+ height: 100px;
+}
+@keyframes scroll{
+ 0%{
+ transform: translateX(0);
+ }
+ 100%{
+ transform: translateX(calc(-250px * 5));
+ }
+}
+
+