diff --git a/app/shortcodes/ShortcodesClient.js b/app/shortcodes/ShortcodesClient.js
index 3e4b4fa..80ee5e5 100644
--- a/app/shortcodes/ShortcodesClient.js
+++ b/app/shortcodes/ShortcodesClient.js
@@ -347,8 +347,8 @@ export default function Home() {
{/* RIGHT IMAGE / LEFT CONTENT */}
-
-

+
+

{/*
*/}
diff --git a/app/what-to-expect/page.js b/app/what-to-expect/page.js
index 6b82ae0..bf0bb36 100644
--- a/app/what-to-expect/page.js
+++ b/app/what-to-expect/page.js
@@ -27,7 +27,7 @@ export default function About() {
-

+
diff --git a/components/ContactFloat.js b/components/ContactFloat.js
index 885a9f4..9faff71 100644
--- a/components/ContactFloat.js
+++ b/components/ContactFloat.js
@@ -14,27 +14,29 @@ export default function ContactFloat() {
href: "tel:647-722-3434",
src: "/assets/images/icons/call.png",
label: "Call",
+ newTab: true, // 👈 added
},
{
action: () => setShowChat(true),
src: "/assets/images/chat.png",
label: "Chat",
},
- {
+ {
href: "https://www.instagram.com/elrapharehab/",
src: "/assets/images/insta.png",
label: "Instagram",
+ newTab: true,
},
- {
+ {
href: "https://www.facebook.com/ELRaphaRehabCenter/",
src: "/assets/images/fb.png",
- label: "Facebook",
+ label: "Facebook",
+ newTab: true,
},
];
/** Social media list shown on Share click */
const socialIcons = [
-
{
href: "https://www.instagram.com/elrapharehab/",
iconClass: "icon-4",
@@ -75,6 +77,8 @@ export default function ContactFloat() {
key={i}
href={icon.href}
aria-label={icon.label}
+ target="_blank"
+ rel="noopener noreferrer"
style={{
background: "#102548",
borderRadius: "50%",
@@ -170,8 +174,9 @@ export default function ContactFloat() {
flexDirection: "row",
gap: "15px",
zIndex: 9999,
- background: "white", padding: "8px",
- borderRadius: "50px"
+ background: "white",
+ padding: "8px",
+ borderRadius: "50px",
}}
>
{socialIcons.map((icon, i) => (
diff --git a/public/assets/css/module-css/service.css b/public/assets/css/module-css/service.css
index 2e93af6..c834b6c 100644
--- a/public/assets/css/module-css/service.css
+++ b/public/assets/css/module-css/service.css
@@ -94,6 +94,23 @@
z-index: 10;
}
+.service-block-one .inner-box .lower-content-new .icon-box-new {
+ position: absolute;
+ left: -13px;
+ bottom: 40px;
+ width: 100px;
+ height: 100px;
+ line-height: 100px;
+ text-align: center;
+ font-size: 60px;
+ color: #fff;
+ border-radius: 0px 10px 10px 0px;
+ background: #102548;
+ transition: all 500ms ease;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
+ z-index: 10;
+}
+
.service-block-one .inner-box .lower-content-new .icon-box-new {
position: absolute;
left: -13px;
@@ -129,6 +146,10 @@
bottom: 183px;
}
+.service-block-one .inner-box:hover .lower-content-new .icon-box-new {
+ bottom: 95px !important;
+}
+
.service-block-one .inner-box .lower-content-new .icon-box-new:before {
position: absolute;
content: '';
@@ -151,6 +172,17 @@
clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
+.service-block-one .inner-box .lower-content-new .icon-box-new:before {
+ position: absolute;
+ content: '';
+ background: #102548;
+ width: 12px;
+ height: 14px;
+ left: 0px;
+ bottom: -14px;
+ clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
+}
+
.service-block-one .inner-box .lower-content h3 {
position: relative;
display: block;
diff --git a/public/assets/css/module-css/solutions.css b/public/assets/css/module-css/solutions.css
index 0332719..66cec88 100644
--- a/public/assets/css/module-css/solutions.css
+++ b/public/assets/css/module-css/solutions.css
@@ -187,6 +187,12 @@
}
+.image-box .raw-image .image .raw img{
+
+ display: none !important;
+
+}
+
}
@media only screen and (max-width: 991px){