/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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");

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ---------------- Basic css ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --primaryfont: "Inter", sans-serif;
  --secondaryfont: "Gabarito", sans-serif;
  --thirdfont: "Poppins", sans-serif;

  --MenuHeight: 13.6rem;

  --shadow: 0 0 0.4rem 0 #00000040;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 2.2rem;
  line-height: 3.2rem;
  /* font-weight: 400; */
  font-weight: 300;
  color: #ffffff;
  font-family: var(--primaryfont);
  background: #050514;
}

.container {
  margin: 0 auto;
  width: 100%;
}

main {
  position: relative;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--secondaryfont);
  color: #ffffff;
}

.text-white {
  color: var(--white) !important;
}

/* borders */
.b {
  border: 0.1rem solid #a9a9a9;
}

.bt {
  border-top: 0.1rem solid #a9a9a9;
}

.bb {
  border-bottom: 0.1rem solid #a9a9a9;
}

.bl {
  border-left: 0.1rem solid #a9a9a9;
}

.br {
  border-right: 0.1rem solid #a9a9a9;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title1 {
  font-weight: 500;
  font-size: 10rem;
  line-height: 9.9rem;
}

.title2 {
  font-weight: 700;
  font-size: 8rem;
  line-height: 1;
}

.title3 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  font-family: var(--thirdfont);
}

.blue_text_shadow {
  text-shadow: 0 0 2rem #0000e4;
}

/* texts */
.text_26 {
  font-size: 2.6rem;
  line-height: 3.5rem;
}
.text_24 {
  font-size: 2.4rem;
  line-height: 1;
}
.text_xl {
  font-size: 2rem;
  line-height: 1;
}
.text_lg {
  font-size: 1.8rem;
  line-height: 1;
}
.text_md {
  font-size: 1.6rem;
  line-height: 1;
}
.text_sm {
  font-size: 1.4rem;
  line-height: 1;
}
.text_xsm {
  font-size: 1.2rem;
  line-height: 1;
}
.text_2xsm {
  font-size: 1rem;
  line-height: 1;
}

.text_italic {
  font-style: italic !important;
}

.underline {
  position: relative;
}

.underline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.2rem;
  background: #ffffff;
  width: 100%;
  content: "";
}

.underline.underline_blue::before {
  background: #0c8fe8;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: #050514;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 6rem;
  height: 6rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #0c8fe8;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  border-radius: 50%;
  background: #0c8fe8;
  z-index: 1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: #116fad;
}

.back-to-top img {
  filter: var(--white_img);
}

.topbtn_hide {
  opacity: 1;
}

/* icons size */
.icon_10 {
  width: 1rem;
}
.icon_12 {
  width: 1.2rem;
}
.icon_14 {
  width: 1.4rem;
}
.icon_16 {
  width: 1.6rem;
}
.icon_18 {
  width: 1.8rem;
}
.icon_20 {
  width: 2rem;
}
.icon_22 {
  width: 2.2rem;
}
.icon_24 {
  width: 2.4rem;
}
.icon_26 {
  width: 2.6rem;
}
.icon_28 {
  width: 2.8rem;
}
.icon_36 {
  width: 3.6rem;
}

/* ==================== button area ==================== */
.button {
  height: 9.3rem;
  background: #099bff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4.2rem 0 4.2rem;
  font-size: 2.713rem;
  color: #fff;
  border-radius: 1.131rem;
  transition: 0.25s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 0 3.392rem 0 #099bffa8;
  font-family: var(--secondaryfont);
  font-weight: 600;
  line-height: 1;
  gap: 0.917rem;
}

.button:hover {
  background: #ffffff;
  color: #099bff;
}

.button img {
  transition: 0.25s ease;
  width: 1.6rem;
}

.button:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(39%) saturate(5797%)
    hue-rotate(185deg) brightness(104%) contrast(103%);
  transform: translateX(0.6rem);
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 99999;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  background: #050514b8;
  height: var(--MenuHeight);
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #0000e4;
}

.site_header.menu_sticky {
  background: #050514;
  height: 11rem;
}

.logo {
  width: 28.3rem;
}

.site_header .button {
  height: 6.6rem;
  padding: 0 3.2rem;
  gap: 1rem;
  font-size: 2rem;
}

/* ============= Hero section ============== */
.hero_area {
  padding-top: var(--MenuHeight);
  background: url(../img/hero_bg.png) no-repeat fixed top left / cover;
  height: 100%;
  margin-bottom: 4rem;
  padding-bottom: 10rem;
}

.hero_area .content {
  padding: 18.4rem 0 0;
}

#typed1 {
  text-transform: uppercase;
  background: linear-gradient(90deg, #58afff 48.66%, #9c8eff 71.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  position: relative;
}

#typed1:after {
  position: absolute;
  top: 50%;
  left: 0;
  color: #0000e4;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 0;
  content: "";
  width: 100%;
  height: 65%;
  box-shadow: inset 0 0 5rem 0.6rem #c86cd5;
  filter: blur(2.2rem);
  transform: translateY(-50%);
}

.typed-cursor {
    font-weight: 100 !important;
}

.text_blue_gradient {
  background: linear-gradient(90deg, #58afff 48.66%, #9c8eff 71.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text_blue {
  color: #099bff;
}

.link {
  color: #099bff;
  display: inline;
  font-weight: 700;
  font-style: italic;
}

.link:hover {
  color: #fff;
}

.hero_area .content > p {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 4.9rem;
}

.hero_area .content p {
  display: inline-block;
}

.hero_area .underline::before {
  bottom: 0.5rem;
  opacity: 1;
}

/* ================ Marketting area ================= */
.marketting_area {
  padding: 8rem 0 15rem;
}

.marketting_area .row {
  --bs-gutter-x: 0;
}

.marketting_area .row .col-lg-6:first-child {
  padding-right: 7rem;
  padding-bottom: 7rem;
  padding-top: 5.4rem;
  border-right: 0.1rem solid #535060;
}

.marketting_area .row .col-lg-6:last-child {
  padding-left: 4rem;
  padding-top: 5.4rem;
}

.marketting_area .content p {
  padding-left: 0;
  padding-right: 0;
  width: 53rem;
}

/* =================== Success area ================== */
.content h6 {
  font-family: var(--thirdfont);
  font-weight: 600;
  font-style: italic;
  font-size: 4.671rem;
  line-height: 1;
}

.content h2 {
  font-family: var(--thirdfont);
  font-weight: 700;
  font-style: italic;
  font-size: 14.014rem;
  line-height: 1;
}

.content h5 {
  font-family: var(--secondaryfont);
  font-weight: 700;
  font-size: 5.132rem;
  line-height: 1;
}

.content h3 {
  font-family: var(--secondaryfont);
  font-weight: 700;
  font-size: 14.014rem;
  line-height: 1;
}

.success_area .row {
  --bs-gutter-x: 10rem;
}

.titles {
  max-width: 62.5rem;
}

/* ================== Service area ================== */
.service_area {
  padding-top: 11.5rem;
  padding-bottom: 24rem;
}

.service_icon img {
  width: 3.9rem;
}

.service_box {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2.3rem;
  padding: 3.2rem 2.9rem 3.2rem 2.4rem;
  border-radius: 1.5rem;
  min-height: 28rem;
  border: 0.1rem solid #535060;
  background: #050514;
  transition: 0.35s ease;
}

.service_arrow {
  position: absolute;
  right: 2.2rem;
  bottom: 2.1rem;
}

.service_btn h5 {
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  padding-bottom: 0.9rem;
}

.service_desc .p1 {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.6rem;
}

.service_desc .p2 {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 26px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  color: #49497e;
  padding-top: 1.3rem;
  padding-bottom: 0.2rem;
}

.service_btn {
  cursor: pointer;
}

.service_box:hover {
  border-color: #099bff;
  box-shadow: 0 0 3rem 0 #017fe694;
}

.service_area .row {
  --bs-gutter-x: 2.8rem;
  --bs-gutter-y: 2.8rem;
}

.bg_wrapper {
  position: relative;
  z-index: 1;
}

.service_bg {
  position: absolute;
  width: 100vw;
  object-fit: cover;
  bottom: -30rem;
  left: 0;
  filter: brightness(0.55);
  pointer-events: none;
  z-index: -1;
}

.bg_wrapper > div {
  position: relative;
  z-index: 1;
}

.service_stars {
  position: absolute;
  left: -11rem;
  top: -25rem;
  width: 102rem;
  pointer-events: none;
}

/* ================ contact_area ================= */
.contact_form_area {
  padding-bottom: 13.5rem;
  background: #050514;
}

.contact_form {
  max-width: 120.8rem;
  margin: 0 auto;
  border: 0.1rem solid #828282;
  border-radius: 2rem;
  box-shadow: 0 0 6rem 0 #827f93a6;
  background: #00000042;
}

.form_group label {
  font-family: var(--secondaryfont);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.6rem;
  padding-bottom: 0.8rem;
  display: block;
}

.form_group input,
.form_group .nice-select {
  height: 6.3rem;
  width: 100%;
  background: #000;
  padding: 0 1.6rem;
  outline: none;
  border: 0.1rem solid #ffffff;
  border-radius: 1rem;
  color: #fff;
}

.contact_form .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 1.5rem;
}

.form_group input::placeholder,
.form_group .nice-select .current {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #ffffff54;
}

.nice-select .option {
  font-size: 1.8rem;
  color: #fff;
  line-height: 5rem;
  min-height: 5rem;
  padding: 0 2rem;
}

.list {
  width: 100%;
  border-radius: 1rem !important;
  overflow: hidden !important;
  background: #3d3636 !important;
}

.form_group .nice-select {
  display: flex;
  align-items: center;
  padding-right: 4.5rem;
}

.nice-select:after {
  width: 0.8rem;
  height: 0.8rem;
  border-color: #fff;
  right: 2.5rem;
}

.nice-select:focus,
.form_group input:focus {
  border: 0.1rem solid #099bff;
}

.contact_form_area .section_top h5 {
  line-height: 1.2;
}

.nice-select .list:hover .option:not(:hover) {
  background: #3d3636 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #423d3d;
}

.contact_bg {
  position: absolute;
  width: 100vw;
  bottom: -48.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.contact_form_area .container {
  position: relative;
}

/* ============= FAQ section ============ */
.plus_minus img {
  filter: var(--white_img);
  width: 1.4rem;
}

.minus {
  display: none;
}

.accordion_button:not(.collapsed) .minus {
  display: block;
}

.accordion_button:not(.collapsed) .plus {
  display: none;
}

.accordion_button h6 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.6rem;
}

.accordion_button {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  border-bottom: 0.1rem solid #535060;
  cursor: pointer;
  transition: 0.25s ease;
}

.accordion_item {
  border: 0.1rem solid #535060;
  background: #050514;
  border-radius: 1rem;
  overflow: hidden;
}

.accordion-body {
  padding: 3.1rem 7.8rem 4.8rem 4.2rem;
}

.accordion_two {
  gap: 1.5rem;
  display: grid;
}

.accordion_button:not(.collapsed) {
  background: #099bff;
}

.accordion_button.collapsed:hover {
  background: #535060;
}

.accordion_area {
  padding-bottom: 17.6rem;
}

.accordion_stars {
  position: absolute;
  opacity: 0.55;
  bottom: -16rem;
  z-index: -1;
}

.accordion_wrap h4 {
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1;
  text-align: center;
  padding-bottom: 2.2rem;
}

.accordion_two {
  margin-top: 0;
}

/* ==================== Footer area ===================== */
.footer_section {
  background: url(../img/footer_bg.png) no-repeat scroll bottom left / cover;
}

.footer_section .container .row {
  padding-top: 7.7rem;
  padding-bottom: 12rem;
  border-top: 0.1rem solid #535060;
  border-bottom: 0.1rem solid #535060;
}

.footer_section {
  padding-bottom: 15rem;
}

.footer_logo img {
  width: 28.3rem;
}

.footer_logo {
  padding-bottom: 0.9rem;
  display: block;
}

.insta {
  width: 3.3rem;
}

.fb {
  width: 1.7rem;
}

.social_icons {
  gap: 3.2rem;
}

.footer_right ul li a {
  line-height: 4.1rem;
  display: flex;
  gap: 0.7rem;
}

.footer_right ul {
  padding-top: 0.5rem;
}

.copywrite p {
  line-height: 2.6rem;
}

.footer_right ul li a:hover {
  opacity: 0.75;
}

/* ==================== Technologies area ==================== */
.technologies_area {
  position: relative;
  z-index: 1;
  padding-bottom: 14rem;
}

.technology {
  display: flex;
  align-items: center;
}

.technology img {
  width: 5.1rem;
}

.technology2 img {
  width: 10.4rem;
}

.technology3 img {
  width: 12.8rem;
}

.technology4 img {
  width: 10.8rem;
}

.technology5 img {
  width: 9.2rem;
}

.technology6 img {
  width: 9.7rem;
}

.technology7 img {
  width: 11.8rem;
}

.technology8 img {
  width: 10.5rem;
}

.technology9 img {
  width: 11.4rem;
}

.technology10 img {
  width: 7.7rem;
}

.technology11 img {
  width: 10rem;
}

.technology12 img {
  width: 11.9rem;
}

.technology13 img {
  width: 11.4rem;
}

.js-marquee {
  display: flex;
  gap: 4rem;
}

.marquee {
  height: 11.3rem;
  display: grid;
  align-items: center;
  background: #040410;
  border-top: 0.1rem solid rgb(83, 80, 96, 0.5);
  border-bottom: 0.1rem solid rgb(83, 80, 96, 0.5);
}

.technologies_area h5 {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1;
}

/* ==================== framework_area ==================== */
.framework_area {
  padding: 14rem 0 20rem;
}

.framework_area .row {
  --bs-gutter-x: 0.7rem;
}

.framework_titiles {
  text-align: center;
}

.framework_titiles p {
  font-family: var(--thirdfont);
  font-weight: 600;
  font-style: italic;
  font-size: 4.304rem;
  line-height: 1.05;
}

.framework_titiles h2 {
  font-weight: 700;
  font-size: 9.723rem;
  line-height: 1.05;
}

.framework_titiles h3 {
  font-weight: 700;
  font-size: 4.729rem;
  line-height: 1.05;
}

.framework_titiles h1 {
  font-weight: 700;
  font-size: 17.43rem;
  line-height: 1.05;
  color: #fff;
}

.framework_content ul {
  display: grid;
  gap: 1.5rem;
}

.framework_content ul li {
  display: grid;
  grid-template-columns: 0fr 1fr;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 3.2rem;
  gap: 0.8rem;
}

.framework_content ul li img {
  margin-top: 0.9rem;
}

.framework_content {
  max-width: 61.1rem;
  margin-left: auto;
}

/* ================== industries_area ==================== */
.industries_area {
  position: relative;
  z-index: 1;
}

.industries_info_inner > img {
  width: 5.5rem;
}

.industries_info_inner {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.6rem;
  opacity: 0;
  transition: 0.25s ease;
  transition-delay: 0s;
  transform: translateX(2rem);
}

.industry_block.active .industries_info_inner {
  opacity: 1;
  transition-delay: 0.35s;
  transform: translateX(0);
}

.industries_info h4 {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
}

.industries_info ul li {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 1rem;
}

.industries_info ul li p {
  line-height: 2.6rem;
}

.industries_info ul li img {
  margin-top: 1rem;
}

.industries_blocks {
  display: flex;
  gap: 1rem;
}

.industry_block.active {
  max-width: 55.1rem;
  width: 100%;
  padding: 3.7rem 3rem 3rem 3.6rem;
  border: 0.1rem solid #80cafc;
  background: #050514;
  border-radius: 1rem;
}

.industry_block {
  height: 27.1rem;
  max-width: 19.4rem;
  width: 100%;
  border: 0.1rem solid #535060;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
  transition: 0.35s ease;
  overflow: hidden;
}

.plus_minus.v2 img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(46%) saturate(2798%)
    hue-rotate(181deg) brightness(100%) contrast(102%);
}

.plus_minus.v2 {
  position: absolute;
  right: 2.1rem;
  bottom: 2.2rem;
  display: flex;
  cursor: pointer;
  z-index: 1;
}

.preview_box h6 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.preview_box {
  background: #050525;
  position: absolute;
  height: calc(100% - 1.6rem);
  width: calc(100% - 2.2rem);
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  opacity: 1;
  transition: 0.35s ease;
  pointer-events: all;
}

.industry_block:hover,
.industry_block.active {
  border: 0.1rem solid #80cafc;
  box-shadow: 0 0 2rem 0 #099bffa8;
}

.industry_block.active .plus_minus.v2 .plus {
  display: none;
}

.industry_block.active .plus_minus.v2 .minus {
  display: block;
}

.industry_block.active .preview_box {
  opacity: 0;
  pointer-events: none;
}

.industries_box_img {
  position: absolute;
  width: 55.1rem;
  bottom: 0;
  left: 0;
  transition: 0.25s ease;
  transition-delay: 0s;
  transform: translateY(2rem);
  opacity: 0;
  pointer-events: none;
}

.industry_block.active .industries_box_img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.industries_icon img {
  width: 5.8rem;
}

.industries_icon1 img {
  width: 5.5rem;
}

.mid_bg {
  position: absolute;
  width: 100vw;
  left: 0;
  top: -33rem;
  opacity: 0.4;
  z-index: -1;
}

.spin_slow {
  animation: spin 30s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.accordion_collapse p {
  font-size: 2.3rem;
}


.footer_section {
  filter: grayscale(100%);
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  mix-blend-mode: saturation;
  pointer-events: none; /* allows clicking through the overlay */
}