/*
================== Global Variables
*/

:root {
  --base-color: #B0903D;
  --antiquegold: #8b7029;
  --global-color-text: #475569;
  --black: #0F172A;
  --white: #fff;
  --gray: #565656;
  --global-font: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  --hanken: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  --transition4s: all ease 0.4s;
  --transition6s: all ease 0.6s;
}

/*
	================== Global Style
*/
html {
  font-size: 62.5%;
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  font-family: var(--global-font);
  font-weight: 400;
  color: var(--black);
  font-size: 2rem;
}

section {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--base-color);
}

a:focus {
  outline: none;
}

a:hover {
  color: var(--base-color);
  transition: var(--transition4s);
}

strong {
  font-weight: 500;
}

video {
  width: 100%;
  display: block;
}

*:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

p {
  font-size: 1.6rem;
  line-height: 1.444;
  font-weight: 400;
  color: var(--global-color-text);
}

p a {
  font-weight: 700;
}

ul {
  padding-left: 0px;
  margin-left: 0px;
}

li {
  color: var(--global-color-text);
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}


/*
	================== Common Style
*/
.padding-top {
  padding-top: 80px;
}

.wide-container {
  max-width: 1920px;
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1440px;
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.btn-group {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.justify-center {
  justify-content: center;
}

/*
	================== Button Style
*/

a:focus {
  color: var(--base-color);
}

.common-btn {
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border: solid 2px var(--black);
  padding: 10px 15px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  border-radius: 50px;
  transition: var(--transition4s);
  position: relative;
  font-size: 1.4rem;
  line-height: 1.555;
  font-weight: 500;
  background: var(--black);
  position: relative;
  transition: var(--transition4s);
}

.common-btn:before {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  background: var(--black);
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: var(--transition4s);
}

.common-btn:hover {
  color: #fff;
  border-color: var(--black);
}

.common-btn img {
  filter: invert(1);
}

.common-btn:hover:before {
  width: 100%;
  transform: translateX(0);
}

.common-btn span {
  position: relative;
  z-index: 1;
}

.common-btn:focus {
  color: var(--white);
}

a:focus {
  color: var(--black);
}

.common-btn:hover:focus {
  color: var(--white);
}

.common-btn[disabled="disabled"] {
  cursor: not-allowed;
  pointer-events: none;
  background: #b4b4b4;
}

.border-btn {
  background: transparent;
  color: var(--black);
  border: 2px solid #cbd5e1;
}

.border-btn img {
  filter: invert(0) brightness(0);
}

.border-btn:hover img {
  filter: invert(1) brightness(1);
}

.border-btn:hover {
  color: var(--white);
}

.notFound {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem !important;
  color: #f00 !important;
}

.d-hide {
  display: block !important;
}

.post,
.page {
  margin: 0;
}

.dark-bg p,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
  color: var(--white);
}

.dark-bg .common-btn {
  background-color: var(--white);
  color: var(--black);
}

.dark-bg .common-btn img {
  filter: invert(0) brightness(0);
}

.dark-bg .common-btn:hover {
  color: var(--black);
  border-color: var(--white);
  background-color: transparent;
}

.dark-bg .common-btn:hover:before {
  background-color: var(--white);
}

.dark-bg .common-btn:hover svg path {
  stroke: var(--white);
}

.dark-bg .common-btn:hover:after {
  background-color: var(--white);
}

.heading {
  margin-bottom: 30px;
}

.heading h2 {
  font-size: 3.4rem;
  line-height: 1.125;
  font-weight: 500;
  margin: 0;
  width: 100%;
}

.text-center.heading h2 {
  margin: 0 auto;
}

.heading p {
  font-size: 2.0rem;
  line-height: 1.555;
  font-weight: 500;
  color: var(--global-color-text);
  margin-top: 20px;
  margin-bottom: 16px;
}


/*
  ===== Hrader Style ====
*/

header.site-header {
  margin-top: 20px;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.header-outer {
  display: grid;
  grid-template-columns: 56% 42%;
  grid-gap: 2%;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  box-shadow: 2px 0px 15px 7px #0000000A;
}

.top-btn {
  display: none;
}

.top-btn .common-btn {
  padding: 10px 20px;
  font-size: 1.4rem;
}

.menu-toggle {
  border: 0;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.main-logo {
  order: 1;
}

.main-logo .site-branding {
  width: 130px;
}

.main-logo .site-branding a {
  display: block;
}

.main-logo .site-branding img {
  display: block;
}

.header-right-part {
  order: 2;
  display: flex;
  margin-left: auto;
  gap: 15px;
  align-items: center;
}

.main-menu {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
}

.main-navigation ul.menu {
  display: none;
  margin: 11px 0 0 0;
  position: absolute;
  left: 0px;
  width: 100%;
  background: #fff;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition4s);
  border-radius: 8px;
  box-shadow: 2px 0px 15px 7px #0000000A;
}

.main-menu .main-navigation.openMenu .menu {
  display: block;
  height: auto;
  transition: var(--transition4s);
}

.main-navigation ul.menu li {
  position: relative;
  list-style-type: none;
}

.main-navigation ul.menu>li ul.sub-menu {
  display: none;
  margin-left: 0;
  background: #eee;
  padding-left: 0;
}

.main-navigation ul.menu>li ul.sub-menu li>a {
  border-top: solid 1px #ddd;
  padding-left: 40px;
}

.main-navigation ul.menu li a {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  color: var(--black);
  padding: 10px 15px;
}

.main-navigation ul.menu>li>a {
  font-size: 1.6rem;
  font-weight: 500;
  border-top: solid 1px #eee;
}

.main-navigation ul.menu>li>ul.sub-menu li a:hover {
  color: var(--antiquegold);
}

.menu-icon {
  position: absolute;
  background: #eee url('../images/select-down.svg') no-repeat;
  background-position: center;
  width: 26px;
  height: 26px;
  right: 20px;
  top: 10px;
  z-index: 1;
  transition: var(--transition4s);
}

.focus .menu-icon {
  transform: rotate(180deg);
}

.main-navigation ul.menu li.focus>ul.sub-menu {
  display: block;
}

.search {
  order: 2;
  position: relative;
  z-index: 100;
}

.search-inn {
  border: 1px solid #33333329;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: var(--transition4s);
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -20px;
}

.search .search-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: #fff;
  border: none;
  width: 100%;
  height: 100%;
  padding: 10px;
  cursor: pointer;
}

.search .search-btn img {
  width: 20px;
}

.search.active .magnify-icon {
  display: none;
}

.search .cross-icon {
  display: none;
}

.search.active .cross-icon {
  display: block;
}

.search .search-field {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 8px 12px;
  border: none;
  height: 54px;
  border-radius: 4px;
  background: #fff;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #f4f4f4;
}

.search.active .search-inn {
  width: 275px;
}

.search.active .search-field {
  display: block;
  opacity: 1;
}

/*
  Hero Banner style
*/

.banner-text {
  padding-top: 140px;
}

.banner-text h1 {
  font-size: 4rem;
  margin: 0;
  line-height: 1.1;
  font-weight: 900;
  max-width: 800px;
  width: 100%;
}

.hero-banner-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* opacity: 0; */
  /* transform: translateY(50px); */
  transition: all 0.8s ease-in-out;
  position: relative;
  background-color: #061B27;
}

.hero-banner-section:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 0.9;
}

.hero-banner-outer {
  position: relative;
  z-index: 1;
  margin: 0px auto;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 2rem;
}

.hero-banner-content {
  text-align: center;
}

.hero-banner-section.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-main-image {
  border-radius: 6px;
  overflow: hidden;
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border-radius: 30px;
}

.hero-banner-content h1 {
  font-size: 3rem;
  margin: 0;
  line-height: 1.1;
  font-weight: 900;
  width: 100%;
  color: #0F171A;
}

.hero-banner-content p {
  font-size: 1.8rem;
  color: #0F171A;
}

/*
  Aboutus Style =============
*/

.aboutus-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.aboutus-outer {
  display: grid;
  grid-gap: 40px;
}

.aboutus-image img {
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border-radius: 30px;
  height: 100%;
}

/*
  SIP Calculator Style =============
*/

.sip-calculator-section {
  padding-top: 0px;
  padding-bottom: 40px;
}

/*
  service Style =============
*/

.service-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}

.service-outer {
  display: grid;
  grid-gap: 16px;
}

.icon-with-content-box {
  border: none;
  border-radius: 24px 24px 24px 24px;
  padding: 24px;
  background-color: #fff;
  position: relative;
  transition: var(--transition6s);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.icon-image {
  margin-bottom: 25px;
  background: var(--black);
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image img {
  filter: brightness(0%) invert(1);
  height: 35px;
}

.icon-with-content {
  margin-bottom: 20px;
}

.icon-with-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 500;
}

.icon-with-content h3 a {
  color: var(--black);
}

.icon-with-content h4 {
  font-size: 2.4rem;
  line-height: 1.333;
  font-weight: 500;
  font-family: var(--global-font);
  margin-top: 0;
  margin-bottom: 16px;
}

.icon-with-content p {
  font-size: 1.6rem;
  line-height: 1.44;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 50px;
}

.readmore-btn {
  margin-top: auto;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 500;
}

.icon-with-content-box:hover {
  background-color: #eee;
}

/* .icon-with-content-box:hover .icon-image img {
  filter: invert(1);
}

.icon-with-content-box:hover .common-btn {
  background-color: var(--black);
  color: var(--white);
}

.icon-with-content-box:hover .common-btn span img {
  filter: invert(1);
}

.icon-with-content-box:hover .icon-with-content,
.icon-with-content-box:hover .icon-with-content h3 a,
.icon-with-content-box:hover .icon-with-content p {
  color: var(--white);
} */

.single-banner {
  background: #061b27;
  padding-top: 140px;
  padding-bottom: 50px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.single-banner:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/grid.png');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.single-banner-outer {
  position: relative;
  z-index: 2;
}

.single-banner h1 {
  color: var(--white);
  margin: 0;
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.single-banner h1:after {
  position: absolute;
  content: '';
  width: 90px;
  height: 4px;
  background: var(--base-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.single-banner-outer p {
  color: var(--white);
  text-align: center;
  width: 100%;
  margin: 30px auto 0 auto;
}

.single-page-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-grid {
  display: grid;
  grid-gap: 30px;
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  border-radius: 24px 24px 24px 24px;
  border: solid 2px #fff;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 0px 15px 7px #0000000A;
  transition: var(--transition4s);
}

.post-card:hover {
  box-shadow: 2px 0px 15px 7px #0000000A;
  border-color: var(--base-color);
}

.postIimage {
  margin-bottom: 20px;
  width: 100%;
}

.postIimage img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.postContent {
  position: relative;
  margin-bottom: 20px;
}

.postContent h3 {
  font-size: 2rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 500;
}

.postContent h3 a {
  color: #000;
}

.post-card .common-btn {
  margin-top: auto;
}

.what-our-clients-share-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.client-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 24px 24px 24px 24px;
}

.client-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -20px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
  text-align: center;
}

.client-content h3 {
  font-size: 2rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  display: block;
  width: 100%;
}

.client-date {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.client-content p {
  font-size: 1.6rem;
  line-height: 1.44;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.client-content p a {
  color: var(--base-color);
}

.client-content p a:hover {
  text-decoration: underline;
}

.clients-slider.owl-carousel .owl-stage-outer {
  padding-top: 20px;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px 0;
}

.star-rating img {
  width: 15px;
  height: 15px;
}

.intl-tel-input.separate-dial-code .selected-dial-code,
.intl-tel-input .country-list li.country {
  font-size: 1.4rem;
}

.kp-sip-calculator {
  flex-direction: column;
}

.kp-sip-calculator .kp-sip-calculator-contain {
  width: 100%;
  padding-right: 0;
}

.kp-sip-calculator .kp-sip-calculator-chart {
  width: 100%;
}

.kp-sip-calculator input[type="number"] {
  height: auto;
  font-size: 1.5rem;
}

.kp-sip-calculator .kp-sip-calculator-contain label,
.kp-sip-calculator-result div {
  font-size: 1.5rem;
}

/*
  Footer Style =============
*/

input[type="submit"].submit-btn {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--white);
  border-radius: 6px;
  border: 0;
  font-size: 1.5rem;
  line-height: 1.555;
  font-weight: 500;
  background: var(--black);
  position: relative;
  transition: var(--transition4s);
  max-width: 200px;
  width: 100%;
}

input[type="submit"].submit-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.footer-bgimage {
  height: 380px;
  overflow: hidden;
}

.footer-bgimage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.newsletter-section {
  background: #f9f9f9;
  padding-top: 40px;
  padding-bottom: 40px;
}

.newsletter-outer .icon-box {
  border-radius: 9999px;
  background-color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0px auto 30px auto;
}

.newsletter-outer .icon-box svg {
  stroke: #fff
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  margin: 0px auto;
}

.footer-newsletter input[type="email"] {
  border-radius: 50px;
  border: solid 2px #ddd;
  padding: 15px 20px;
  height: auto;
}

.footer-newsletter input[type="submit"] {
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50px;
  padding: 15px 20px;
}

.footer-details-section {
  background-color: #061b27;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-top: 0;
}

.footer-cta-section {
  background-color: #061b27;
  padding-bottom: 60px;
  padding-top: 60px;
  margin-top: 0;
}

.footer-cta .heading h2 {
  margin-top: 0;
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 600;
  max-width: 632px;
  width: 100%;
  margin: 0px auto 24px auto;
  text-align: center;
  color: var(--white);
}

.footer-cta .heading p {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  max-width: 632px;
  width: 100%;
  margin: 0px auto 24px auto;
  text-align: center;
  color: var(--white);
}

.footer-contact-details {
  display: grid;
  grid-gap: 3%;
}

.contact-detail-left {
  color: #fff;
  order: 2;
}

.contact-detail-left h3 {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 24px;
}

ul.contact-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 24px;
}

ul.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.25;
}

ul.contact-list li span {
  width: 24px;
  display: flex;
}

ul.contact-list li span img {
  filter: brightness(0) invert(1);
}

ul.contact-list li p {
  color: #fff;
  line-height: 1.25;
  font-weight: 400;
  margin: 0;
}

.email-list {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-list p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
  margin: 0;
}

.email-list p strong {
  color: var(--base-color);
}

.more-detail {
  margin-bottom: 24px;
}

.more-detail p {
  line-height: 1.666;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 400;
}

.social-network {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.social-network a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  border-radius: 4px;
}

.social-network a img {
  width: 20px;
}

.social-network a:hover {
  background-color: var(--base-color);
}

.social-network a:hover img {
  filter: brightness(0%);
}

.copyright-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 24px;
}

.copyright-detail p {
  color: #fff;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1.3rem;
}

.copyright-detail p a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.2rem;
  line-height: 1.666;
  text-decoration: underline;
}

.contact-detail-right {
  order: 1;
}

.contact-detail-right .heading {
  margin-bottom: 45px;
}

.contact-detail-right .heading h2 {
  color: #fff;
}

.getInTouch-Form {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.getInTouch-Form p {
  margin: 0;
}

.site-footer input[type="submit"].submit-btn {
  background-color: var(--white);
  color: var(--black);
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem;
}

.getInTouch-Form p.textarea textarea {
  min-height: 150px;
}

.getInTouch-form .wpcf7-response-output {
  color: var(--white);
  font-size: 1.3rem;
}

.default-page-content {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.error-404,
.search-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

blockquote {
  font-size: 1.4em;
  width: 60%;
  margin: 50px auto;
  font-style: italic;
  color: #555555;
  padding: 1.2em 30px 1.2em 75px;
  border-left: 8px solid var(--base-color);
  line-height: 1.6;
  position: relative;
  background: #EDEDED;
}

blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: var(--antiquegold);
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

blockquote::after {
  content: '';
}

blockquote span {
  display: block;
  color: #333333;
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

.about-content-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-content-outer {
  display: grid;
  grid-gap: 40px;
}

.about-content-outer .about-content-left img {
  width: 100%;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border-radius: 30px;
}

.mission-vision-outer {
  display: grid;
  grid-gap: 30px;
  margin-top: 50px;
}

.mission-vision-box {
  background-color: rgb(248 250 252);
  border-radius: 24px;
  padding: 50px;
}

.mission-vision-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 600;
}

.mission-vision-box p {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: #475569;
}

.core-value-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.core-value-box-outer {
  display: grid;
  grid-gap: 30px;
}

.core-value-box {
  border: 2px solid rgb(226, 232, 240);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all ease 0.5s;
}

.core-value-box:hover {
  border-color: #0a0a0a;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.core-value-box .core-value-img {
  background: #0a0a0a;
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-value-box .core-value-img img {
  filter: invert(1);
}

.core-value-box h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
}

.core-value-box p {
  margin: 0;
  color: #475569;
  font-size: 1.6rem;
}

.about-single-service {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-single-service-outer {
  display: grid;
  grid-gap: 40px;
}

.about-single-service-image img {
  width: 100%;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border-radius: 30px;
}

.about-single-service-content ul li {
  list-style-type: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.about-single-service-content ul li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url('../images/list-icon.svg') no-repeat left center;
  width: 24px;
  height: 24px;
}

.service-content-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.services-page-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.services-page-outer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-page-outer .about-single-service-outer:nth-child(even) .about-single-service-image {
  order: 1;
}

.services-page-outer .about-single-service-outer:nth-child(even) .about-single-service-content {
  order: 2;
}

.services-page-outer .about-single-service-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1.2;
}

.services-page-outer .about-single-service-content p {
  font-size: 2rem;
  line-height: 1.666;
  color: #475569;
  margin-bottom: 20px;
}

.services-page-outer .about-single-service-image img {
  height: 300px;
  object-fit: cover;
}