:root {
 --text-50: #f0eef6;
--text-100: #e0deed;
--text-200: #c2bddb;
--text-300: #a39cc9;
--text-400: #857ab8;
--text-500: #6659a6;
--text-600: #524785;
--text-700: #3d3663;
--text-800: #292442;
--text-900: #141221;
--text-950: #0a0911;

--bg: #f4f3f9;
--background-50: #efeef6;
--background-100: #e0ddee;
--background-200: #c1bbdd;
--background-300: #a299cc;
--background-400: #8377bb;
--background-500: #6355aa;
--background-600: #504488;
--background-700: #3c3366;
--background-800: #282244;
--background-900: #141122;
--background-950: #0a0911;

--primary-50: #f2f2f2;
--primary-100: #e6e6e6;
--primary-200: #cccccc;
--primary-300: #b3b3b3;
--primary-400: #999999;
--primary-500: #808080;
--primary-600: #666666;
--primary-700: #4d4d4d;
--primary-800: #333333;
--primary-900: #1a1a1a;
--primary-950: #0d0d0d;

--secondary-50: #f2f2f2;
--secondary-100: #e6e6e6;
--secondary-200: #cccccc;
--secondary-300: #b3b3b3;
--secondary-400: #999999;
--secondary-500: #808080;
--secondary-600: #666666;
--secondary-700: #4d4d4d;
--secondary-800: #333333;
--secondary-900: #1a1a1a;
--secondary-950: #0d0d0d;

--accent-50: #f0f0f5;
--accent-100: #e0e0eb;
--accent-200: #c2c2d6;
--accent-300: #a3a3c2;
--accent-400: #8585ad;
--accent-500: #666699;
--accent-600: #52527a;
--accent-700: #3d3d5c;
--accent-800: #29293d;
--accent-900: #14141f;
--accent-950: #0a0a0f;
--text: #08070d;
--background: #f4f3f9;
--primary: #333333;
--secondary: #222222;
--accent: #020203;
--font-scale: 1.333;
    --p: 1rem;
    --h5: calc(var(--p) * var(--font-scale));
    --h4: calc(var(--h5) * var(--font-scale));
    --h3: calc(var(--h4) * var(--font-scale));
    --h2: calc(var(--h3) * var(--font-scale));
    --h1: calc(var(--h2) * var(--font-scale));
    --small: calc(var(--p) / var(--font-scale));
    --margin-lg: 0 12%;
    --margin-md: 0 6%;
    --border1: 1rem;
    --border05: 0.5rem;


}
*{
  margin: 0;
  padding: 0;
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transition: .2s !important;
}

nav {
height: 10vh;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 5%;
position: fixed;
top: 0;
border-bottom: 1px solid #000;
width: 90%;
background: var(--bg);
z-index: 10;
}
nav li {
list-style: none;
}
nav .logo {
font-weight: bold;
font-size: 1.5em
}
nav .active a {
color: #fff !important;
background: #000;
border-radius: .4em;
}
nav .links li a {
height: 3em;
padding: 0 1em;
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
gap: .4em;
}
nav .midlinks a:hover {
color: #333 !important;
background: #ddd;
border-radius: .4em;
position: relative;
top: 0.2em;
}
nav .midlinks, .rearlinks {
display: flex;
gap: 1em;
}
nav .midlinks a, .rearlinks a {
color: #000;
}
.rearlinks i {
font-weight: 900 !important;
}

body {
    background: #fff;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: var(--margin-lg);
    width: auto !important;
    font-family: 'Poppins', ui-sans-serif;
    color: var(--text);
    background-color: var(--bg);
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    line-height: 1.75;
}
header {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.header {
  height: 90vh;
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 2rem 6rem;
  color: var(--text);
}
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3em;
    width: 60%;
}
.hero-text>h1 {
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.3;
}
h1 {
    font-size: var(--h1);
    letter-spacing: 0;
    font-weight: 700;
    color: var(--text);
}
.font-effect {
    font-style: italic;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text);
    color: transparent;
}
.hero-img {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.mondrian {
    max-width: 100%;
}
.hero-cta {
    display: flex;
    flex-direction: row-reverse;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: flex-end;
}
a {
  text-decoration: none;
}
.primary-button {
    padding: 0.5em 2em;
    background-color: var(--primary);
    color: var(--bg);
    border-radius: var(--border05);
    transition: transform ease 0.2s, box-shadow ease 0.2s;
    display: inline-block;
    font-size: var(--p);
    z-index: 2;
    white-space: nowrap;
}
.secondary-button {
    padding: 0.5em 2em;
    background-color: #2121214d;
    color: var(--text);
    border-radius: var(--border05);
    display: inline-block;
    font-size: var(--p);
    z-index: 1;
    cursor: pointer;
    transition: transform ease 0.2s;
    white-space: nowrap;
}

header .main a {
  color: var(--rich-black-2);
  background: var(--text);
  width: 12em;
  height: 2.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: .5em;
  text-decoration: none;
  font-weight: bold;
  margin-top: 2em;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6em;
    margin: 5rem 0;
    width: 100%;
}
header .main .span1 {
  color: var(--slate-blue);
}
.skeleton img {
  width: 100%;
}
.features {
  color: var(--text);
}
.features .title {
  text-align: center;
  font-weight: bold !important;
  margin-bottom: 2em;
}
.title h1 {
  font-size: 3em;
  margin: .8em;
}
.title p:first-child {
  color: #428572;
  font-size: .9em;
  font-weight: 900;
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4em 0 4em;
  gap: 2em;
  margin-top: 6em;
 
}
.grid .f-list {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-list i {
  color: var(--plum-web);
  background: var(--raisin-black);
  height: 3em;
  width: 3em;
  border-radius: .3em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  margin-bottom: 1.2em;
}
.bento-sub {
  color: #25D366;
}
.f-list:first-child i {
  color: var(--slate-blue);
}
.f-list:last-child i {
  color: #428572;
}
.f-list:nth-child(3) i {
  color: orange;
}
.f-list p {
  font-size: .8em;
}
.f-list h2 {
  font-size: 1.3em;
  margin-bottom: .9em;
  font-weight: bold;
}
.display {
  display: flex;
  align-items: center;
  gap: 4em;
  padding: 4em;
  color: var(--text);
}
.display h1 {
  font-weight: bold;
  font-size: 2em;
}
.display p {
  color: #999;
  line-height: 2em;
}
.display img, .display section {
  width: 100% !important;
  display: block;
}
.display img {
  border-radius: .5em;
}
.section.column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: center;
    align-items: center;
}
.section.column > h2 {
    text-align: center;
    font-size: var(--h2);
}
.section-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}
.section-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 2.5rem;
    gap: 20px;
    background-color: #3333330d;
    border-radius: var(--border1);
}
.section-card-img {
    height: 5rem;
}
.highlight {
    font-weight: 400;
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: var(--h4);
}
.highlight:before {
    content: "";
    height: 50%;
    width: 100%;
    display: block;
    z-index: -5;
    opacity: 30%;
    position: absolute;
    transition: all .3s ease;
    background: linear-gradient(
180deg,transparent 50%,var(--accent) 50%);
}


.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
    color: var(--text);
    margin-bottom: 2em;
}
.accordion-item {
    margin-top: 16px;
    border-radius: 6px;
    background: var(--rich-black);
    color: var(--text);
    font-size: 2em;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: .6em;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: .6em;
    line-height: 22px;
    font-weight: 300;
    color: #999;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
     transition: 1s ease-in-out; /* Add transition property */
    overflow: hidden; /* Hide overflow */
    max-height: 0; /* Initially collapse the content */
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
     display: block;
    max-height: 500px; /* Adjust max-height to your content's expected maximum height */
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}


.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: 60% 40%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}
.grid-wrapper li {
    list-style-type: none;
    text-align: center;
    max-width: 100%;
    padding: 5rem 1rem;
    border-radius: var(--border1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1em;
    gap: 10px;
    color: #fff !important;
}
.first-row-col1 {
    grid-area: 1 / 1 / 2 / 5;
}
.first-row-col2 {
    grid-area: 1 / 5 / 2 / 6;
}
.second-row-col1 {
    grid-area: 2 / 1 / 3 / 4;
}
.second-row-col2 {
    grid-area: 2 / 4 / 3 / 6;
}
.first-row-col2 h3 {
  color: #fff;
  padding: 1em;
}
.scale h1 {
  color: #888;
  padding-right: 9em;
  font-size: 2em;
  margin-bottom: 1em;
}
.scale h3 {
  font-weight: bold;
   background: linear-gradient(90deg, #ff7e5f, #feb47b, royalblue, dodgerblue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            font-weight: bold;
}
.scale h1 b {
  color: #000;
}
.scale a {
  color: #fff;
  text-decoration: none;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  width: 10em;
  border-radius: .5em;
}
.primary-color-box {
    background-color: var(--primary);
    color: var(--text);
    font-weight: 700;
    margin: 0;
}
.secondary-color-box {
    background-color: var(--secondary);
    color: var(--text);
    font-weight: 700;
    margin: 0;
}
.text-color-box {
    position: relative;
    background-color: var(--text);
    color: var(--bg);
    margin: 0;
}
.accent-color-box {
    background-color: var(--accent);
    color: var(--text);
    margin: 0;
}
.msc-icon {
    position: absolute;
    left: -120px;
    height: 120%;
}
h4 {
    font-size: var(--h4);
    font-weight: 700;
}
.link.bento-link {
    /* background-position-y: -0%; */
    background-image: linear-gradient(
180deg,transparent 50%,var(--bg) 50%)!important;
    transition: all .1s ease;
    background-size: 2px;
    background-size: auto 190%;
    padding: 3px 0;
    color: #fff;
}




@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
    nav .midlinks {
      display: none;
    }
    .scale h1 {
      padding-right: 1em;
    }
}
.underline {
    position: relative;
    display: inline-block;
}
.underline:before {
    content: '';
    width: 100%;
    height: 13px;
    background: var(--zomp);
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: -1;
}







footer {
     display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
    border-radius: 10px;
    background-color: var(--primary-100);
    color: var(--text);
    padding: 3em 5em;
    width: 100%;
    margin-bottom: 10em;

}
footer h1 {
  color: var(--slate-blue);
  margin-bottom: 1.2em;
}
footer ul {
  display: flex;
  gap: 4em;
  margin-bottom: 1.2em;
}
footer li {
  list-style: none;
}
footer li a {
  text-decoration: none;
  color: var(--text);
}
footer a {
  text-decoration: none;
  color: var(--text);
}
footer p {
  color: #999;
  margin-top: 2em;
}
.socials {
  display: flex;
  gap: 2em;
}


@media screen and (max-width: 767px) {
  .features .grid {
   grid-template-columns: repeat(1, 1fr); 
  }
  .header {
    flex-direction: column;
    height: auto;
    margin: 2rem;
  }
  .section-cards {
    flex-direction: column;
  }
  .section-card {
    padding: 5%;
    width: 90%;
  }
  .hero-img {
    width: 90%;
  }
  .hero-text {
    width: 100%;
  }
  .hero-text>h1 {
    font-size: 3em;
  }
  .first-row-col1 h2 {
    font-size: 2em !important;
  }
  .first-row-col2 h3 {
    font-size: 1em !important;
  }
  .grid-wrapper li {
    z-index: -2;
  }
  .msc-icon {
    z-index: -1;
  }
  .second-row-col1 h4, .second-row-col1 a {
    color: #000 !important;
  }
  body {
    margin: 2em;
  }
  main {
  margin: 0;  
  }
  footer {
    padding: 5%;
  }
  .underline::before {
    display: none;
  }
  .display {
    flex-direction: column;
    padding: 2em;
  }
  .accordion {
    min-width: auto;
  }
  nav {
    padding: 0 2em;
  }
  .title h1 {
    font-size: 1.8em;
  }
  .title p {
    padding: 0 1em;
  }
}




/* Animations */
@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.bounce {
  animation: bounce 1s ease-in-out infinite;
}

.grad-1 {
            background: linear-gradient(90deg, #ff7e5f, #feb47b, royalblue, dodgerblue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            font-weight: bold;
        }
        .member {
          text-align: center;
          padding: 0 2em;
          font-size: 2em;
        }
.auto_slider_container{
  max-width: 1000px;
  width: 100%;
  display: flex;
  margin: auto;
  overflow: hidden;
}
.auto_slider{
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotation 30s linear infinite;
}
.auto_slider li{
  font: 16px/1.2 "Roboto";
  padding: 15px;
  display: flex;
  flex: 1 1;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  width: 100%;
  background: #ddd;
  margin: 0px 15px;
  box-sixing: border-box;
  border-radius: 25px
}
.auto_slider li img {
  width: 100%;
}
@keyframes rotation {
 0% {
  transform:translateX(0)
 }
 100% {
  transform:translateX(-100%)
 }
}
