@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
	font-family: bebaskai;
	src: url(../fonts/BebasKai.ttf);
}

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	background: #f7f9f8;
	overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--gary-color: #727272;
	--lightgary-color: #b2b9bd;
	--theme-color: #0f644d;
	--primary-color: #93292d;
}

p {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
	color: #313131;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

section {
	padding: 5rem 0;
}

/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: var(--black);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	margin-left: 2px;
	margin-top: 2px;
	width: 7px;
	height: 7px;
	z-index: 10000001;
	background-color: var(--primary);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--primary);
	opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
	background: var(--theme-color);
	font-size: 16px;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	padding: 20px 70px;
	border-radius: 10px 20px 10px 20px;
	line-height: normal;
}

.themeBtn:hover {
	color: var(--white);
}

.themeBtn.borderBtn {
	background: transparent;
	border: 1px solid #fff;
	padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
}

/* mouse animation css  */

/* navigation css */

.navbar-nav {
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 4rem;
}

.navbar-nav .nav-item .nav-link {
	font-size: 20px;
	color: var(--black);
	text-transform: capitalize;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 0;
}

.navbar-nav .nav-item.active .nav-link {
	color: var(--theme-color);
	background-color: #d3e2dd;
	padding: 10px 15px;
	border-radius: 20px;
}

.navbar-collapse {
	flex-direction: column;
	align-items: end;
}

.header-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.callBtn {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.callBtn i {
	width: 65px;
	height: 65px;
	border-radius: 100%;
	background-color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-45deg);
	font-size: 20px;
	color: var(--white);
}

.callBtn span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--black);
}

.header-btn .themeBtn {
	border-radius: 100px;
}

header {
	padding: 1rem 100px;
	position: relative;
}

header::after {
	content: "";
	width: 80%;
	height: 100%;
	background-color: #ebf1ef;
	position: absolute;
	top: 0;
	right: -10%;
	transform: skewX(-25deg);
	z-index: -1;
}

/* navigation css */

/* slider css */

.mainSlider {
	height: calc(100vh - 20vh);
	position: relative;
	z-index: 1;
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: bottom center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 50px;
}

.homeSlider.swiper-container .swiper-button-next {
	width: 65px;
	height: 65px;
	background: #fdfdfd;
	right: 0.5%;
	color: #000;
	border-radius: 100%;
	left: unset;
	bottom: 5%;
	top: unset;
}

.homeSlider.swiper-container .swiper-button-next * {
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.homeSlider.swiper-container .swiper-button-prev {
	width: 65px;
	height: 65px;
	background: #fdfdfd;
	right: 5%;
	color: #000;
	border-radius: 100%;
	left: unset;
	bottom: 5%;
	top: unset;
}

.homeSlider .swiper-button:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.mainSlider h2 {
	margin: 0 0 0.5rem;
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.homeSlider .swiper-button-prev:after,
.homeSlider .swiper-rtl .swiper-button-next:after {
	display: none;
}

.headingOne {
	font-size: 34px;
	color: var(--white);
	font-weight: 400;
	text-transform: capitalize;
}

.headingTwo {
	font-size: 78px;
	color: var(--white);
	font-weight: 700;
	text-transform: capitalize;
}

.headingThre {
	font-size: 34px;
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.topLogo {
	padding: 10px 0;
}

.topLogo .clrBtn {
	background: var(--primary-color);
}

.topLogo .d-flex {
	justify-content: flex-end;
	gap: 1rem;
}

.sliderSocial {
	position: absolute;
	left: 4rem;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 11;
	flex-direction: column;
	gap: 2rem;
}

.sliderSocial li a {
	font-size: 1.2rem;
	color: var(--white);
}

.slideContent .themeBtn {
	background-color: var(--black);
	border-radius: 100px;
}

.homeSlider .slide-inner {
	position: relative;
}

.b1 {
	position: absolute;
	bottom: 0;
	left: 5%;
}

.social-content {
	position: absolute;
	top: 45%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.social-content h6 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	writing-mode: vertical-rl;
	margin: 0;
	font-style: italic;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	flex-direction: column;
}

.social-links li a i {
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-links li a i:hover {
	background-color: var(--black);
}

/* slider css */

.sub-hd {
	font-size: 30px;
	font-weight: 600;
	color: #313131;
}

.primary-hd {
	font-size: 72px;
	font-weight: 700;
	color: var(--theme-color);
	text-transform: capitalize;
}

.primary-hd span {
	color: var(--black);
}

.third-hd {
	font-size: 32px;
	font-weight: 600;
	color: var(--theme-color);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.about-sec {
	position: relative;
}

.about-img {
	position: relative;
}

.about-img-btn {
	width: 155px;
	height: 155px;
	border-radius: 100%;
	border: 4px solid #f7f9f8;
	background-color: var(--theme-color);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 20%;
	left: 0;
	font-size: 50px;
	z-index: 1;
}

.a1 {
	position: absolute;
	bottom: 0;
	left: 0;
}

.a2 {
	position: absolute;
	bottom: 10%;
	right: 0;
}

.a1 img {
	width: 10vw;
}

.a2 img {
	width: 15vw;
}

.btn-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.call-btn2 {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--black);
}

.call-btn2 span {
	font-size: 17px;
}

.call-btn2 span h6 {
	font-size: 30px;
	font-weight: 600;
}

.about-content p {
	width: 80%;
}

.what-we-offer-sec {
	position: relative;
}

.marquee .track .content {
	font-size: 285px;
	color: #e9f0ee;
	font-weight: 700;
	text-transform: uppercase;
	font-family: bebaskai;
	letter-spacing: 5px;
}

.what-we-offer-content .primary-hd {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.marquee {
	position: absolute;
	width: 100vw;
	max-width: 100%;
	height: 450px;
	overflow-x: hidden;
	top: 0;
}

.track {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 80s linear infinite;
	top: 0;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.what-we-offer-box-content h3 {
	font-size: 35px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.3rem;
	text-transform: capitalize;
	margin-top: 1.2rem;
}

.what-we-offer-box-content p {
	font-size: 18px;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.what-we-offer-box-content a {
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	text-transform: capitalize;
}

.offerSlider {
	margin-left: 160px;
}

.what-we-offer-box-img img {
	width: 100%;
	object-fit: cover;
}

.offerSlider .swiper-wrapper .swiper-slide:nth-child(even) {
	transform: translateY(60px);
}

.what-we-offer-btn .themeBtn {
	border-radius: 100px;
}

.bookeeping-sec {
	background-image: url(../images/bg3.png);
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 2rem 0;
}

.bookeeping-img {
	position: relative;
	margin: -4rem 0 -2rem;
}

.bookeeping1 {
	position: absolute;
	top: -30px;
	left: 65px;
	z-index: 1;
}

.bookeeping2 {
	position: absolute;
	bottom: -30%;
	right: 5%;
}

.bookeeping-content .themeBtn {
	background-color: #1a1b1d;
}

.testimonial-sec {
	background-image: url(../images/bg4.png);
	background-size: cover;
	background-position: center;
}

.testimonial-box h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 1rem;
	text-transform: capitalize;
}

.testimonial-box span i {
	color: #f7c029;
	padding: 0 1px;
}

.testimonial-box h3,
.testimonial-box p,
.testimonial-box span {
	display: none;
}

.testiSlider .swiper-wrapper .swiper-slide-active .testimonial-box h3,
.testiSlider .swiper-wrapper .swiper-slide-active .testimonial-box p,
.testiSlider .swiper-wrapper .swiper-slide-active .testimonial-box span {
	display: block;
}

.testiSlider .swiper-wrapper .swiper-slide-active .testimonial-box-img {
	transform: scale(1.5);
	margin-bottom: 2rem;
	margin-top: 0;
}

figure.testimonial-box-img {
	margin-top: 1rem;
}

.testiSlider .swiper-button {
	position: absolute;
	top: 70%;
	transform: translateY(-70%);
	border-radius: 100%;
	border: 3px solid #d3e7ed;
	background-color: #f7f9f8;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	transition: all 0.4s;
	cursor: pointer;
	z-index: 99;
}

.testiSlider .swiper-button:hover {
	background-color: #c7d9d4;
	border-color: #c7d9d4;
}

.custom-button-next {
	right: 20%;
}

.custom-button-prev {
	left: 20%;
	justify-content: flex-end;
}

.custom-button-next img {
	margin-left: -15px;
}

.custom-button-prev img {
	margin-right: -15px;
}

.testiSlider {
	padding-top: 2rem;
}

.testimonial-sec {
	position: relative;
}

.tax-img {
	position: absolute;
	left: 1%;
	bottom: 0;
}

.video-sec {
	position: relative;
}

.video-box {
	position: relative;
}

.video-box-btn {
	width: 150px;
	height: 150px;
	border-radius: 100%;
	border: 4px solid var(--white);
	background-color: var(--theme-color);
	color: var(--white);
	font-size: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-box video,
.video-box video[poster] {
	max-width: 100%;
	width: 100%;
	height: auto;
	transition: all 0.4s;
}

.videoSlider .swiper-wrapper .swiper-slide-active .video-box video {
	transform: scale(1.1);
}

.videoSlider {
	padding: 2rem 0;
}

.video-sec .marquee {
	top: -80px;
}

.blog-box-img {
	position: relative;
	z-index: 2;
}

.blog-box-img img {
	width: 100%;
}

.blog-box-img span {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 13px 15px 20px;
	position: absolute;
	bottom: -30px;
	left: 15px;
	perspective: 10em;
	z-index: 1;
	width: max-content;
}

.blog-box-img span::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--theme-color);
	border-radius: 10px;
	transform: rotateY(20deg);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.blog-box-img span small {
	font-size: 19px;
	color: var(--white);
	line-height: 1.1;
}

.blog-box-content {
	padding: 210px 20px 100px;
	position: relative;
	margin-top: -160px;
	perspective: 10em;
	z-index: 1;
}

.blog-box {
	perspective: 100px;
}

.blog-box-content::before {
	content: "";
	width: 108%;
	height: 100%;
	background-color: var(--white);
	border-radius: 10px;
	transform: rotateY(4deg) translateX(6px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.blog-box-content h4 {
	font-size: 25px;
	font-weight: 700;
	color: #313131;
	margin-bottom: 1rem;
}

.blog-box-content p {
	font-size: 20px;
	color: #313131;
}

.blogSlider {
	padding-bottom: 2rem;
	margin-left: 160px;
	padding-left: 1rem;
}

.contact-card {
	background-image: url(../images/bg5.png);
	background-size: contain;
	background-position: center;
	padding-bottom: 0;
	background-repeat: no-repeat;
}

.contact {
	background-image: url(../images/bg5.png);
	background-size: contain;
	background-position: center;
	padding-bottom: 0;
	background-repeat: no-repeat;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	background-color: var(--white);
	border: 1px solid #bfbfbf;
	padding: 20px 25px;
	color: var(--black);
	font-size: 20px;
	border-radius: 10px;
	margin: 10px 0;
}

.contact-btn .themeBtn {
	border-radius: 100px;
	border: none;
}

footer {
	background-image: url(../images/footer-bg.png);
	background-size: cover;
	background-position: top left;
	padding: 200px 0 30px;
	background-color: #f7f9f8;
}

.footer-menu {
	display: flex;
	gap: 100px;
	padding: 30px 0;
	border-top: 1px solid #5d5c5c;
	border-bottom: 1px solid #5d5c5c;
	margin: 2rem 0;
}

.footer-menu li a {
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 2px;
	transition: all 0.4s;
}

.footer-menu li a:hover {
	color: var(--theme-color);
}

.copyright-content p {
	font-size: 18px;
	color: #fffdfd;
}

.copyright-content p span {
	font-weight: 700;
}

.footer-social-links {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}

.footer-social-links li a i {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s;
}

.footer-social-links li a i:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

.quickList h2 {
	font-size: 32px;
	font-weight: 500;
	color: #fdfdfd;
	margin-bottom: 1rem;
}

.calFoter {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.calFoter li {
	display: flex;
	gap: 0.5rem;
}

.calFoter li:first-child {
	width: 100%;
}

.calFoter li a,
.calFoter li span {
	font-size: 18px;
	color: #fdfdfd;
	transition: all 0.4s;
}

.calFoter li a:hover,
.calFoter li span:hover {
	color: var(--theme-color);
}

.calFoter li i {
	color: #fdfdfd;
	margin-top: 6px;
}

.map-location iframe {
	border-radius: 20px;
}

.slideContent.slideOne {
	margin-bottom: 100px;
}

.inner-banner {
	background-size: cover;
	background-position: center;
	padding: 15rem 0;
}

.inner-banner-content h1 {
	font-size: 78px;
	font-weight: 500;
	color: var(--white);
	text-transform: capitalize;
}

.inner-video-box .video-box-btn {
	background-color: #ff3435;
	border: none;
}

.why-choose-us-imgs {
	display: flex;
	gap: 3rem;
	width: 120%;
}

figure.why-choose-us-img {
	width: 100%;
}

.why-choose-us-imgs .why-choose-us-img:nth-child(even) {
	padding-top: 130px;
}

.why-choose-us-img img {
	width: 100%;
}

.why-choose-us-content .themeBtn {
	border-radius: 100px;
}

.inner-blog-box .blog-box-content::before,
.inner-blog-box .blog-box-img span::before {
	display: none;
}

.inner-blog-box .blog-box-content {
	padding: 20px 20px;
	margin: 0;
}

.inner-blog-box .blog-box-img span {
	background-color: var(--theme-color);
	border-radius: 100%;
	align-items: center;
	padding: 13px 15px;
	bottom: 15px;
	left: 15px;
}

.inner-blog-box {
	margin-bottom: 40px;
}

.contact-map-location {
	margin-left: -100px;
	margin-top: 3.5rem;
}

.contact-list {
	display: flex;
	gap: 10rem;
}

.contact-list-box {
	text-align: center;
	padding: 0 8rem;
}

.contact-list-box span {
	width: 175px;
	height: 175px;
	display: grid;
	margin: auto;
	place-content: center;
	background-color: var(--theme-color);
	color: var(--white);
	border-radius: 10px;
	position: relative;
	z-index: 999999;
}

.contact-list-box span i {
	font-size: 70px;
}

.contact-list-box span::before {
	content: "";
	width: 175px;
	height: 175px;
	border: 2px solid var(--black);
	border-radius: 10px;
	position: absolute;
	top: -14px;
	left: -16px;
	z-index: -99999;
}

.contact-list-box h5 {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--black);
	margin: 1rem 0;
}

.contact-list-box a {
	font-size: 22px;
	color: #2a2323;
	line-height: 3;
}

.services-cont h2 {
	color: #BBD3CC;
	font-size: 8.809rem;
	margin-bottom: 4rem;
}

.services .row+.row {
	margin-top: 5rem;
}

.services-cont p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.services-cont h3 {
	font-size: 3.125rem;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 1rem;
}

.services-2 {
	background-image: url(../images/bg3.png);
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 2rem 0;
}

.services-2 h3 {
    color: var(--white);
}

.services-2 .services-cont p {
    color: var(--white);
}

.services-img {
	position: relative;
	z-index: 0;
}

.services-img::before {
	content: "";
	width: 432px;
	height: 346px;
	background: #16644e;
	border-radius: 10px;
	position: absolute;
	top: -34px;
	left: -13px;
	z-index: -1;
}

.contact-service {
	position: relative;
}

.contact-service .tax-img {
	position: absolute;
	top: -6rem;
}

section.bookeeping-sec.p-0 h2 {
    font-size: 60px;
}


section.testimonial-sec.pb-0 h2 {
    font-size: 52px;
}

section.why-choose-us-sec.py-0 h2 {
    font-size: 60px;
}


   .faq-section {
      max-width: 1200px;
      margin: auto;
    }
    .faq-section h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 32px;
    }
    .faq {
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
      background: #ffffff;
      transition: box-shadow 0.3s ease;
    }
    .faq:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
   .faq summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
    .faq summary::-webkit-details-marker {
      display: none;
    }
    .faq[open] summary {
    background: #19644d;
    color: #ffffff;
}
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 20px;
    }
    .faq[open] .faq-content {
      max-height: 500px; /* enough space */
      padding: 16px 20px;
    }
    .faq p {
      margin: 0;
      font-size: 15px;
      color: #334155;
      line-height: 1.6;
    }
    
    section.faq-section h2 {
    font-size: 58px;
    margin-bottom: 32px;
}
    
    
    .contact-content.mb-4.text-center.aos-init.aos-animate h2 {
    font-size: 60px;
}


a.btns {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
}


a.footerLogo img {
    width: 300px;
}

a.navbar-brand img {
    width: 250px;
}