/*
 * Project: MeedScore
 * File: CSS Boilerplate
 * Description: This CSS file serves as the foundational styling framework for the MeedScore platform.
 * Author: Talha Karim
 * Created On: [Insert Date]
 * Last Updated: [Insert Date]
 * Version: 1.0
 * 
 * Notes:
 * - This stylesheet is designed with reusable variables, following a Bootstrap-inspired design system.
 * - Font sizes, line heights, and dimensions are converted from px to em/em for consistency.
 * - Utility classes and responsive breakpoints ensure adaptability across devices.
 * - Follow the guidelines for future updates and extensions.
 */

 

 :root {
  /* Fonts */
  --font-hero-headline: 'Anton', sans-serif;
  --font-subheading-card-heading: 'Anton', sans-serif;
  --font-section-medium: "futura-pt", sans-serif;
  --font-section-small: "futura-pt", sans-serif;
  --font-body-navigation-buttons: "futura-pt", sans-serif;


  /* Gradients */
  .grad1 {
      background: #036DB0;
      background: url(lp-polygon.png),linear-gradient(0deg, rgba(2, 61, 99, 1) 0%, rgba(3, 109, 176, 1) 100%);
  }

  .grad2 {
    background: #036DB0;
    background: url(lp-polygon.png),linear-gradient(0deg, rgba(3, 109, 176, 1) 0%, rgba(2, 61, 99, 1) 100%);
  }

  /* Font Sizes (converted from px to em) */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  --fs-base: 9px; /* 16px */
  --lh-base: 20px; /* 20px */
  --fs-hero-headline: 5rem; /* 80px */
  --lh-hero-headline: 5rem; /* 80px */
  --fs-subheading-card-heading: 2rem; /* 48px */
  --lh-subheading-card-heading: 2.417rem; /* 70.67px */
  --fs-section-medium: 3rem; /* 48px */
  --lh-section-medium: 3.167rem; /* 50.67px */
  --fs-section-small: 2.5rem; /* 40px */
  --lh-section-small: 3.167rem; /* 50.67px */
  --fs-body-navigation-buttons: 1.667rem; /* 26.67px */
  --lh-body-navigation-buttons: 2.167rem; /* 34.67px */
  --fs-card-body-text: 1.8rem; /* 28.8 */

  /* Colors */
  --color-button-bg: #51c5d7;
  --color-button-text: #ffffff;
  --color-button-hover-bg: #cb4995;
  --color-footer-blue: #001e35;
  --color-primary-blue: #0f3e63;
  --color-secondary-blue: #0066a3;
  --color-text-secondary: #6d6e71;
  --color-green: #8fbf4f;

  /* Card Dimensions */
  --card-width: 20rem; /* 550px */
  --card-height: 28rem; /* 750px */

  /* Button Dimensions */
  --button-width: 13rem; /* 208px */
  --button-height: 3rem;
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   /* 48px */
}

/* Animation */
@keyframes fade-left {
  from {opacity: 0; transform: translateX(-500px);}
  to {opacity: 1; transform: translateX(0px);}
}

@keyframes fade-right {
  from {opacity: 0; transform: translateX(500px);}
  to {opacity: 1; transform: translateX(0px);}
}

@keyframes fade-top {
  from {opacity: 0; transform: translateY(500px);}
  to {opacity: 1; transform: translateY(0px);}
}

@keyframes fade-bottom {
  from {opacity: 0; transform: translateY(500px);}
  to {opacity: 1; transform: translateY(0px);}
}

/* Links */
.has-drop > a, .has-drop > .down-ar {
  pointer-events: none;
  cursor: default; /* Changes cursor to indicate it's not clickable */
}

/* icon svg */
.icon-svg {
  width: 25px;
  height: auto;
  color: var(--color-button-text);
  margin-right: 20px;
}
/* bread crumbs */
.abt-bread ul li:nth-child(3) a {color: var(--color-footer-blue);}
.about-sc.mission .abt-bread ul li:nth-child(3) a, .about-sc.mymit .abt-bread ul li:nth-child(3) a, .about-sc.team .abt-bread ul li:nth-child(3) a, .about-sc.whitepaper .abt-bread ul li:nth-child(3) a {
  color: var(--color-secondary-blue);
}
.hero-img.in-view {
  animation: fade-left 1s ease;
}
.hero-content.in-view {
  animation: fade-right 1s ease;
}
/* Whitepaper */
.pdfread {
  border: 5px solid var(--color-footer-blue);
}
button.prime-btn {
  background-color: var(--color-button-bg);
  padding: 0.625em 2.5em;
  border-radius: 0.625em;
  vertical-align: middle;
  transition: ease-in 0.2s;
  width: 100%;
}
button.prime-btn:hover {
  background-color: var(--color-button-hover-bg);
  transition: ease-out 0.2s;
}
.offer-card div:nth-child(1).in-view {
  animation: fade-top 600ms ease;
}
.offer-card div:nth-child(2).in-view {
  animation: fade-top 800ms ease;
}
.offer-card div:nth-child(3).in-view {
  animation: fade-top 1000ms ease;
}
.ecosystem {
  z-index: 10;
}
.ecosystem-img.in-view {
  animation: fade-left 600ms ease;
}
.ecosystem-content.in-view {
  animation: fade-right 800ms ease;
}
.mitsy.in-view {
  animation: fade-top 800ms ease;
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Typography */
html, body {
  -webkit-font-smoothing: antialiased; /* Chrome/Safari */
  -moz-osx-font-smoothing: grayscale;  /* Firefox */
  font-smooth: always; /* May help on some systems */
  text-rendering: optimizeLegibility; /* Better kerning and smoothing */
}

body {
  font-family: var(--font-body-navigation-buttons);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-header-body-text);
  font-weight: 400;
}

h1, .hero-headline {
  font-family: var(--font-hero-headline);
  font-size: var(--fs-hero-headline);
  font-weight: 400;
}

h2, .subheading, .card-heading {
  font-family: var(--font-subheading-card-heading);
  font-size: var(--fs-subheading-card-heading);
  font-weight: 400;
}

h3 {
  font-size: 1.75rem; /* 46px */
  line-height: 2.625rem; /* 60px */
  font-weight: 400;
}

.section-heading-medium {
  font-family: var(--font-section-medium);
  font-size: var(--fs-section-medium);
  line-height: var(--lh-section-medium);
}

.section-heading-small {
  font-family: var(--font-section-small);
  font-size: var(--fs-section-small);
  line-height: var(--lh-section-small);
}

.card-body {
  font-family: var(--font-body-navigation-buttons);
  font-size: var(--fs-card-body-text);
  line-height: var(--lh-body-navigation-buttons);
}

/* Button Styling */
button {
  outline: none;
  background: transparent;
  border: 0;
  font-size: 1em;
}

button a, .btn a {
  width: var(--button-width);
  height: var(--button-height);
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body-navigation-buttons);
  font-size: var(--fs-body-navigation-buttons);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

button a:hover, .btn a:hover {
  background-color: var(--color-button-hover-bg) !important;
  color: var(--color-button-text) !important;
}

.lp button a {
  background-color: var(--color-button-bg);
  padding: 0.6rem 0.95rem;
  border-radius: 0.625rem;
  vertical-align: middle;
  transition: ease-in 0.2s;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.575rem;
}

.lp button {
  /* position: relative; */
  /* top: 1rem; */
  margin: 10px 0;
  margin-top: 30px;
}

/* Footer Styling */
footer {
  background-color: var(--color-footer-bg);
  padding: 1.25em; /* 20px */
  color: var(--color-button-text);
}
.lower-footer-links {
  display: flex;
  justify-content: center;
}

.lower-footer-links a {
  padding: 0 10px;
  color: var(--color-button-text);
}

.lower-footer-links a:hover {
  text-decoration: underline;
}

/* Card Styling */
.card {
  width: var(--card-width);
  height: var(--card-height);
  border: 1px solid #ccc;
  border-radius: 1.5em; /* 24px */
  overflow: hidden;
  box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.1); /* 4px 6px */
  padding: 1em; /* 16px */
}

.card-heading {
  font-family: var(--font-subheading-card-heading);
  font-size: var(--fs-subheading-card-heading);
  line-height: var(--lh-subheading-card-heading);
  color: var(--color-primary-blue);
}

/* Suggested Utility Classes for Layout */
.container {
  max-width: 1600px;
  margin: 0 auto;
  z-index: 100;
  position: relative;
  width: 100%;
  padding: 0 6.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em; /* 16px */
}

.col {
  flex: 1;
  min-width: 15.625em; /* 250px */
}

/* Custom pages layout starts here */

/* New landing page */
.lp.hero-bg {
  padding: 10rem 0;
}

.lp.hero-bg .hero-bg::before {
  content: "";
}

.lp.hero-bg::before, .lp.hero-bg::after {
  content: "";
  background: none;
}

.lp.hero-bg .hero {
  display: flex;
  justify-content: center;
}

.lp.hero-bg .hero > div {
  width: 50%;
}

.lp.hero-bg .hero .hero-img {
  max-width: 500px;
}

.lp.hero-bg .hero .hero-img img {
  width: 100%;
  height: auto;
}

.lp.hero-bg .hero .hero-content {
  text-align: left;
  display: block;
}

.lp.hero-bg .hero .hero-content .hero-buttons {
  display: flex;
  flex-direction: column;
  margin: 0px;
}

.lp p {
  font-size: 1.75rem;
  line-height: 1.8rem;
}

.lp h2 {
  letter-spacing: 0.0em;
  line-height: 2.5rem;
  font-size: 2.25rem;
  padding: 0.675rem 0;
}

.lp li {
  font-size: 1.5rem;
  margin-left: 1.25rem;
  line-height: 2.25rem;
}

.lp .hero-buttons li a {
    color: #fff;
    font-weight: 600;
    line-height: 1.8rem;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.lp .hero-buttons {
    padding-top: 10px;
}

.lp .hero-buttons li a:hover {
    text-decoration: underline;
}

.lp.section2 {
  background-image: url(lp-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background-color: #0066a30d;
  padding: 10rem 0;
  color: var(
  --color-primary-blue);
}

.lp.section2 button a {
  right: 0;
} 

.lp.section2 .container {
  display: flex;
  align-items: flex-end;
}

.lp.section2 .content-left-para {
  display: flex;
  padding-top: 1rem;
}

.lp.section2 .content-left-para p {
  padding-right: 5rem;
}

.lp.section2 h2 {
  font-size: 3.5rem;
  line-height: 4.761rem;
}

.lp.section2 img {
  width: 70%;
  max-width: 500px;
}

.lp.section2 .content-left {
  width: 70%;
}

.lp.section3 {
  padding: 3rem 0;
  background-color: var(--color-primary-blue);
}

.lp.section3 img {
  width: 100%;
}

.lp.section3 .content-top > div {
  max-width: 500px;
  margin: 0 auto;
}

.lp.section3 .content-top {
  text-align: center;
  padding: 2rem 0;
}

.lp.section3 .content-middle {
  display: flex;
  justify-content: center;
}

.lp.section3 .content-middle .content-left {
  width: 50%;
}

.lp.section3 .content-middle .content-right {
  width: 50%;
}

.lp.section3 h4 {
  font-size: 3.5rem;
  line-height: 1rem;
  margin-bottom: 0.25em;
  color: var(--color-green);
  font-weight: 400;
}

.lp.section3 h2, .lp.section3 p, .lp.section3 li {
  color: var(--color-button-text);
}

.lp.section3 .content-middle .content-left {
  padding-right: 7rem;
}

.lp.section3 .content-bottom {
  padding: 1rem 0;
  margin: 0 auto;
  text-align: center;
}

.lp.section4 {
  background-color: var(--color-secondary-blue);
  padding: 3rem 0;
}

.lp.section4 .content-top {
  text-align: center;
}

.lp.section4 .content-top {
  width: 100%;
}

.lp.section4 .content-top > div {
  padding-bottom: 3rem;
}

.lp.section4 .content-top img {
  width: 90%;
  border: 3px solid #00000047;
  filter: drop-shadow(10px 15px 10px #00000070);
}

.lp.section4 .content-top h2 {
  color: var(--color-button-text);
  font-size: 3.823rem;
  text-align: left;
}

.lp.section4 .content-middle {
  display: flex;
  justify-content: center;
}

.lp.section4 .content-middle .content-left, .lp.section4 .content-middle .content-right {
  width: 50%;
  color: var(--color-button-text);
}

.lp.section4 .content-middle .content-left p {
  padding-right: 7rem;
}

.lp.section4 .content-middle .content-right img {
  max-width: 300px;
  width: 100%;
}

.lp.section4 .content-middle .content-right > div {
  text-align: center;
  padding: 2rem 0;
}

.lp.section4 .content-bottom {
  text-align: center;
}

.lp.section5 {
  padding: 5rem 0;
}

.lp.section5 .container {
  display: flex;
  justify-content: center;
}

.lp.section5 .container .content-left > div {
  max-width: 400px;
  margin: 0 auto;
}

.lp.section5 .container .content-left > div img {
  width: 100%;
  filter: drop-shadow(10px 15px 10px #00000070);
}

.lp.section5 .container .content-left, .lp.section5 .container .content-right {
  width: 50%;
}

.lp.section5 .container .content-right {
  color: var(--color-primary-blue);
}

.lp.section5 .container .content-right div img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.lp.section5 .container .content-right > div:last-child {
  text-align: center;
  padding: 30px 0px;
}

.lp.section6 {
  background-color: var(--color-primary-blue);
  padding: 5rem 0;
  color: var(--color-button-text);
}

.lp.section6 .content-container {
  display: flex;
  justify-content: center;
}

.lp.section6 .content-container .content-left, .lp.section6 .content-container .content-right {
  width: 50%;
}

.lp.section6 .content-container .content-left {
  padding-right: 5em;
}

.lp.section6 h2 {
  padding-top: 0;
} 

.lp.section6 .content-container .content-left p:last-child {
  padding: 2em 0;
}

.lp.section6 .content-bottom img {
  max-width: 300px;
  width: 60%;
}

.lp.section6 .content-bottom {
  width: 100%;
  text-align: center;
}

.lp.section7 {
  background-color: var(--color-secondary-blue);
  padding: 0rem 0 5rem;
  color: var(--color-button-text);
  position: relative;
}

.lp.section7 .content-top h2 {
  padding-top: 0;
}

.lp.section7 .content-top img {
  position: relative;
  top: 90px;
  right: 50px;
  z-index: -1;
  width: 100%;
  max-width: 44rem;
}

.lp.section7 .content-container {
  display: flex;
  justify-content: center;
}

.lp.section7 .content-container .content-left, .lp.section7 .content-container .content-right {
  width: 50%;
}

.lp.section7 .content-container .content-left {
  padding-right: 5em;
}

.lp.section7 .content-container .content-right .content-right-image {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.lp.section7 .content-container .content-right .content-right-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.lp.section7 .content-container .content-right .content-right-image img {
  width: 60%;
}


/* New landing page end */
div#mySidenav ul {
  flex-direction: column;
}

.mob-nav .drop-box {
  left: 0;
  top: 38px;
}

.sidenav div.mob-nav > ul {
  flex-direction: column;
  align-items: flex-start;
}

.sidenav div.mob-nav > ul > li > a {
  padding: 10px;
  margin: 30px 0px 30px 20px;
  border-radius: 10px;
}

header .sidenav div.mob-nav > ul > li:last-child > a {
  margin-top: 70px;
  width: 200px;
}

.sidenav div.mob-nav > ul > li > a:hover {
    background-color: var(--color-button-hover-bg);
    transition: ease-out 0.2s;
}

li.has-drop {
  position: relative;
  transition: ease-in 2s;
}

img.down-ar {
  width: 16px;
  margin-left: 7px;
}

.drop-box {
  z-index: 100;
  position: absolute;
  background: #ffff;
  width: 300px;
  padding: 10px;
  top: 40px;
  border-radius: 10px;
  display: none;
  transition: ease-in 2s;
}

.drop-box ul {
  display: block;
}
.drop-box ul li {
  text-align: left;
  margin: 0;
  display: block;
}
.drop-box ul li a {
  padding: 10px 15px !important;
  color: black;
  display: block;
  background: transparent !important;
  font-weight: 300;
  transition: ease-in 0.2s;
}

.drop-box ul li a:hover {
  background: #0f3e63 !important;
  color: #ffff;
  border-radius: 10px !important;
  transition: ease-in 0.2s;
}
li.has-drop:hover .drop-box {
  display: block;
  transition: ease-in 2s;
}
/* Landing page */
header {
  background-color: var(--color-primary-blue);
  display: flex;
  justify-content: space-between;
  padding: 2.1875em 4.375em; /* 35px 70px */
  z-index: 1000;
  position: relative;
}

header .logo img {
  height: 5.625em; /* 90px */
  width: 100%;
  object-fit: contain;
}

header ul {
  display: flex;
  align-items: center;
}

header ul li:last-child a {
  background-color: var(--color-button-bg);
  padding: 0.625em 2.5em; /* 20px 80px */
  border-radius: 0.625em; /* 10px */
  vertical-align: middle;
  transition: ease-in 0.2s;
}

header ul li:last-child a:hover {
  background-color: var(--color-button-hover-bg);
  transition: ease-out 0.2s;
}

header ul li {
  text-align: center;
  margin: 0 2.5em;
  list-style: none;
  height: 39px;
  display: flex;
  align-items: center;
}

header ul li a {
  color: var(--color-button-text);
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.6rem;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  color: var(--color-button-text);
  text-align: center;
}

.hero h1 {
  letter-spacing: 0.0rem;
  line-height: 2.75rem;
  font-size: 2.5rem;
  padding: 0.75rem 0;
}

.hero h3 {
  line-height: 2.275rem;
}

.hero-content {
  width: 1100px;
}

.hero-bg {
  background-color: var(--color-secondary-blue);
  display: flex;
  justify-content: center;
  padding: 8.75em 0; /* 140px */
  position: relative;
}

.hero-bg::before, .ecosystem-bg::before {
  content: "";
  background: url(hexagone-a.png) no-repeat;
  position: absolute;
  left: -2.188em; /*35px*/
  width: 21.563em; /*345px*/
  height: 26.563em; /*425px*/
  bottom: 3.125em; /*50px*/
  background-size: contain;
  z-index: 1;
}

.hero-bg::after, .ecosystem-bg::after {
  content: "";
  background: url(hexagone-b.png) no-repeat;
  position: absolute;
  right: 0em; /*80px*/
  width: 30.063em; /*481px*/
  height: 26.563em; /*425px*/
  top: 3.125em; /*50px*/
  background-size: contain;
  z-index: 1;
}

.hero div {
  margin: 0 4.5em; /* 40px */
}

.hero-img img {
  height: 365px;
  position: relative;
  z-index: 10;
}

.hero-img p {
  text-wrap: wrap;
  padding: 0.625em 0.5em; /* 10px */
  font-size: 2em;
  width: 22em;
  line-height: 1em;
}

.tagline {
  background-color: var(--color-primary-blue);
  text-align: center;
  color: var(--color-button-text);
  padding: 6.25em 0; /* 100px */
}

.tagline h2 {
  letter-spacing: 0.1rem; /* 3px */
  font-family: var(--font-section-medium);
  font-size: 2rem;
}

.product-section {
  width: 100%;
}

.product-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 100%;
  text-wrap: wrap;
  height: 58em; /* 923px */
}

.product-card-content {
  width: 40%;
  padding: 0 6.25em; /* 100px */
}

.product-card-content h2 {
  line-height: 1.5em;
  color: #0f3e63;
  font-size: 2rem;
}

.product-card-content button {
  margin-top: 3.375rem; /* 70px */
}

.product-card-content button a {
  background-color: var(--color-button-bg);
  padding: 0.95rem 3rem; /* 20px 80px */
  border-radius: 0.625rem; /* 10px */
  vertical-align: middle;
  font-size: var(--fs-card-body-text);
  font-size: 1.5rem;
}

.product-card-img {
  width: 30%;
  padding: 0 6.25em; /* 100px */
  padding-left: 0px;
}

.product-card-img img {
  height: 120px;
  width: auto;
}
.offer-card {
  display: flex;
  justify-content: center;
  padding: 15.625em 0; /* 250px */
  background-color: var(--color-secondary-blue);
}

.offer-card .card {
  margin: 0 6.25em; /* 100px */
  padding: 3.125em; /* 50px */
  text-align: center;
  background-color: var(--color-button-text);
}

.offer-card .card .card-heading {
  padding-bottom: 0.5em; /* 30px */
}

.offer-card .card img {
  height: 15.625em; /* 250px */
  width: 15.625em; /* 250px */
  object-fit: contain;
  vertical-align: middle;
}

.offer-card .card .card-content {
  color: var(--color-text-secondary);
  font-size: 2em; /* 32px */
  line-height: 1.5em; /* 40px */
  padding-top: 0.625em; /* 10px */
}

.ecosystem-bg {
  background-color: var(--color-primary-blue);
  padding: 9.375em 0; /* 150px */
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.ecosystem {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-button-text);
  width: 80%;
}

h3.ecosystem-content.meedanimate {
  text-align: left;
}

.ecosystem img {
  height: 500px;
}

.ecosystem img, .ecosystem h3 {
  padding: 0 3.125em; /* 50px */
}

.mitsy {
  text-align: center;
  padding: 7.5em 0; /* 120px */
}

.mitsy.meedanimate {
  display: flex;
}

.mitsy.meedanimate img {
  width: calc(100%/3);
}

.footer {
  display: flex;
  background-color: var(--color-secondary-blue);
}

.footer nav {
  color: var(--color-button-text);
  text-decoration: none;
}

.footer .mob-nav ul li .drop-box a {
    color: black;
}

.footer .drop-box {
  position: fixed;
  left: 150px;
  bottom: 15px;
  height: auto;
  top: auto;
  border: 1px solid var(--color-footer-blue);
  transition: ease-out 1.2s;
}

/* .footer .drop-box::after {
  position: absolute;
  content: "x";
  font-size: 20px;
  font-family: monospace;
  color: #fff;
  background: var(
  --color-footer-blue);
  padding: 2px 9px 14px 9px;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  top: 5px;
  right: 5px;
} */

.footer .drop-box ul li {
    margin: 0;
}

.footer .mob-nav ul li .drop-box a:hover {
    color: #fff;
}

.footer {
  background-color: #001e35;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:4.5em 4.375em;
}

.footer ul {
  text-align: left;
}

.footer ul li {
  margin: 15px 40px;
  list-style: none;
}

.footer ul li a {
  color: var(--color-button-text);
  text-decoration: none;
  font-size: 1.125rem;
}

.footer-social {
  text-align: center;
  color: var(--color-button-text);
}

.footer-social div {
  padding: 10px 0;
}

.footer-social div.social-links img {
  padding: 0px 20px;
  height:30px;
}

.footer-products {
  display: flex;
  flex-direction: column;
}

.footer-products {
  font-size: var(--fs-card-body-text);
}

.footer-products img {
  margin: 10px 35px;
  height: 35px;
}

.footer-social {
  font-size: 1.125rem;
}

/* frontend css  */
.mitsy img {
  width: 100%;
}

/* about pages  */
.mission {
  background: #001e35;
}
.mission {
  background: #001e35;
}
.mission button.prime-btn {
  width: auto;
}
section.about-sc{
  height: 400px;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}
.abt-sc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.abt-sc h2 {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.abt-sc p {
  color: #fff;
  font-size: 2em;
  line-height: 23px;
}
.abt-bread ul {
  display: flex;
  list-style: none;
  margin-bottom: 30px;
}
.abt-bread ul li a {
  color: #fff;
  font-size: 2.25em;
  text-decoration: none;
  margin-right: 11px;
}
.abt-cont {
  width: 80%;
}
.abt-img {
  width: 50%;
  position: relative;
  height: 400px;
}
.abt-img img {
  position: absolute;
  right: -21em;
  bottom: 0;
  height: 380px;
  z-index: 1;
}
section.about-charactor-sc {
  position: relative;
  padding: 3.75em  0em;
}
img.fl-1 {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 1;
}
img.fl-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.ac-img {
  text-align: center;
  z-index: 100;
}
.prime-btn {
  background-color: var(--color-button-bg);
  padding: 0.625em 1.5em;
  border-radius: 0.625em;
  height: auto;
  width: 212px;
  display: flex;
  text-align: center;
  justify-content: center;
  line-height: 1.1 !important;
  font-size: 1.85em;
  color: #ffff;
  text-decoration: none;
}
a{
  text-decoration: none;
}
.btn-sc {
  margin-top: 20px;
}
.ac-img img {
  height: 500px;
}
/* team about  */
.team-inner-sc .our-img {
    margin-right: 40px;
}

.team-inner-sc h2 {
    font-size: 5em;
}
.team-inner-sc {
  display: flex;
  align-items: center;
  width: 830px;
  margin: 0px auto;
  justify-content: space-evenly;
  z-index: 1;
  position: relative;
}
.our-img img {
  height: 105px;
}


.bg-blue {
  background-color: #dcf3f7;
}

.team-bx {
  padding: 25px 0px;
}
.team-cont {
  padding-left: 30px;
}

.team-cont a {
  font-size: 3.25em;
  line-height: normal;
  text-decoration: underline;
  font-weight: 500;
  color: #0f3e63;
}

.team-cont p {
  font-size: 2.25em;
  line-height: normal;
  color: #0f3e63;
  margin: 0;
  margin-top: 10px;
}

.team-img img {
  height: 200px;
}
.team-head .team-inner-sc {
    justify-content: start;
    width: 600px;
}

.our-img {
    margin-right: 100px;
}

img.fl-3 {
  position: absolute;
  right: 0;
  top: 32%;
}

/* contact us */

.about-sc.mission.contact .abt-cont p a {
  color: var(--color-button-text);
  text-decoration: underline;
}

.about-sc.mission.contact .abt-cont p {
  line-height: 2.5em;
}

.about-sc.mission.contact .abt-cont p img {
  margin-bottom: -5px;
}

.about-charactor-sc.contact{
  overflow: hidden;
}

section.about-charactor-sc.contact form {
  font-size: 2em;
  text-align: left;
}

section.about-charactor-sc.contact section.contact-sc {
  display: flex;
  justify-content: center;
}

section.about-charactor-sc.contact .form-section {
  padding: 50px;
  border: 6px solid var(--color-footer-blue);
  border-radius: 10px;
  background: var(--color-footer-blue);
}

section.about-charactor-sc.contact form label {
  color: var(--color-button-text);
}

section.about-charactor-sc.contact form input {
  color: var(--color-footer-blue);
  font-family: var(--font-section-small);
  width: 200px;
  padding: 5px;
  font-size: 0.75em;
}

section.about-charactor-sc.contact form div.split-2 textarea {
  width: 100%;
  color: var(--color-footer-blue);
  font-family: var(--font-section-small);
  padding: 5px;
  font-size: 0.75em;
}

section.about-charactor-sc.contact form .split-3 input {
  width: 100%;
  padding: 10px 0;
  margin: 10px;
  font-size: inherit;
  font-family: var(--font-body-navigation-buttons);
  border: 0;
  transition: ease-in 0.2s;
}

section.about-charactor-sc.contact form .split-3 input:hover {
    background: var(--color-primary-blue);
    border: 0;
    color: var(--color-button-text);
    transition: ease-in 0.2s;
}

section.about-charactor-sc.contact form div.split-1, section.about-charactor-sc.contact form div.split-2, section.about-charactor-sc.contact form div.split-3 {
  display: flex;
  flex-wrap: no-wrap;
  flex: 1;
  margin: 10px 0px;
}

section.about-charactor-sc.contact form div div {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  width: 100%;
  line-height: 2em;

}

.split-2,.split-3 {
  margin: 0 10px;
}
.powered-by p {
  text-align: right;
  font-size: 0.75em;
  color: var(--color-button-text);
}
section.about-charactor-sc.contact form div div.form-head {
  color: #ffffff; 
  text-align: center; 
  font-size: 1.5em; 
  padding-bottom: 20px; 
  text-transform: capitalize; 
  margin-top: -40px;
}


/* terms and conditions , privacy policy */
section.about-charactor-sc.terms .req-content h2, section.about-charactor-sc.terms .req-content h4, section.about-charactor-sc.terms .req-content p {
  text-align: left;
}
section.about-charactor-sc.terms .req-content ul {
  text-align: left;
  font-size: 1.917em;
  line-height: normal;
  color: #0f3e63;
  margin-top: 20px;
  margin-left: 20px;
}
section.about-charactor-sc.terms .req-content a {
  text-decoration: underline;
  color: var(--color-footer-blue);
}

section.about-sc.terms .timestamp {
  padding: 5px;
  /* border: 3px solid var(--color-button-text); */
  margin-bottom: 20px;
  width: 100%;
  max-width: 330px;
  border-radius: 5px;
  background: #fff;
  color: var(--color-footer-blue);
}

section.about-sc.terms .timestamp strong {
  font-style: italic;
}
/* services page on chain  */

.onchain {
  background: #f2c053;
}

.onchain .abt-cont {
  width: 120%;
}
section.badges-sc {
  background: #0f3e63;
  padding: 100px 0px;
}
.bdg-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdg-inner-box {
  display: flex;
}

.bdg-inner-box {
  display: flex;
}
.bg-box {
  background: #ffff;
  border-radius: 10px;
  padding: 40px 26px;
  text-align: center;
  margin-right: 29px;
  width: 300px;
}

.bg-box span {
  font-size: 7.5em;
  line-height: normal;
  color: #cb4995;
  font-weight: 700;
}

.bg-box h3 {
  font-family: 'Anton';
  font-size: 2.5em;
  color: #0f3e63;
  font-weight: 500;
  margin-bottom: 10px;
}

.bg-box p {
  color: #6d6e71;
  font-size: 1.8em;
  line-height: normal;
  width: 210px;
  margin: 0px auto;
}
.bg-box .btn-sc button {
  text-align: center;
  margin: 0px auto;
  width: auto;
}

.badge-sc h2 {
  color: #fff;
  line-height: normal;
  font-size: 3.5em;
  margin-bottom: 20px;
}
.bdg-img {
  margin-right: 100px;
}
.bdg-img img {
  height: 300px;
}

/* service page api */
.api {
  background: #84bf4f;
}
section.api-req {
  padding: 100px 0px;
  display: flex;
  align-items: center;
  position: relative;
}

.req-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.req-img {
  margin: 0px auto;
  width: 30%;
  text-align: right;
}

.req-hd {
  display: flex;
  align-items: center;
  justify-content: end;
}

.req-hd a {
  margin-right: 50px;
}

.req-content {
  width: 75%;
}

.req-content h2 {
  color: #0f3e63;
  font-size: 3.5em;
  text-align: right;
}

.req-content p {
  font-size: 1.917em;
  line-height: normal;
  text-align: right;
  color: #0f3e63;
  margin-top: 20px;
}

section.label-main {
  background: #0f3e63;
  padding: 100px 0px;
}

.labe-sc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.labe-sc h2 {
  color: #ffff;
  font-size: 40px;
  margin: 0;
  margin-right: 80px;
}

.req-content h4 {
  text-align: right;
  font-size: 2em;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #0f3e63;
}

.faq-sc .req-main {
  align-items: self-start;
}

.slider {
  position: relative;
  width: 100%;
  /* height: 300px; */
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #ccc;
}

.slider ul {
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
  transition: transform 0.5s ease-in-out;
}

.slider li {
  min-width: 100%;
  /* height: 300px; */
}

.slider img {
  object-fit: cover;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 10px;
}

.controls button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  cursor: pointer;
}

.controls button:hover {
  background-color: rgb(221 219 219 / 50%);
}

.controls button img {
  width: 100%;
}

.controls button {
  background-color: rgb(239 239 239 / 50%);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  cursor: pointer;
  height: 70px;
  width: 70px;
  border-radius: 41px;
  text-align: center;
}

.req-img img {
  height: 140px;
}

/* pdf page  */

.pdfread iframe {
  width: 100%;
  height: 700px;
}

section.pdf-sc {
  padding: 90px 0px;
}

.pdf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #0f3e63;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 21px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.side-mn {
  padding-top: 11px;
}


.for-mobile{
  display: none;
}
.for-desktop{
display: block;
}

