Commit 3bff5ee0 by sujata

changes update

1 parent 92810d73
...@@ -45,7 +45,7 @@ const Clientele = ({ ...@@ -45,7 +45,7 @@ const Clientele = ({
src={logo.image} src={logo.image}
alt={logo.altText} alt={logo.altText}
fill fill
className="img-fluid image image w-100" className="img-fluid image industry-logo"
/> />
</div> </div>
</SwiperSlide> </SwiperSlide>
......
...@@ -69,11 +69,11 @@ const FunctionalAreas = () => { ...@@ -69,11 +69,11 @@ const FunctionalAreas = () => {
<div className="section-title"> <div className="section-title">
<span className="sub-title">SERVICES</span> <span className="sub-title">SERVICES</span>
<Heading el="h2" heading="Functional Areas " className="h2" /> <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 Our people bring-in a blend of different skills and functional
expertise to deliver exceptional value. expertise to deliver exceptional value.
</p> </p>
</div>
<div className="row align-items-center"> <div className="row align-items-center">
{services && {services &&
......
import React from "react"; import React from "react";
import { Col, Container, Row } from "react-bootstrap"; import { Col, Container, Row } from "react-bootstrap";
import Heading from "../Heading"; import Heading from "../Heading";
const steps = [
{ const MethodMobile = ({ steps, heading, subTitle }) => {
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 = () => {
return ( return (
<> <>
<section className="method-mobile p-3 d-block d-md-none d-lg-none"> <section className="method-mobile p-3 d-block d-md-none d-lg-none">
<div className="section-title"> <div className="section-title">
<span className="sub-title">lorem demo</span> {subTitle && <span className="sub-title">{subTitle}</span>}
{heading && <Heading el="h2" heading={heading} />}
<Heading el="h2" heading="Method" />
</div> </div>
<Container> <Container>
<Row> <Row>
<div> {steps.map((step, index) => (
{steps.map((step, index) => ( <div
<div key={index}
key={index} className={`circle-container d-flex ${
className={`circle-container d-flex ${ step.align === "right" ? "circle-containertwo" : ""
step.align === "right" ? "circle-containertwo" : "" }`}
}`} >
> {step.align === "left" ? (
{step.align === "left" && ( <>
<> <Col xs={4} sm={4}>
<Col xs={4} sm={4}> <div className="circle-method">
<div className="circle-method"> <p className="circle-number">{step.stepNumber}</p>
<p className="circle-number">{step.stepNumber}</p> </div>
</div> </Col>
</Col> <Col xs={8} sm={8} className="align-self-center">
<Col xs={8} sm={8} className="align-self-center"> <div className="circle-content">
<div className="circle-content"> <h6>{step.title}</h6>
<h6>{step.title}</h6> <p>{step.description}</p>
<p>{step.description}</p> </div>
</div> </Col>
</Col> </>
</> ) : (
)} <>
<Col xs={9} sm={9} className="align-self-center">
{step.align === "right" && ( <div className="text-align-end circle-content-two">
<> <h6>{step.title}</h6>
<Col xs={9} sm={9} className="align-self-center"> <p>{step.description}</p>
<div className="text-align-end circle-content-two"> </div>
<h6>{step.title}</h6> </Col>
<p>{step.description}</p> <Col xs={3} sm={3}>
</div> <div className="circle-methodtwo">
</Col> <p className="circle-number">{step.stepNumber}</p>
<Col xs={3} sm={3} > </div>
<div className="circle-methodtwo"> </Col>
<p className="circle-number">{step.stepNumber}</p> </>
</div> )}
</Col> </div>
</> ))}
)}
</div>
))}
</div>
</Row> </Row>
</Container> </Container>
</section> </section>
...@@ -88,4 +57,11 @@ const MethodMobile = () => { ...@@ -88,4 +57,11 @@ const MethodMobile = () => {
); );
}; };
// Default props for flexibility
MethodMobile.defaultProps = {
steps: [],
heading: "Method",
subTitle: "",
};
export default MethodMobile; export default MethodMobile;
...@@ -29,8 +29,9 @@ const MethodOne = ({ ...@@ -29,8 +29,9 @@ const MethodOne = ({
<div className="section-title"> <div className="section-title">
<span className="sub-title">{sectionTitle}</span> <span className="sub-title">{sectionTitle}</span>
<Heading el="h2" heading={heading} /> <Heading el="h2" heading={heading} />
<p>{descrption}</p>
</div> </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"> <Row className="justify-content-center d-none d-sm-none d-lg-block">
<Swiper <Swiper
spaceBetween={spaceBetween} spaceBetween={spaceBetween}
......
...@@ -97,13 +97,14 @@ const BudgetPanorama = () => { ...@@ -97,13 +97,14 @@ const BudgetPanorama = () => {
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading heading={"Budget Panorama"} el="h2" /> <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 Panorama is an annual edition released soon after the Union
budget is presented by the Finance Minister of India. Budget budget is presented by the Finance Minister of India. Budget
Panorama gives a panoramic view of the recently announced budget Panorama gives a panoramic view of the recently announced budget
with the objective of educating the audience. with the objective of educating the audience.
</p> </p>
</div>
<Row className="align-items-center"> <Row className="align-items-center">
{services && {services &&
services.map((service, index) => ( services.map((service, index) => (
......
...@@ -10,9 +10,9 @@ const banners = [ ...@@ -10,9 +10,9 @@ const banners = [
{ {
imageSrc: "/images/banner/business_advisory.webp ", imageSrc: "/images/banner/business_advisory.webp ",
pageTitle: "Business Advisory ", pageTitle: "Business Advisory ",
homePageUrl: "/", homePageUrl: "/client-servicing",
homePageText: "Home", homePageText: "Client Servicing",
activePageText: "BA", activePageText: "Business Advisory ",
}, },
// Add more banners as needed // Add more banners as needed
]; ];
......
...@@ -11,13 +11,14 @@ import MethodOne from "@/components/reuseables/services/MethodOne"; ...@@ -11,13 +11,14 @@ import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo"; import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele"; import Clientele from "@/components/reuseables/Clientele";
import MethodTwoMobile from "@/components/reuseables/services/MethodMobile"; import MethodTwoMobile from "@/components/reuseables/services/MethodMobile";
import MethodMobile from "@/components/reuseables/services/MethodMobile";
const banners = [ const banners = [
{ {
imageSrc: "/images/banner/virtual_fc.webp", imageSrc: "/images/banner/virtual_fc.webp",
pageTitle: "Virtual FC & CFO Services", pageTitle: "Virtual FC & CFO Services",
homePageUrl: "/", homePageUrl: "/client-servicing",
homePageText: "Home", homePageText: "Client Servicing",
activePageText: "CFO", activePageText: "Virtual FC & CFO Services",
}, },
]; ];
const CFOData = [ const CFOData = [
...@@ -229,7 +230,7 @@ const CfoPage = () => { ...@@ -229,7 +230,7 @@ const CfoPage = () => {
<div className="ptb-100"> <div className="ptb-100">
<Clientele partners={partners} /> <Clientele partners={partners} />
</div> </div>
<MethodTwoMobile />
</> </>
); );
}; };
......
...@@ -60,12 +60,13 @@ const ClientService = () => { ...@@ -60,12 +60,13 @@ const ClientService = () => {
<div className="section-title"> <div className="section-title">
<span className="sub-title">ADVITH CONSULTING</span> <span className="sub-title">ADVITH CONSULTING</span>
<Heading el="h2" heading="What we do?" /> <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 At Advith Consulting, we harness our wealth of Knowledge and
expertise, leveraging our People to deliver exceptional Client expertise, leveraging our People to deliver exceptional Client
satisfaction. satisfaction.
</p> </p>
</div>
<div className="position-relative px-md-4 mt-md-5 mt-2"> <div className="position-relative px-md-4 mt-md-5 mt-2">
<Swiper <Swiper
spaceBetween={30} spaceBetween={30}
...@@ -133,7 +134,7 @@ const ClientService = () => { ...@@ -133,7 +134,7 @@ const ClientService = () => {
))} ))}
<Swiper pagination={{ clickable: true }} /> <Swiper pagination={{ clickable: true }} />
</Swiper> </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 /> <SwiperNav />
</div> </div>
</div> </div>
......
...@@ -11,9 +11,9 @@ const banners = [ ...@@ -11,9 +11,9 @@ const banners = [
{ {
imageSrc: "/images/banner/risk_advisory.webp", imageSrc: "/images/banner/risk_advisory.webp",
pageTitle: " Risk Advisory", pageTitle: " Risk Advisory",
homePageUrl: "/", homePageUrl: "/client-servicing",
homePageText: "Home", homePageText: "Client Servicing",
activePageText: "RA", activePageText: "Risk Advisory",
}, },
// Add more banners as needed // Add more banners as needed
]; ];
......
...@@ -12,9 +12,9 @@ const banners = [ ...@@ -12,9 +12,9 @@ const banners = [
{ {
imageSrc: "/images/banner/transaction_advisory.webp", imageSrc: "/images/banner/transaction_advisory.webp",
pageTitle: " Transaction Advisory", pageTitle: " Transaction Advisory",
homePageUrl: "/", homePageUrl: "/client-servicing",
homePageText: "Home", homePageText: "Client Servicing",
activePageText: "TA", activePageText: "Transaction Advisory",
}, },
// Add more banners as needed // Add more banners as needed
]; ];
......
...@@ -11,13 +11,13 @@ const ContactInfo = () => { ...@@ -11,13 +11,13 @@ const ContactInfo = () => {
<Row className="align-items-center"> <Row className="align-items-center">
<Col lg={6} md={12}> <Col lg={6} md={12}>
<div className="contact-content"> <div className="contact-content">
<span className="sub-title">CONTACT US</span> {/* <span className="sub-title">CONTACT US</span> */}
<Heading <Heading
el="h2" el="h2"
heading="Contact Us With Your Details & Ready To Start" heading="Contact Us"
/> />
<p> <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> </p>
<Row className="justify-content-center"> <Row className="justify-content-center">
......
...@@ -115,13 +115,15 @@ const CorpediaPage = () => { ...@@ -115,13 +115,15 @@ const CorpediaPage = () => {
<div className="corpedia-page-area pt-70 pb-100 bg-light"> <div className="corpedia-page-area pt-70 pb-100 bg-light">
<Container> <Container>
<div className="section-title"> <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, Get the scoop on India's corporate legal happenings with Corpedia,
your go-to source for updates and analysis. your go-to source for updates and analysis.
</p> </p>
</div>
<Row className="align-items-center"> <Row className="align-items-center">
{services && {services &&
services.map((service, index) => ( services.map((service, index) => (
......
...@@ -30,7 +30,7 @@ const KnowledgeData = [ ...@@ -30,7 +30,7 @@ const KnowledgeData = [
const AboutContent = () => { const AboutContent = () => {
return ( return (
<> <>
<div className="what-we-do-area ptb-100"> <div className="what-we-do-area pt-100">
<Container> <Container>
<Row className="align-items-center flex-column-reverse flex-lg-row"> <Row className="align-items-center flex-column-reverse flex-lg-row">
<Col lg={6} md={12}> <Col lg={6} md={12}>
......
...@@ -55,17 +55,18 @@ const services = [ ...@@ -55,17 +55,18 @@ const services = [
const ClientService = () => { const ClientService = () => {
return ( return (
<> <>
<div className="services-area pt-100 pb-5"> <div className="services-area pt-md-100 pb-5">
<Container> <Container>
<div className="section-title"> <div className="section-title">
<span className="sub-title">ADVITH CONSULTING</span> <span className="sub-title">ADVITH CONSULTING</span>
<Heading el="h2" heading="What we do?" /> <Heading el="h2" heading="What we do?" />
<p>
</div>
<p className="text-center">
At Advith Consulting, we harness our wealth of Knowledge and At Advith Consulting, we harness our wealth of Knowledge and
expertise, leveraging our People to deliver exceptional Client expertise, leveraging our People to deliver exceptional Client
satisfaction. satisfaction.
</p> </p>
</div>
<div className="position-relative px-md-4 mt-md-5 mt-2"> <div className="position-relative px-md-4 mt-md-5 mt-2">
<Swiper <Swiper
spaceBetween={30} spaceBetween={30}
......
...@@ -132,7 +132,7 @@ const PartnerSlider = () => { ...@@ -132,7 +132,7 @@ const PartnerSlider = () => {
))} ))}
</Swiper> </Swiper>
<div className="cust_nav"> <div className="cust_nav mt-4 mt-md-0">
<SwiperNav /> <SwiperNav />
</div> </div>
</div> </div>
......
...@@ -41,6 +41,7 @@ const Corpedia = () => { ...@@ -41,6 +41,7 @@ const Corpedia = () => {
<Row> <Row>
<Col lg={8} md={8} sm={12}> <Col lg={8} md={8} sm={12}>
<div className="text-align-left"> <div className="text-align-left">
<Heading heading={"Corpedia"} el="h2" /> <Heading heading={"Corpedia"} el="h2" />
<p className="mb-lg-5 mb-3"> <p className="mb-lg-5 mb-3">
......
...@@ -18,7 +18,7 @@ const serviceContent = [ ...@@ -18,7 +18,7 @@ const serviceContent = [
const KnowledgeContent = () => { const KnowledgeContent = () => {
return ( return (
<> <>
<div className="knowledge-area ptb-100"> <div className="knowledge-area pt-md-5 pt-0 pb-5">
<Container> <Container>
<Row className="align-items-center"> <Row className="align-items-center">
<Col lg={5} md={12}> <Col lg={5} md={12}>
......
...@@ -32,7 +32,7 @@ const AdvisoryBoard = () => { ...@@ -32,7 +32,7 @@ const AdvisoryBoard = () => {
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading el="h2" heading="Advisory Board" /> <Heading el="h2" heading="Advisory Board"/>
</div> </div>
{advisoryBoardData.map((member, index) => ( {advisoryBoardData.map((member, index) => (
<Row key={index} className="row align-items-center"> <Row key={index} className="row align-items-center">
...@@ -58,7 +58,7 @@ const AdvisoryBoard = () => { ...@@ -58,7 +58,7 @@ const AdvisoryBoard = () => {
</div> </div>
</Col> </Col>
<Col lg={7} md={7} className="order-1 order-md-2"> <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"> <div className="testimonial-content">
<p>{member.description}</p> <p>{member.description}</p>
</div> </div>
...@@ -67,7 +67,7 @@ const AdvisoryBoard = () => { ...@@ -67,7 +67,7 @@ const AdvisoryBoard = () => {
) : ( ) : (
<> <>
<Col lg={7} md={7} className="order-1 order-md-1"> <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"> <div className="testimonial-content">
{/* <span className="sub-title">{member.title}</span> */} {/* <span className="sub-title">{member.title}</span> */}
......
...@@ -225,13 +225,14 @@ const TaxWire = () => { ...@@ -225,13 +225,14 @@ const TaxWire = () => {
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading heading={"Tax Wire"} el="h2" /> <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 Navigating the complex terrain of India's tax landscape? TaxWire
is your reliable companion, serving up the latest news, is your reliable companion, serving up the latest news,
developments, and insights to help you stay informed and in the developments, and insights to help you stay informed and in the
know. know.
</p> </p>
</div>
<Row className="align-items-center"> <Row className="align-items-center">
{services && {services &&
services.map((service, index) => ( services.map((service, index) => (
......
...@@ -82,7 +82,9 @@ const Footer = () => { ...@@ -82,7 +82,9 @@ const Footer = () => {
<ul> <ul>
<li> <li>
<span>Call : </span> <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>
<li> <li>
<span>Email : </span> <span>Email : </span>
......
import nodemailer from "nodemailer"; import nodemailer from "nodemailer";
export default function (req, res) { export default function (req, res) {
// let nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({ const transporter = nodemailer.createTransport({
port: 465, host: "smtp-mail.outlook.com",
host: "smtp.gmail.com", port: 587,
secure: false,
auth: { auth: {
user: "dheeraj.realatte@gmail.com", user: "info@advithconsulting.in",
pass: "pamoocbnzfqhigdf", pass: "!nf0@2019",
}, },
secure: true,
}); });
var maillist = ["sujatalogicloop@gmail.com"];
var maillist = ["info@advithconsulting.in"];
const mailData = { const mailData = {
from: ["sujatalogicloop@gmail.com"], from: "info@advithconsulting.in",
to: maillist, to: maillist,
subject: `Advith Consulting Contact Form Leads`, subject: `Advith Consulting Contact Form Leads`,
html: ` html: `
......
import nodemailer from "nodemailer"; import nodemailer from "nodemailer";
export default function (req, res) { export default function (req, res) {
// let nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({ const transporter = nodemailer.createTransport({
port: 465, host: "smtp-mail.outlook.com",
host: "smtp.gmail.com", port: 587,
secure: false,
auth: { auth: {
user: "dheeraj.realatte@gmail.com", user: "info@advithconsulting.in",
pass: "pamoocbnzfqhigdf", pass: "!nf0@2019",
}, },
secure: true,
}); });
var maillist = ["sujatalogicloop@gmail.com"];
var maillist = ["info@advithconsulting.in"];
const mailData = { const mailData = {
from: ["sujatalogicloop@gmail.com"], from: "info@advithconsulting.in",
to: maillist, to: maillist,
subject: `Advith Consulting Service Form Leads`, subject: `Advith Consulting Service Form Leads`,
html: ` html: `
......
...@@ -7,7 +7,7 @@ const banners = [ ...@@ -7,7 +7,7 @@ const banners = [
{ {
imageSrc: "/images/banner/blog.webp", imageSrc: "/images/banner/blog.webp",
pageTitle: "Reporting on Fraudulent Activities by Auditors", pageTitle: "Reporting on Fraudulent Activities by Auditors",
homePageUrl: "/", homePageUrl: "/blog",
homePageText: "Blog", homePageText: "Blog",
activePageText: "Reporting on Fraudulent Activities by Auditors", activePageText: "Reporting on Fraudulent Activities by Auditors",
}, },
......
...@@ -6,10 +6,10 @@ import React from "react"; ...@@ -6,10 +6,10 @@ import React from "react";
const banners = [ const banners = [
{ {
imageSrc: "/images/banner/blog.webp", imageSrc: "/images/banner/blog.webp",
pageTitle: "Reporting on Fraudulent Activities by Auditors", pageTitle: "Start-up and Angel Tax",
homePageUrl: "/", homePageUrl: "/blog",
homePageText: "Blog", homePageText: "Blog",
activePageText: "Reporting on Fraudulent Activities by Auditors", activePageText: "Start-up and Angel Tax",
}, },
]; ];
const Angeltax = () => { const Angeltax = () => {
...@@ -23,7 +23,7 @@ const Angeltax = () => { ...@@ -23,7 +23,7 @@ const Angeltax = () => {
<div className="blog-details-desc"> <div className="blog-details-desc">
<div className="article-image"> <div className="article-image">
<Image <Image
src="/images/blog/blog-2.jpeg" src="/images/blog/blogs3.jpeg"
layout="fill" layout="fill"
alt="image" alt="image"
className="image-fluid image" className="image-fluid image"
......
...@@ -7,7 +7,7 @@ const banners = [ ...@@ -7,7 +7,7 @@ const banners = [
{ {
imageSrc: "/images/banner/blog.webp", imageSrc: "/images/banner/blog.webp",
pageTitle: "Tax Deducted at Source under Income Tax Act", pageTitle: "Tax Deducted at Source under Income Tax Act",
homePageUrl: "/", homePageUrl: "/blog",
homePageText: "Blog", homePageText: "Blog",
activePageText: "Tax Deducted at Source under Income Tax Act", activePageText: "Tax Deducted at Source under Income Tax Act",
}, },
......
...@@ -87,14 +87,17 @@ ...@@ -87,14 +87,17 @@
font-size: 15px; font-size: 15px;
line-height: 30px; line-height: 30px;
} }
.default-btn-one{
padding: 10px 20px 10px 20px;
}
.section-title { .section-title {
max-width: 90%; max-width: 90%;
} }
.section-title { .section-title {
padding-bottom: 20px; padding-bottom: 3px;
margin-bottom: 30px; margin-bottom: 20px;
max-width: 95%; max-width: 95%;
} }
...@@ -230,7 +233,7 @@ ...@@ -230,7 +233,7 @@
.main-banner-content h1 { .main-banner-content h1 {
font-size: 22px; font-size: 22px;
margin-bottom: 12px; margin-bottom: 12px;
line-height: 8.8vw; line-height: 8vw;
} }
.main-banner-content p { .main-banner-content p {
...@@ -619,17 +622,22 @@ ...@@ -619,17 +622,22 @@
.testimonial-content { .testimonial-content {
padding-right: 0; padding-right: 0;
text-align: center; text-align: center;
padding-left: 14px;
} }
.testimonial-content .sub-title { .testimonial-content .sub-title {
font-size: 13px; font-size: 13px;
} }
.testimonial-content h2 { .testimonial-content h2 {
font-size: 24px; font-size: 24px;
padding-bottom: 1px; padding-bottom: 1px;
}
.advisory-title{
padding-left: 14px;
} }
.testimonial-content h2::before { .testimonial-content h2::before {
right: 0; right: 0;
margin-left: auto; margin-left: auto;
...@@ -1930,6 +1938,16 @@ ...@@ -1930,6 +1938,16 @@
.cust_nav { .cust_nav {
position: unset; position: unset;
justify-content: center; 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;
} }
} }
......
...@@ -225,7 +225,7 @@ p:last-child { ...@@ -225,7 +225,7 @@ p:last-child {
max-width: 720px; max-width: 720px;
text-align: center; text-align: center;
position: relative; position: relative;
padding-bottom: 25px; padding-bottom: 15px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
margin-bottom: 40px; margin-bottom: 40px;
...@@ -4866,6 +4866,9 @@ Partner Area CSS ...@@ -4866,6 +4866,9 @@ Partner Area CSS
display: inline-block !important; display: inline-block !important;
} }
.image.industry-logo {
width: 316px !important;
}
/*================================================ /*================================================
Blog Area CSS Blog Area CSS
=================================================*/ =================================================*/
...@@ -4904,7 +4907,7 @@ Blog Area CSS ...@@ -4904,7 +4907,7 @@ Blog Area CSS
background-size: cover; background-size: cover;
} }
.single-blog-post .post-image::after { /* .single-blog-post .post-image::after {
position: absolute; position: absolute;
left: 0; left: 0;
content: ""; content: "";
...@@ -4918,7 +4921,7 @@ Blog Area CSS ...@@ -4918,7 +4921,7 @@ Blog Area CSS
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
} } */
.single-blog-post .post-content { .single-blog-post .post-content {
padding: 15px 30px 30px; padding: 15px 30px 30px;
...@@ -8034,7 +8037,7 @@ Modal CSS ...@@ -8034,7 +8037,7 @@ Modal CSS
border: 1px solid; border: 1px solid;
padding: 14px; padding: 14px;
border-radius: 50%; border-radius: 50%;
width: 20vw; width: 19vw;
background-color: var(--mainColor); background-color: var(--mainColor);
color: white !important; color: white !important;
text-align: center; text-align: center;
...@@ -8070,7 +8073,7 @@ Modal CSS ...@@ -8070,7 +8073,7 @@ Modal CSS
.circle-methodtwo { .circle-methodtwo {
border: 1px solid; border: 1px solid;
border-radius: 50%; border-radius: 50%;
width: 20vw; width: 19vw;
background-color: var(--mainColor); background-color: var(--mainColor);
color: white !important; color: white !important;
text-align: center; text-align: center;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!