Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
sujata
/
advithconsulting.io-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Registry
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 3bff5ee0
authored
2024-10-11 17:10:43 +0530
by
sujata
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
changes update
1 parent
92810d73
Show whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
119 additions
and
111 deletions
components/reuseables/Clientele.js
components/reuseables/FunctionalAreas.js
components/reuseables/services/MethodMobile.js
components/reuseables/services/MethodOne.js
container/BudgetPanorama/index.js
container/ClientServicing/Ba/BaPage.js
container/ClientServicing/CFO/CfoPage.js
container/ClientServicing/OurService.js
container/ClientServicing/RA/RaPage.js
container/ClientServicing/TA/TaPage.js
container/Contact/ContactInfo.js
container/Corpedia/CorpediaPage.js
container/Home/AboutContent.js
container/Home/ClientService.js
container/Home/PartnerSlider.js
container/Knowledge/Corpedia.js
container/Knowledge/KnowledgeContent.js
container/People/AdvisoryBoard.js
container/TaxWire/index.js
layout/Footer.js
pages/api/sendEmail.js
pages/api/sendEmailHome.js
pages/blog/detail/reporting-on-fraudulent-activities-by-auditors.js
pages/blog/detail/start-up-and-angel-tax.js
pages/blog/detail/tax-deducted-at-source-under-income-tax-act.js
styles/responsive.css
styles/styles.css
components/reuseables/Clientele.js
View file @
3bff5ee
...
...
@@ -45,7 +45,7 @@ const Clientele = ({
src
=
{
logo
.
image
}
alt
=
{
logo
.
altText
}
fill
className
=
"img-fluid image i
mage w-100
"
className
=
"img-fluid image i
ndustry-logo
"
/>
<
/div
>
<
/SwiperSlide
>
...
...
components/reuseables/FunctionalAreas.js
View file @
3bff5ee
...
...
@@ -69,11 +69,11 @@ const FunctionalAreas = () => {
<
div
className
=
"section-title"
>
<
span
className
=
"sub-title"
>
SERVICES
<
/span
>
<
Heading
el
=
"h2"
heading
=
"Functional Areas "
className
=
"h2"
/>
<
p
>
<
/div
>
<
p
className
=
"text-center"
>
Our
people
bring
-
in
a
blend
of
different
skills
and
functional
expertise
to
deliver
exceptional
value
.
<
/p
>
<
/div
>
<
div
className
=
"row align-items-center"
>
{
services
&&
...
...
components/reuseables/services/MethodMobile.js
View file @
3bff5ee
import
React
from
"react"
;
import
{
Col
,
Container
,
Row
}
from
"react-bootstrap"
;
import
Heading
from
"../Heading"
;
const
steps
=
[
{
stepNumber
:
"01"
,
title
:
"Step 1 - Discovery"
,
description
:
"lorem demo text lorem demo text"
,
align
:
"left"
,
// This will determine the layout
},
{
stepNumber
:
"02"
,
title
:
"Step 2 - Analysis"
,
description
:
"lorem demo text lorem demo text"
,
align
:
"right"
,
},
{
stepNumber
:
"03"
,
title
:
"Step 3 - Implementation"
,
description
:
"lorem demo text lorem demo text"
,
align
:
"left"
,
},
{
stepNumber
:
"04"
,
title
:
"Step 4 - Analysis"
,
description
:
"lorem demo text lorem demo text"
,
align
:
"right"
,
},
// Add more steps as needed
];
const
MethodMobile
=
()
=>
{
const
MethodMobile
=
({
steps
,
heading
,
subTitle
})
=>
{
return
(
<>
<
section
className
=
"method-mobile p-3 d-block d-md-none d-lg-none"
>
<
div
className
=
"section-title"
>
<
span
className
=
"sub-title"
>
lorem
demo
<
/span
>
<
Heading
el
=
"h2"
heading
=
"Method"
/>
{
subTitle
&&
<
span
className
=
"sub-title"
>
{
subTitle
}
<
/span>
}
{
heading
&&
<
Heading
el
=
"h2"
heading
=
{
heading
}
/>
}
<
/div
>
<
Container
>
<
Row
>
<
div
>
{
steps
.
map
((
step
,
index
)
=>
(
<
div
key
=
{
index
}
...
...
@@ -47,7 +19,7 @@ const MethodMobile = () => {
step
.
align
===
"right"
?
"circle-containertwo"
:
""
}
`}
>
{step.align === "left" &&
(
{step.align === "left" ?
(
<>
<Col xs={4} sm={4}>
<div className="circle-method">
...
...
@@ -61,9 +33,7 @@ const MethodMobile = () => {
</div>
</Col>
</>
)}
{step.align === "right" && (
) : (
<>
<Col xs={9} sm={9} className="align-self-center">
<div className="text-align-end circle-content-two">
...
...
@@ -71,7 +41,7 @@ const MethodMobile = () => {
<p>{step.description}</p>
</div>
</Col>
<Col xs={3} sm={3}
>
<Col xs={3} sm={3}
>
<div className="circle-methodtwo">
<p className="circle-number">{step.stepNumber}</p>
</div>
...
...
@@ -80,7 +50,6 @@ const MethodMobile = () => {
)}
</div>
))}
</div>
</Row>
</Container>
</section>
...
...
@@ -88,4 +57,11 @@ const MethodMobile = () => {
);
};
// Default props for flexibility
MethodMobile.defaultProps = {
steps: [],
heading: "Method",
subTitle: "",
};
export default MethodMobile;
components/reuseables/services/MethodOne.js
View file @
3bff5ee
...
...
@@ -29,8 +29,9 @@ const MethodOne = ({
<
div
className
=
"section-title"
>
<
span
className
=
"sub-title"
>
{
sectionTitle
}
<
/span
>
<
Heading
el
=
"h2"
heading
=
{
heading
}
/
>
<
p
>
{
descrption
}
<
/p
>
<
/div
>
<
p
className
=
" text-center mb-4 mb-lg-5"
>
{
descrption
}
<
/p
>
<
Row
className
=
"justify-content-center d-none d-sm-none d-lg-block"
>
<
Swiper
spaceBetween
=
{
spaceBetween
}
...
...
container/BudgetPanorama/index.js
View file @
3bff5ee
...
...
@@ -97,13 +97,14 @@ const BudgetPanorama = () => {
<
Container
>
<
div
className
=
"section-title"
>
<
Heading
heading
=
{
"Budget Panorama"
}
el
=
"h2"
/>
<
p
>
<
/div
>
<
p
className
=
"text-center mb-3 mb-lg-5"
>
Budget
Panorama
is
an
annual
edition
released
soon
after
the
Union
budget
is
presented
by
the
Finance
Minister
of
India
.
Budget
Panorama
gives
a
panoramic
view
of
the
recently
announced
budget
with
the
objective
of
educating
the
audience
.
<
/p
>
<
/div
>
<
Row
className
=
"align-items-center"
>
{
services
&&
services
.
map
((
service
,
index
)
=>
(
...
...
container/ClientServicing/Ba/BaPage.js
View file @
3bff5ee
...
...
@@ -10,9 +10,9 @@ const banners = [
{
imageSrc
:
"/images/banner/business_advisory.webp "
,
pageTitle
:
"Business Advisory "
,
homePageUrl
:
"/"
,
homePageText
:
"
Home
"
,
activePageText
:
"B
A
"
,
homePageUrl
:
"/
client-servicing
"
,
homePageText
:
"
Client Servicing
"
,
activePageText
:
"B
usiness Advisory
"
,
},
// Add more banners as needed
];
...
...
container/ClientServicing/CFO/CfoPage.js
View file @
3bff5ee
...
...
@@ -11,13 +11,14 @@ import MethodOne from "@/components/reuseables/services/MethodOne";
import
MethodTwoSection
from
"@/components/reuseables/services/MethodTwo"
;
import
Clientele
from
"@/components/reuseables/Clientele"
;
import
MethodTwoMobile
from
"@/components/reuseables/services/MethodMobile"
;
import
MethodMobile
from
"@/components/reuseables/services/MethodMobile"
;
const
banners
=
[
{
imageSrc
:
"/images/banner/virtual_fc.webp"
,
pageTitle
:
"Virtual FC & CFO Services"
,
homePageUrl
:
"/"
,
homePageText
:
"
Home
"
,
activePageText
:
"
CFO
"
,
homePageUrl
:
"/
client-servicing
"
,
homePageText
:
"
Client Servicing
"
,
activePageText
:
"
Virtual FC & CFO Services
"
,
},
];
const
CFOData
=
[
...
...
@@ -229,7 +230,7 @@ const CfoPage = () => {
<
div
className
=
"ptb-100"
>
<
Clientele
partners
=
{
partners
}
/
>
<
/div
>
<
MethodTwoMobile
/>
<
/
>
);
};
...
...
container/ClientServicing/OurService.js
View file @
3bff5ee
...
...
@@ -60,12 +60,13 @@ const ClientService = () => {
<
div
className
=
"section-title"
>
<
span
className
=
"sub-title"
>
ADVITH
CONSULTING
<
/span
>
<
Heading
el
=
"h2"
heading
=
"What we do?"
/>
<
p
>
<
/div
>
<
p
className
=
"text-center mb-4 mb-lg-5"
>
At
Advith
Consulting
,
we
harness
our
wealth
of
Knowledge
and
expertise
,
leveraging
our
People
to
deliver
exceptional
Client
satisfaction
.
<
/p
>
<
/div
>
<
div
className
=
"position-relative px-md-4 mt-md-5 mt-2"
>
<
Swiper
spaceBetween
=
{
30
}
...
...
@@ -133,7 +134,7 @@ const ClientService = () => {
))}
<
Swiper
pagination
=
{{
clickable
:
true
}}
/
>
<
/Swiper
>
<
div
className
=
"cust_nav swiper-nav text-center mt-md-4 mt-
2
"
>
<
div
className
=
"cust_nav swiper-nav text-center mt-md-4 mt-
0
"
>
<
SwiperNav
/>
<
/div
>
<
/div
>
...
...
container/ClientServicing/RA/RaPage.js
View file @
3bff5ee
...
...
@@ -11,9 +11,9 @@ const banners = [
{
imageSrc
:
"/images/banner/risk_advisory.webp"
,
pageTitle
:
" Risk Advisory"
,
homePageUrl
:
"/"
,
homePageText
:
"
Home
"
,
activePageText
:
"R
A
"
,
homePageUrl
:
"/
client-servicing
"
,
homePageText
:
"
Client Servicing
"
,
activePageText
:
"R
isk Advisory
"
,
},
// Add more banners as needed
];
...
...
container/ClientServicing/TA/TaPage.js
View file @
3bff5ee
...
...
@@ -12,9 +12,9 @@ const banners = [
{
imageSrc
:
"/images/banner/transaction_advisory.webp"
,
pageTitle
:
" Transaction Advisory"
,
homePageUrl
:
"/"
,
homePageText
:
"
Home
"
,
activePageText
:
"T
A
"
,
homePageUrl
:
"/
client-servicing
"
,
homePageText
:
"
Client Servicing
"
,
activePageText
:
"T
ransaction Advisory
"
,
},
// Add more banners as needed
];
...
...
container/Contact/ContactInfo.js
View file @
3bff5ee
...
...
@@ -11,13 +11,13 @@ const ContactInfo = () => {
<
Row
className
=
"align-items-center"
>
<
Col
lg
=
{
6
}
md
=
{
12
}
>
<
div
className
=
"contact-content"
>
<
span
className
=
"sub-title"
>
CONTACT
US
<
/span
>
{
/* <span className="sub-title">CONTACT US</span> */
}
<
Heading
el
=
"h2"
heading
=
"Contact Us
With Your Details & Ready To Start
"
heading
=
"Contact Us"
/>
<
p
>
Reach
out
to
Advith
Consulting
today
to
explore
our
range
of
services
and
how
we
can
help
you
achieve
your
business
objectives
with
expertise
and
efficiency
.
Let
's get ready to Sail Together: Provide us with your Contact Details & we'
ll
make
sure
that
you
Kick
off
in
no
time
<
/p
>
<
Row
className
=
"justify-content-center"
>
...
...
container/Corpedia/CorpediaPage.js
View file @
3bff5ee
...
...
@@ -115,13 +115,15 @@ const CorpediaPage = () => {
<
div
className
=
"corpedia-page-area pt-70 pb-100 bg-light"
>
<
Container
>
<
div
className
=
"section-title"
>
<
Heading
heading
=
{
"Corpedia"
}
el
=
"h2"
/>
<
p
>
<
Heading
heading
=
{
"Corpedia"
}
className
=
"mb-0"
/>
<
/div
>
<
p
className
=
"text-center mb-3 mb-lg-5"
>
Get
the
scoop
on
India
'
s
corporate
legal
happenings
with
Corpedia
,
your
go
-
to
source
for
updates
and
analysis
.
<
/p
>
<
/div
>
<
Row
className
=
"align-items-center"
>
{
services
&&
services
.
map
((
service
,
index
)
=>
(
...
...
container/Home/AboutContent.js
View file @
3bff5ee
...
...
@@ -30,7 +30,7 @@ const KnowledgeData = [
const
AboutContent
=
()
=>
{
return
(
<>
<
div
className
=
"what-we-do-area pt
b
-100"
>
<
div
className
=
"what-we-do-area pt-100"
>
<
Container
>
<
Row
className
=
"align-items-center flex-column-reverse flex-lg-row"
>
<
Col
lg
=
{
6
}
md
=
{
12
}
>
...
...
container/Home/ClientService.js
View file @
3bff5ee
...
...
@@ -55,17 +55,18 @@ const services = [
const
ClientService
=
()
=>
{
return
(
<>
<
div
className
=
"services-area pt-100 pb-5"
>
<
div
className
=
"services-area pt-
md-
100 pb-5"
>
<
Container
>
<
div
className
=
"section-title"
>
<
span
className
=
"sub-title"
>
ADVITH
CONSULTING
<
/span
>
<
Heading
el
=
"h2"
heading
=
"What we do?"
/>
<
p
>
<
/div
>
<
p
className
=
"text-center"
>
At
Advith
Consulting
,
we
harness
our
wealth
of
Knowledge
and
expertise
,
leveraging
our
People
to
deliver
exceptional
Client
satisfaction
.
<
/p
>
<
/div
>
<
div
className
=
"position-relative px-md-4 mt-md-5 mt-2"
>
<
Swiper
spaceBetween
=
{
30
}
...
...
container/Home/PartnerSlider.js
View file @
3bff5ee
...
...
@@ -132,7 +132,7 @@ const PartnerSlider = () => {
))}
<
/Swiper
>
<
div
className
=
"cust_nav"
>
<
div
className
=
"cust_nav
mt-4 mt-md-0
"
>
<
SwiperNav
/>
<
/div
>
<
/div
>
...
...
container/Knowledge/Corpedia.js
View file @
3bff5ee
...
...
@@ -41,6 +41,7 @@ const Corpedia = () => {
<
Row
>
<
Col
lg
=
{
8
}
md
=
{
8
}
sm
=
{
12
}
>
<
div
className
=
"text-align-left"
>
<
Heading
heading
=
{
"Corpedia"
}
el
=
"h2"
/>
<
p
className
=
"mb-lg-5 mb-3"
>
...
...
container/Knowledge/KnowledgeContent.js
View file @
3bff5ee
...
...
@@ -18,7 +18,7 @@ const serviceContent = [
const
KnowledgeContent
=
()
=>
{
return
(
<>
<
div
className
=
"knowledge-area pt
b-100
"
>
<
div
className
=
"knowledge-area pt
-md-5 pt-0 pb-5
"
>
<
Container
>
<
Row
className
=
"align-items-center"
>
<
Col
lg
=
{
5
}
md
=
{
12
}
>
...
...
container/People/AdvisoryBoard.js
View file @
3bff5ee
...
...
@@ -32,7 +32,7 @@ const AdvisoryBoard = () => {
<
Container
>
<
div
className
=
"section-title"
>
<
Heading
el
=
"h2"
heading
=
"Advisory Board"
/>
<
Heading
el
=
"h2"
heading
=
"Advisory Board"
/>
<
/div
>
{
advisoryBoardData
.
map
((
member
,
index
)
=>
(
<
Row
key
=
{
index
}
className
=
"row align-items-center"
>
...
...
@@ -58,7 +58,7 @@ const AdvisoryBoard = () => {
<
/div
>
<
/Col
>
<
Col
lg
=
{
7
}
md
=
{
7
}
className
=
"order-1 order-md-2"
>
<
Heading
el
=
"h2"
heading
=
{
member
.
name
}
/
>
<
Heading
el
=
"h2"
heading
=
{
member
.
name
}
className
=
"advisory-title"
/>
<
div
className
=
"testimonial-content"
>
<
p
>
{
member
.
description
}
<
/p
>
<
/div
>
...
...
@@ -67,7 +67,7 @@ const AdvisoryBoard = () => {
)
:
(
<>
<
Col
lg
=
{
7
}
md
=
{
7
}
className
=
"order-1 order-md-1"
>
<
Heading
el
=
"h2"
heading
=
{
member
.
name
}
/
>
<
Heading
el
=
"h2"
heading
=
{
member
.
name
}
className
=
"advisory-title"
/>
<
div
className
=
"testimonial-content"
>
{
/* <span className="sub-title">{member.title}</span> */
}
...
...
container/TaxWire/index.js
View file @
3bff5ee
...
...
@@ -225,13 +225,14 @@ const TaxWire = () => {
<
Container
>
<
div
className
=
"section-title"
>
<
Heading
heading
=
{
"Tax Wire"
}
el
=
"h2"
/>
<
p
>
<
/div
>
<
p
className
=
"text-center mb-3 mb-lg-5 "
>
Navigating
the
complex
terrain
of
India
'
s
tax
landscape
?
TaxWire
is
your
reliable
companion
,
serving
up
the
latest
news
,
developments
,
and
insights
to
help
you
stay
informed
and
in
the
know
.
<
/p
>
<
/div
>
<
Row
className
=
"align-items-center"
>
{
services
&&
services
.
map
((
service
,
index
)
=>
(
...
...
layout/Footer.js
View file @
3bff5ee
...
...
@@ -82,7 +82,9 @@ const Footer = () => {
<
ul
>
<
li
>
<
span
>
Call
:
<
/span
>
<
a
href
=
"tel:+91-6364133111"
>+
91
-
6364133111
<
/a
>
<
a
href
=
"tel:+91-6364133111"
>+
91
-
6364133111
<
/a> <span> | </
span
>
<
a
href
=
"tel:08026719484"
>
080
-
2671
9484
<
/a
>
<
/li
>
<
li
>
<
span
>
Email
:
<
/span
>
...
...
pages/api/sendEmail.js
View file @
3bff5ee
import
nodemailer
from
"nodemailer"
;
export
default
function
(
req
,
res
)
{
// let nodemailer = require("nodemailer");
const
transporter
=
nodemailer
.
createTransport
({
port
:
465
,
host
:
"smtp.gmail.com"
,
host
:
"smtp-mail.outlook.com"
,
port
:
587
,
secure
:
false
,
auth
:
{
user
:
"
dheeraj.realatte@gmail.com"
,
pass
:
"
pamoocbnzfqhigdf"
,
user
:
"
info@advithconsulting.in"
,
pass
:
"
!nf0@2019"
,
},
secure
:
true
,
});
var
maillist
=
[
"sujatalogicloop@gmail.com"
];
var
maillist
=
[
"info@advithconsulting.in"
];
const
mailData
=
{
from
:
[
"sujatalogicloop@gmail.com"
],
from
:
"info@advithconsulting.in"
,
to
:
maillist
,
subject
:
`Advith Consulting Contact Form Leads`
,
html
:
`
...
...
pages/api/sendEmailHome.js
View file @
3bff5ee
import
nodemailer
from
"nodemailer"
;
export
default
function
(
req
,
res
)
{
// let nodemailer = require("nodemailer");
const
transporter
=
nodemailer
.
createTransport
({
port
:
465
,
host
:
"smtp.gmail.com"
,
host
:
"smtp-mail.outlook.com"
,
port
:
587
,
secure
:
false
,
auth
:
{
user
:
"
dheeraj.realatte@gmail.com"
,
pass
:
"
pamoocbnzfqhigdf"
,
user
:
"
info@advithconsulting.in"
,
pass
:
"
!nf0@2019"
,
},
secure
:
true
,
});
var
maillist
=
[
"sujatalogicloop@gmail.com"
];
var
maillist
=
[
"info@advithconsulting.in"
];
const
mailData
=
{
from
:
[
"sujatalogicloop@gmail.com"
],
from
:
"info@advithconsulting.in"
,
to
:
maillist
,
subject
:
`Advith Consulting Service Form Leads`
,
html
:
`
...
...
pages/blog/detail/reporting-on-fraudulent-activities-by-auditors.js
View file @
3bff5ee
...
...
@@ -7,7 +7,7 @@ const banners = [
{
imageSrc
:
"/images/banner/blog.webp"
,
pageTitle
:
"Reporting on Fraudulent Activities by Auditors"
,
homePageUrl
:
"/"
,
homePageUrl
:
"/
blog
"
,
homePageText
:
"Blog"
,
activePageText
:
"Reporting on Fraudulent Activities by Auditors"
,
},
...
...
pages/blog/detail/start-up-and-angel-tax.js
View file @
3bff5ee
...
...
@@ -6,10 +6,10 @@ import React from "react";
const
banners
=
[
{
imageSrc
:
"/images/banner/blog.webp"
,
pageTitle
:
"
Reporting on Fraudulent Activities by Auditors
"
,
homePageUrl
:
"/"
,
pageTitle
:
"
Start-up and Angel Tax
"
,
homePageUrl
:
"/
blog
"
,
homePageText
:
"Blog"
,
activePageText
:
"
Reporting on Fraudulent Activities by Auditors
"
,
activePageText
:
"
Start-up and Angel Tax
"
,
},
];
const
Angeltax
=
()
=>
{
...
...
@@ -23,7 +23,7 @@ const Angeltax = () => {
<
div
className
=
"blog-details-desc"
>
<
div
className
=
"article-image"
>
<
Image
src
=
"/images/blog/blog
-2
.jpeg"
src
=
"/images/blog/blog
s3
.jpeg"
layout
=
"fill"
alt
=
"image"
className
=
"image-fluid image"
...
...
pages/blog/detail/tax-deducted-at-source-under-income-tax-act.js
View file @
3bff5ee
...
...
@@ -7,7 +7,7 @@ const banners = [
{
imageSrc
:
"/images/banner/blog.webp"
,
pageTitle
:
"Tax Deducted at Source under Income Tax Act"
,
homePageUrl
:
"/"
,
homePageUrl
:
"/
blog
"
,
homePageText
:
"Blog"
,
activePageText
:
"Tax Deducted at Source under Income Tax Act"
,
},
...
...
styles/responsive.css
View file @
3bff5ee
...
...
@@ -87,14 +87,17 @@
font-size
:
15px
;
line-height
:
30px
;
}
.default-btn-one
{
padding
:
10px
20px
10px
20px
;
}
.section-title
{
max-width
:
90%
;
}
.section-title
{
padding-bottom
:
20
px
;
margin-bottom
:
3
0px
;
padding-bottom
:
3
px
;
margin-bottom
:
2
0px
;
max-width
:
95%
;
}
...
...
@@ -230,7 +233,7 @@
.main-banner-content
h1
{
font-size
:
22px
;
margin-bottom
:
12px
;
line-height
:
8
.8
vw
;
line-height
:
8vw
;
}
.main-banner-content
p
{
...
...
@@ -619,17 +622,22 @@
.testimonial-content
{
padding-right
:
0
;
text-align
:
center
;
padding-left
:
14px
;
}
.testimonial-content
.sub-title
{
font-size
:
13px
;
}
.testimonial-content
h2
{
font-size
:
24px
;
padding-bottom
:
1px
;
}
}
.advisory-title
{
padding-left
:
14px
;
}
.testimonial-content
h2
::before
{
right
:
0
;
margin-left
:
auto
;
...
...
@@ -1930,6 +1938,16 @@
.cust_nav
{
position
:
unset
;
justify-content
:
center
;
/* padding-top: 30px; */
}
.default-btn-two
{
padding
:
12px
50px
11px
17px
;
font-size
:
13px
;
}
.default-btn-two
i
{
width
:
30px
;
height
:
31px
;
line-height
:
31px
;
}
}
...
...
styles/styles.css
View file @
3bff5ee
...
...
@@ -225,7 +225,7 @@ p:last-child {
max-width
:
720px
;
text-align
:
center
;
position
:
relative
;
padding-bottom
:
2
5px
;
padding-bottom
:
1
5px
;
margin-left
:
auto
;
margin-right
:
auto
;
margin-bottom
:
40px
;
...
...
@@ -4866,6 +4866,9 @@ Partner Area CSS
display
:
inline-block
!important
;
}
.image.industry-logo
{
width
:
316px
!important
;
}
/*================================================
Blog Area CSS
=================================================*/
...
...
@@ -4904,7 +4907,7 @@ Blog Area CSS
background-size
:
cover
;
}
.single-blog-post
.post-image
::after
{
/*
.single-blog-post .post-image::after {
position: absolute;
left: 0;
content: "";
...
...
@@ -4918,7 +4921,7 @@ Blog Area CSS
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
}
*/
.single-blog-post
.post-content
{
padding
:
15px
30px
30px
;
...
...
@@ -8034,7 +8037,7 @@ Modal CSS
border
:
1px
solid
;
padding
:
14px
;
border-radius
:
50%
;
width
:
20
vw
;
width
:
19
vw
;
background-color
:
var
(
--mainColor
);
color
:
white
!important
;
text-align
:
center
;
...
...
@@ -8070,7 +8073,7 @@ Modal CSS
.circle-methodtwo
{
border
:
1px
solid
;
border-radius
:
50%
;
width
:
20
vw
;
width
:
19
vw
;
background-color
:
var
(
--mainColor
);
color
:
white
!important
;
text-align
:
center
;
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment