/*!
Theme Name: PAS Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pas-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

PAS Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-80: 80px;
	--font-58: 58px;
	--font-42: 42px;
	--font-30: 30px;
	--font-24: 24px;
	--font-20: 20px;
	--font-18: 18px;
	--font-16: 16px;
	--primary-color: #2d2d53;
	--secondary-color: #9d9f9e;
	--white-color: #fff;
	--black-color: #000;
	--body-color: #5c6d7d;
}

* {
	box-sizing: border-box;
}

body,
html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: "DM Sans", serif;
	display: inline;
	font-size: var(--font-18);
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	background: var(--white-color);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

p {
	margin: 0 0 20px 0;
}

p:last-child {
	margin: 0;
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: 0.5s all;
}

a:hover {
	color: var(--primary-color);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.3;
	font-weight: 700;
}

section {
	padding: 150px 0;
	position: relative;
	overflow: hidden;
}

section.small-padding {
	padding: 100px 0;
}

section.pt-0 {
	padding-top: 0;
}

section.pb-0 {
	padding-bottom: 0;
}

section.p-0 {
	padding-top: 0;
	padding-bottom: 0;
}

input,
textarea,
select {
	font-family: "DM Sans", serif;
	font-size: var(--font-16);
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.3;
	padding: 13px;
	border-radius: 10px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	background: #fff;
	width: 100%;
	border: 1px solid var(--body-color);
}

::placeholder {
	color: var(--body-color);
}

select {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23000000" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center right 18px;
}

.wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 30px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0 auto auto;
}

.button {
	font-size: var(--font-16);
	padding: 16px 40px;
	line-height: 1;
	background: transparent;
	text-decoration: none;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
	text-align: center;
	cursor: pointer;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
	border-radius: 10px;
	border: 1px solid var(--primary-color);
}

.button:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.button.link {
	font-size: var(--font-20);
	padding: 0 0 10px 0;
	line-height: 1;
	background: transparent;
	color: var(--primary-color);
	border: none;
	position: relative;
}

.button.link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
}

.button.link:hover::before {
	width: 0;
}

.button.fill {
	background: var(--primary-color);
	color: var(--white-color);
}

.button.fill:hover {
	background: transparent;
	color: var(--primary-color);
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.wrapper {
	width: 85.4166667%;
	margin: 0 auto;
	position: relative;
}

.wrapper.small {
	width: 68.75%;
}

.heading-group {
	margin-bottom: 20px;
}

.intro-description {
	margin-bottom: 30px;
}

.mb-50 {
	margin-bottom: 50px;
}

.title {
	font-size: var(--font-80);
	color: #2d2d53;
}

.heading {
	font-size: var(--font-58);
	color: #2d2d53;
}

.small-heading {
	font-size: var(--font-42);
	color: #2d2d53;
}

.mb-0 {
	margin-bottom: 0 !important;
}

/* HEADER */
header.site-header {
	padding: 20px 0;
}

.header-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.site-branding img {
	max-width: 300px;
}

ul.menu {
	display: flex;
	flex-wrap: wrap;
}

ul.menu li:not(:last-child) {
	margin-right: 60px;
}

ul.menu li a {
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	padding-bottom: 4px;
}

ul.menu li a:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: 0.5s all;
}

.menu .current-menu-item a:after {
	width: 100%;
}

ul.menu li a:hover:after {
	width: 100%;
}

.contact a {
	position: relative;
	padding-bottom: 4px;
}

.contact a:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: 0.5s all;
}

.contact a:hover:after {
	width: 100%;
}

.toggle {
	display: flex;
	flex-direction: column;
	z-index: 99;
	cursor: pointer;
}

.bar {
	width: 34px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 3px 0;
	display: inline-block;
	margin-left: auto;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	cursor: pointer;
	z-index: 99;
}

.bar:first-child {
	width: 24px;
}

.bar:last-child {
	width: 17px;
}

span.bar.animate.bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
	width: 34px;
}

span.bar.animate.bar:nth-child(2) {
	opacity: 0;
}

span.bar.animate.bar:nth-child(3) {
	transform: rotate(45deg) translate(-7px, -8px);
	width: 34px;
}

.toggle:hover .bar {
	width: 34px !important;
}

.sidebar-menu {
	position: fixed;
	z-index: 99;
	top: 0;
	right: -100%;
	transition: all ease-in-out 0.5s;
	height: 100%;
	width: 100%;
	overflow-y: scroll;
	max-width: 400px;
	background: #ffffff;
	padding: 50px 30px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
}

.sidebar-menu.active {
	right: 0;
}

.sidebar-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.sidebar-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	width: fit-content;
}

a.close {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: var(--secondary-color);
	border-radius: 50%;
}

a.close:hover {
	background: var(--primary-color);
}

a.close i {
	font-size: var(--font-18);
}

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

.social-media a:not(:last-child) {
	margin-bottom: 20px;
}

.social-media a {
	color: var(--primary-color);
	width: fit-content;
	justify-content: flex-start;
	height: 100%;
	border-radius: 0;
	font-size: var(--font-24);
}

.social-media a i {
	margin-right: 14px;
}

.sidebar-bottom {
	border-top: 1px solid #00000099;
	margin-top: 20px;
	padding-top: 40px;
}

.call {
	margin-bottom: 20px;
}

.contact a {
	font-size: var(--font-20);
}

.sidebar-top .site-branding img {
	max-width: 240px;
}

/* Footer */
.footer-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #32373c85;
	padding: 50px 0 70px 0;
	margin: 30px 0;
}

.footer-middle {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #32373c85;
	padding: 0 0 50px 0;
	margin: 0 0 30px 0;
}

ul.social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

ul.social-links li:not(:last-child) {
	margin-right: 30px;
}

.footer-block {
	max-width: 300px;
}

footer.site-footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f2f7fc;
	z-index: -1;
	max-width: 80%;
	margin: 0 auto;
	border-radius: 30px;
	background: linear-gradient(350deg, #F3F3E0 30%, rgba(203, 220, 235, 4) 70%);
}

footer.site-footer {
	position: relative;
	padding: 70px 0 50px 0;
	color: var(--primary-color);
	margin-bottom: 30px;
}

footer.site-footer a {
	color: var(--primary-color);
}

/* banner */
.banner-wrap {
	display: flex;
	align-items: center;
	position: relative;
}

.banner-block {
	width: 70%;
	position: absolute;
	z-index: 1;
}

.banner-img-block {
	width: 50%;
	margin-left: auto;
}

.image {
	position: relative;
	padding-top: 100%;
	width: 120%;
}

.image img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.banner-block .intro-description {
	width: 50%;
}

/* About-section */
.about-wrap .intro-description {
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}

/*audit-section  */
section.audit-section {
	background: #f2f7fc;
}

.audit-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.audit-block {
	width: 25%;
	margin: 15px 0;
	padding: 0 15px;
}

.audit-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.audit-icon img {
	width: 60px;
}

.audit-icon {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #110024;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	position: relative;
}

.audit-name {
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 30px;
}

.audit-name h3 {
	font-size: var(--font-24);
	color: var(--primary-color);
}

.audit-name:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0px;
	width: 70px;
	height: 6px;
	border-radius: 50px;
	background-color: var(--black-color);
	margin: 0 auto;
	display: inline-block;
	right: 0;
}

/* Service-section */
.service-row {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.service-block {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

.service-img {
	position: relative;
	padding-top: 70%;
}

.service-img img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s all;
}

.service-img {
	overflow: hidden;
}

.service-inner:hover .service-img img {
	transform: scale(1.05);
}

.service-details {
	padding: 20px;
}

.service-details h3 {
	margin-bottom: 16px;
	font-size: var(--font-24);
	color: var(--black-color);
}

.service-inner {
	box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
	height: 100%;
	background: #fff;
}

.logos-list {
	display: flex;
	flex-wrap: wrap;
}

.logo-box {
	width: 25%;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-box img {
	height: 170px;
	width: auto;
	object-fit: contain;
	padding: 12px;
}

.footer-middle-bot {
	border-bottom: 1px solid #32373c85;
	padding: 0 0 50px 0;
	margin: 0 0 30px 0;
}

/* Testimonial-section */
section.testimonial-section {
	/* background: #f2f7fc; */
}

.testimonial-slide {
	height: 100%;
}

.testimonial-inner {
	background: #fff;
	padding: 36px;
	height: 100%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
	border: 1px solid #ccc;
}

.testimonial-icon,
.client-review {
	margin-bottom: 24px;
}

.testimonial-inner span {
	display: block;
	font-size: var(--font-20);
	font-weight: 600
}

.testimonial-slider .slick-slide {
	padding: 0 15px;
	height: 100%;
}

.testimonial-slider .slick-list {
	margin: 0 -15px;
	height: auto;
	display: flex;
	padding-bottom: 30px;
}

.testimonial-slider .slick-track {
	display: flex;
	height: auto;
}

.testimonial-slider .slick-slide>div {
	height: 100%;
}

/* Cta */
.cta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--primary-color);
	padding: 50px;
	border-radius: 20px;
}

.cta-row .heading {
	font-size: var(--font-30);
}

.button i {
	margin-left: 20px;
}

.cta-row .button,
.cta-row .button i {
	font-size: var(--font-20);
}

ul.social-links li a:hover i {
	transform: translateY(-5px);
}

ul.social-links li a i {
	transition: 0.5s all;
}

@keyframes wobble-hor {

	0%,
	100% {
		transform: translateX(0%);
	}

	50% {
		transform: translateX(30px);
	}
}

.vector {
	animation: wobble-hor 1s ease-in-out infinite;
	width: fit-content;
	margin: 0 auto;
	margin-top: -100px;
}

/* Contact-page */
section.inner-banner {
	background: #f2f7fc;
}

.contact-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
	align-items: center;
}

.left-block,
.right-block {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

.contact-block {
	margin-bottom: 20px;
}

.contact-block p {
	position: relative;
	width: 100%;
	padding-left: 75px;
	min-height: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-block label {
	font-size: var(--font-20);
	color: var(--black-color);
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.contact-block i {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	height: 60px;
	width: 60px;
	border-radius: 15px;
	font-size: var(--font-20);
	color: var(--white-color);
}

.contact-block:last-child {
	margin: 0;
}

.form-rows {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.form-cols {
	width: 100%;
	margin: 10px 0;
	padding: 0 10px;
}

.form-cols:nth-child(-n+2) {
	width: 50%;
}

.form-btn {
	margin-top: 12px;
	position: relative;
}

.inner-banner-top .heading-group {
	margin-bottom: 100px;
	position: relative;
}

.inner-banner-top .heading {
	position: relative;
	width: fit-content;
	margin: 0 auto;
	padding-bottom: 30px;
}

.inner-banner-top .heading:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.626' height='8.639' viewBox='0 0 14.626 8.639'%3E%3Cg id='down-arrow' transform='translate(0 -70.698)'%3E%3Cg id='Group_8820' data-name='Group 8820' transform='translate(0 100.698)'%3E%3Cpath id='Path_6507' data-name='Path 6507' d='M14.392,101.42l-.479-.482a.8.8,0,0,0-1.132,0L7.316,106.4l-5.472-5.472a.8.8,0,0,0-1.132,0l-.479.479a.8.8,0,0,0,0,1.131l6.515,6.538a.818.818,0,0,0,.567.257h0a.818.818,0,0,0,.566-.257l6.508-6.52a.808.808,0,0,0,.234-.571A.8.8,0,0,0,14.392,101.42Z' transform='translate(0 -130.698)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	content: '';
	left: 0;
	width: 20px;
	height: 20px;
	bottom: 0;
	margin: 0 auto;
	display: inline-block;
	right: 0;
}

.map iframe {
	width: 100%;
	border-radius: 20px;
}

/* About-us */
.about-block {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

.about-row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
	align-items: center;
}

.about-content ul li:not(:last-child) {
	margin-bottom: 8px;
}

.img-bot {
	position: absolute;
	left: 0;
	bottom: 0;
	height: auto;
	width: 50%;
	margin-bottom: -70px;
	margin-left: 50px;
}

.about-block:last-child {
	position: relative;
}

.img-top {
	margin-left: auto;
	width: 70%;
}

.img-top img {
	width: 100%;
}

section.inner-banner.about-us {
	padding-bottom: 250px;
}

.about-block ul {
	list-style: decimal;
	padding-left: 30px;
}

.mission-section .audit-block {
	width: 33.33%;
}

/* Service-page */
.services .service-block {
	width: 33.33%;
}

.services .service-details h3 {
	margin-bottom: 0;
}

.services .small-heading {
	position: relative;
	padding-left: 30px;
}

.services .small-heading:before {
	position: absolute;
	content: '';
	left: 0;
	height: 15px;
	width: 15px;
	background-color: #2d2d53;
	top: 20px;
	transform: rotate(45deg);
	vertical-align: middle;
}

/*  */
.page-template-home .service-row {
	display: none;
}

section.audit-section {
	display: none;
}

section.mission-section {
	display: none;
}

section.testimonial-section {
/* 	display: none; */
}

section.service-section {
	background: #f2f7fc;
}

.service-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
	align-items: center;
}

.service-content {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

ul.service-list {
	padding-left: 60px;
	list-style: disc;
	font-size: var(--font-20);
}

ul.service-list li:not(:last-child) {
	margin-bottom: 10px;
}

section.services:last-child .service-wrap {
	flex-direction: row-reverse;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	inset: 0;
}

.about-img {
	position: relative;
	padding-top: 100%;
}

.about-block .heading-group {
	display: inline-flex;
	align-items: flex-end;
}

span.designation {
	color: #000;
	font-size: var(--font-20);
	display: block;
	margin-left: 10px;
	margin-bottom: 16px;
}

.useful-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -15px;
}

.useful-links-block {
	width: 50%;
	margin: 15px 0;
	padding: 0 15px;
}

ul.links li:not(:last-child) {
	margin-bottom: 20px;
}

ul.links li {
	position: relative;
	padding-left: 30px;
}

ul.links li:before {
	position: absolute;
	content: '\f061';
	font-family: 'FontAwesome';
	font-weight: 600;
	left: 0;
	top: 0;
	color: var(--primary-color);
}

.footer-top {
	display: none;
}

.logos-list {
	margin-bottom: 30px;
}

.address:first-child {
	margin-bottom: 10px;
}

.address label {
	font-weight: 700;
	margin-bottom: 6px;
	display: block;
}

.address p {
	margin: 0;
}

.vector img {
	width: 78px;
}

.inner-banner-top {
	text-align: center;
}

section.hero-banner {
	overflow: hidden;
}

.cta-row .button {
	margin-left: 20px;
	flex: 0 0 auto;
}

.contact-block a {
	color: var(--primary-color);
}

.contact-block a:hover {
	color: var(--black-color);
	text-decoration: underline;
}

#progress {
	z-index: 111;
	position: fixed;
	bottom: 20px;
	right: 10px;
	height: 60px;
	width: 60px;
	display: none;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

#progress-value {
	display: block;
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: #ffffff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 35px;
	color: #001a2e;
}

span#progress-value i {
	font-size: 20px;
}

/* sticky-header */
.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99 !important;
	transition: 0.5s all;
	animation: slideDown 0.55s ease-out;
	background: #fff;
	box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.2);
	padding: 15px 0 !important;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.page-content .title {
    font-size: 200px;
}

/* USeful-links */
.image-box-content > div {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    background:var(--white-color);
    height: 100%;
}

.image-box-image img {
    margin: 0;
    max-width: 50px;
    height: auto;
    padding: 10px;
    background: #e5e5e5;
    border-radius: 12px;
}

.image-box-image {
    margin-right: 12px;
}

.image-box-content:not(:last-child) {
    margin-bottom: 16px;
}

.pdflink {
    display: flex;
    text-decoration: none;
    align-items: center;
    color: var(--black-color);
    margin-left: auto;
}

.round-button {
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: var(--font-16);
    border-radius: 100%;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    transition: 0.5s all;
}

.image-box-content h3 {
    font-size: var(--font-20);
	margin-right: 10px;
}
.page-template-useful-links section.inner-banner, section.inner-banner.error-404 {
    margin-bottom: 100px;
}
/*  */
.testimonial-top .heading-group {
    margin-bottom: 50px;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-menu li:not(:last-child) {
    margin-right: 10px;
    border-right: 1px solid #2d2d53;
    padding-right: 10px;
}
h2.wp-block-heading {
    margin-bottom: 20px;
    font-size: var(--font-42);
}

ol.wp-block-list {
    list-style: decimal;
    padding-left: 30px;
}

ol.wp-block-list li:not(:last-child) {
    margin-bottom: 8px;
}

ul.wp-block-list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

ul.wp-block-list li:not(:last-child) {
    margin-bottom: 8px;
}
section.inner-banner.normal-section {
    margin-bottom: 100px;
}