:root {
  --primarycolor: #014D4E;
  --secondarycolor: #d2f1ff;
  --bodycolor: #ffffff;
  --cardbg: #e9f8ff;
  --innerCard: rgba(255, 255, 255, 1);
  --btn-fill: #014D4E;
  --btn-outline: #014D4E;
  --btn-text: white;
  --btn-text_sec: white;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --primarycolor: #a6d7f5;
    --secondarycolor: #011a266f;
    --bodycolor: #1e1e1e;
    --cardbg: #072d3e;
    --innerCard: #011a266f;
    --btn-fill: #a6d7f5;
    --btn-outline: #96d4fb;
    --btn-text: #072d3e;
    --btn-text_sec: white;
  }
} */

@media (prefers-color-scheme: light) {
  :root {
    --primarycolor: #014D4E;
    --secondarycolor: #d2f1ff;
    --bodycolor: #ffffff;
    --cardbg: #e9f8ff;
    --innerCard: rgba(255, 255, 255, 1);
    --btn-fill: #014D4E;
    --btn-outline: #014D4E;
    --btn-text: white;
    --btn-text_sec: white;
  }
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100vw;
  justify-content: center;
  background-color: var(--bodycolor);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-button {
  display: none;
}
body::-webkit-scrollbar-thumb {
  background: var(--primarycolor);
  border-radius: 1rem;
}
.bCard-container {
  padding: 20px;
}
.BusinessCard {
  width: 700px;
  padding-top: 25px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--cardbg);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 39px;
  position: relative;
}
.inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 40px;
  z-index: 12;
  width: 100%;
}
.Ellipse1 {
  width: 462px;
  height: 462px;
  left: 453px;
  top: 263px;
  position: absolute;
  background: rgb(255, 196, 0);
  background: radial-gradient(
    circle,
    rgba(255, 196, 0, 1) 0%,
    rgba(255, 196, 0, 0) 66%
  );
  border-radius: 9999px;
  /* opacity: 0.5; */
  mix-blend-mode: color;
}

.Ellipse2 {
  left: -154px;
  top: 1616px;
}
.Line1 {
  width: 107px;
  height: 10px;
  border-radius: 2rem;
  background: #014D4E;
  
}
.Profilepicture {
  width: 100%;
  height: 437px;
  position: relative;
  display: flex;
  align-items: center;
  background: #014D4E;
  border-radius: 60px;
  overflow: hidden;
}
.Profilepicture img {
  position: relative;
  /*top: 50px;*/
  /*transform: scale(1.2);*/
  /*object-fit: fill*/
}

.Title {
  /* height: 339px; */
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  width: inherit;
}

.TagLine {
  color: var(--primarycolor);
  font-size: 30px;
  font-family: Inter;
  font-weight: 500;
  text-transform: uppercase;
  word-wrap: break-word;
  line-height: 1;
  text-align: center;
  width: 100%;
}
.JewellersName {
  color: var(--primarycolor);
  font-size: 50px;
  font-family: Inter;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 1;
  text-align: center;
}

.w-100 {
  width: 100%;
}
.mb-5 {
  margin-bottom: 15px;
}
.button {
  color: var(--btn-text);
  background-color: var(--btn-fill);
  font-weight: 500;
  border-radius: 20rem;
  font-size: 1rem;
  line-height: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  cursor: pointer;
  text-align: center;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-transform: uppercase;
  transition: color 0.3s linear, background-color 0.3s linear,
    border-color 0.3s linear;
}

.button:hover {
  background-color: var(--btn-outline);
  color: var(--btn-text);
}

.button svg {
  display: inline;
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.75rem;
  color: var(--btn-text);
}

.button:focus svg {
  animation: spin_357 0.5s linear;
}

@keyframes spin_357 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.button-secondary {
  background-color: transparent;
  border: 1.5px solid var(--btn-outline);
  color: var(--primarycolor);
}
.button-secondary svg {
  fill: var(--primarycolor);
  transition: fill 0.3s linear;
}
.button-secondary:hover svg {
  fill: var(--btn-text);
  transition: fill 0.3s linear;
}

.section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* gap: 21px; */
  display: flex;
  width: 100%;
}
.section > h2 {
  color: var(--primarycolor);
  font-size: 50px;
  font-family: Inter;
  font-weight: 700;
  word-wrap: break-word;
}

.section > p {
  text-align: justify;
  color: var(--primarycolor);
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 26px;
  word-wrap: break-word;
}

.container-inner {
  display: flex;
  width: 100%;
}

.container-inner > * {
  width: 100%;
  text-wrap: nowrap;
}
.section_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.text > h5 {
  color: var(--primarycolor);
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  word-wrap: break-word;
}
.text > h3 {
  color: var(--primarycolor);
  font-size: 23px;
  font-family: Inter;
  font-weight: 700;
  word-wrap: break-word;
}
.social_bg {
  background-color: var(--innerCard);
  backdrop-filter: blur(50px);
}
.icon {
  background-color: var(--cardbg);
  border-radius: 1rem;
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon svg {
  fill: var(--primarycolor);
  stroke-width: 0.5px;
  /* stroke: var(--cardbg); */
  width: 32px;
  height: 32px;
}
.padding-inner {
  padding: 2rem;
  border-radius: 2rem;
  gap: 2rem;
}

.social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social_icon {
  background-color: var(--secondarycolor);
  border-radius: 1rem;
  width: 96px;
  height: 96px;
  padding: 0.5rem;
}
.social_icon svg {
  fill: var(--primarycolor);
}
.fade {
  opacity: 0;
  transform: translateY(50px);
}

@media (max-width: 768px) {
  body {
    width: 100%;
  }
  .bCard-container {
    padding: 5px;
  }
  .BusinessCard {
    max-width: 450px;
    border-radius: 2rem;
    padding-top: 15px;
    gap: 1rem;
  }
  .Profilepicture {
    height: 300px;
  }
  .TagLine {
    font-size: 1.5rem;
  }
  .JewellersName {
  font-family: Inter;
    font-size: 3rem;
  }
  .container-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .text h3 {
    font-size: 0.8rem;
  }
  .text h5 {
    font-size: 0.6rem;
  }
  .container-inner:has(.text) {
    flex-wrap: nowrap !important;
  }
  
  .social_icon {
    margin: 4px;
    padding: 2px;
  }
}
