diff --git a/src/components/FooterComponent.vue b/src/components/FooterComponent.vue
index b8aacc9454a2ba1e0b346a23133c68119feaaa6e..8fbeaec2e71832303a88fdfbc715ee8a9d29337b 100644
--- a/src/components/FooterComponent.vue
+++ b/src/components/FooterComponent.vue
@@ -1,53 +1,65 @@
 <template>
-  <footer class="">
-    <h1 class="text-center text-[54px] leading-[4.5rem] relative">
-      Contacts
-      <FeatureSvg
-        class="inline absolute -top-3 -translate-x-[3px] text-blue-text"
-      ></FeatureSvg>
-    </h1>
+  <footer class="relative overflow-hidden">
+    <div class="relative z-10">
+      <h1 class="text-center text-[54px] leading-[4.5rem] relative">
+        Contacts
+        <FeatureSvg
+          class="inline absolute -top-3 -translate-x-[3px] text-blue-text"
+        ></FeatureSvg>
+      </h1>
 
-    <div class="mt-[46px] mx-auto grid grid-cols-1 min-[900px]:grid-cols-3 justify-between gap-x-[41px] gap-y-[20px] w-max">
-      <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
-        <p class="flex justify-center"><MailSvg></MailSvg></p>
-        <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
-        <p
-          class="text-center text-blue-text mt-[11px] text-lg leading-[1.625rem]"
-        >
-          <a href="mailto:ackecosystem@gmail.com"> ackecosystem@gmail.com </a>
-        </p>
-      </article>
+      <div
+        class="mt-[46px] mx-auto grid grid-cols-1 min-[900px]:grid-cols-3 justify-between gap-x-[41px] gap-y-[20px] w-max"
+      >
+        <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
+          <p class="flex justify-center"><MailSvg></MailSvg></p>
+          <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
+          <p
+            class="text-center text-blue-text mt-[11px] text-lg leading-[1.625rem]"
+          >
+            <a href="mailto:ackecosystem@gmail.com"> ackecosystem@gmail.com </a>
+          </p>
+        </article>
 
-      <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
-        <p class="flex justify-center"><TelSvg></TelSvg></p>
-        <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
-        <p
-          class="text-center text-blue-text mt-[9px] text-lg leading-[1.625rem]"
-        >
-          <a href="tel:+1884654458"> +1 884 65 44 58 </a>
-        </p>
-      </article>
+        <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
+          <p class="flex justify-center"><TelSvg></TelSvg></p>
+          <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
+          <p
+            class="text-center text-blue-text mt-[9px] text-lg leading-[1.625rem]"
+          >
+            <a href="tel:+1884654458"> +1 884 65 44 58 </a>
+          </p>
+        </article>
 
-      <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
-        <p class="flex justify-center"><MessageLikeSvg></MessageLikeSvg></p>
-        <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
-        <div class="mt-[14px] flex gap-8 justify-center items-center">
-          <a href="https://www.instagram.com" target="_blank">
-            <InstagramSvg></InstagramSvg>
-          </a>
-          <a href="https://www.facebook.com" target="_blank">
-            <FacebookSvg></FacebookSvg>
-          </a>
-          <a href="https://www.linkedin.com" target="_blank">
-            <LinkedInSvg></LinkedInSvg>
-          </a>
-        </div>
-      </article>
+        <article class="pt-[19px] px-5 pb-8 bg-gray-200 rounded-lg">
+          <p class="flex justify-center"><MessageLikeSvg></MessageLikeSvg></p>
+          <BreakLineSvg class="w-[225px] mt-3 text-blue-300"></BreakLineSvg>
+          <div class="mt-[14px] flex gap-8 justify-center items-center">
+            <a href="https://www.instagram.com" target="_blank">
+              <InstagramSvg></InstagramSvg>
+            </a>
+            <a href="https://www.facebook.com" target="_blank">
+              <FacebookSvg></FacebookSvg>
+            </a>
+            <a href="https://www.linkedin.com" target="_blank">
+              <LinkedInSvg></LinkedInSvg>
+            </a>
+          </div>
+        </article>
+      </div>
+
+      <p
+        class="text-blue-line mt-[70px] mb-[21px] text-smleading-4 text-center"
+      >
+        Terms of Service
+        <span class="text-black font-gilroy font-normal">and</span> Privacy
+        Policy.
+      </p>
     </div>
 
-    <p class="text-blue-line mt-[70px] mb-[21px] text-smleading-4 text-center">
-      Terms of Service <span class="text-black font-gilroy font-normal">and</span> Privacy Policy.
-    </p>
+    <div
+      class="absolute bg-gray-bg blur-[58px] rounded-[190px] w-[306px] h-[306px] z-0 -bottom-[153px] -left-[151px]"
+    ></div>
   </footer>
 </template>