:root {
  --primary: #6B6DAD;
  --blue: #6941C6;
  --info: #1DA0F0;
  --grey: #DCD9D9;
  --secondary: #526471;
  --reddit: #ff4500;
  --black: #121212;
  --nav-black: #434343;
  --purple: #7F56D9;
  --ash: #D0D5DD;
  --newsletter: #42307D;
  --input: #667085;
  --what-we-do: #CBCDFF;
  --mission: #FFC8DB;
}
.btn-primary {
  --bs-btn-bg: #6B6DAD;
  --bs-btn-border-color: #6B6DAD;
  --bs-btn-hover-bg: #4c4e8b;
  --bs-btn-hover-border-color: #343781;
  --bs-btn-active-bg: #4c4e8b;
  --bs-btn-active-border-color: #343781;
  --bs-btn-disabled-bg: #6B6DAD;
  --bs-btn-disabled-border-color: #6B6DAD;
}
.btn-purple {
  --bs-btn-bg: var(--purple);
  --bs-btn-border-color: var(--purple);
  --bs-btn-hover-bg: #5D34B7;
  --bs-btn-hover-border-color: #4C23A6;
  --bs-btn-active-bg: #5D34B7;
  --bs-btn-active-border-color: #4C23A6;
  --bs-btn-disabled-bg: var(--purple);
  --bs-btn-disabled-border-color: var(--purple);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
}

* {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
/* font-family: 'Poppins', sans-serif; */
}

html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}

div.wrapper {
  min-height: calc(100vh - 120px - 101.5px);
  padding: 20px 0;
}

#home-wrapper {
  background: #FAFAFA;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-title {
  font-weight: 700;
  font-size: 24px;
}

header {
  /* margin-bottom: 120px; */
  height: 101.5px;
}

header .navbar {
  padding: 25.5px 0;
  background-color: white !important;
  border-bottom: 1px solid var(--grey);
}

header .header-brand-name {
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}

header .header-brand-image {
  width: 42px;
}

header .navbar .nav-link {
  color: var(--nav-black);
}

header .navbar .nav-link.active {
  color: var(--primary);
}

header .navbar .navbar-toggler {
  border: 0 !important;
  outline: none !important;
  box-shadow: unset !important;
}

header .navbar .nav-btn {
  width: 230px;
}

/* header .navbar .nav-item {
  border-bottom: 1px solid var(--grey);
} */

/* div.container {
  max-width: 1340px;
  margin: 0px auto;
  padding-left: 20px;
  padding-right: 20px;
} */

.blog-lg-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card-lg {
  width: 100%;
  border-radius: 20px;
  height: 222.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px 16px;
  background-size: cover !important;
  background-position: center !important;
}

.blog-card-lg.match {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url('../images/finding-match-bg.png');  
}

.blog-card-lg.updates {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url('../images/latest-updates-bg.png');  
}

.blog-card-lg.best {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url('../images/best-updates-bg.jpeg');  
}

.blog-card-lg-content {
  width: 100%;
}

.blog-card-lg-content-body {

}

.blog-card {
  background: #FFFFFF;
  border: 0.6px solid #F2F4F7;
  border-radius: 20px;
  padding: 12px;
}

.blog-card-img {
  overflow: hidden;
  display: flex;
  height: 200px;
  border-radius: 16px;
}

.blog-card-img img, .asset-card-img img {
  width: 100%;
  object-fit: cover;
}

.blog-card-body {
  height: calc(86px + 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 0;
}

.blog-content-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: .1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-content-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
}
.blog-content-subtitle.download {
  text-decoration: underline;
  font-size: 16px;
}

.blog-card-lg-content-action {

}

.social-card {
  background: #ffffff;
  border: none;
  border-radius: 17px;
  min-width: 280px;
  height: unset;
  padding: 15px;
}

.social-card-author-img {
  border-radius: 50%;
  overflow: hidden;
}

.social-card-author {
  font-size: 14px;
  margin-left: 3px;
}

.social-card-author>div:first-child {
  font-weight: 600;
}

.social-card-author>div:last-child {
  font-weight: 300;
}

.social-card-type-icon {
  font-size: 24px;
}

.social-card-img {
  max-height: 240px;
  border-radius: 15px;
  overflow: hidden;
}

.social-card-img img {
  width: 100%;
  object-fit: cover;
}

.social-card-footer {
  font-size: 11px;
}

.social-card-footer-reddit {
  font-size: 15px;
}

.social-card-footer-icons {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--secondary);
}

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

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

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

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

.default-btn {
  padding: 12px 20px;
  border-radius: 32px;
  font-size: 14px;
}

.btn-grad-fill {
  background: linear-gradient(281.73deg, #E9A3BB 22.59%, #6B6DAD 93.94%);
  color: white;
}

.btn-grad-outline {
  background: linear-gradient(281.73deg, #E9A3BB 22.59%, #6B6DAD 93.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border: 1px solid #E9A3BB;
}
.btn-grad-outline:hover {
  background: linear-gradient(281.73deg, #E9A3BB 22.59%, #6B6DAD 93.94%);
  color: white;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
}
.btn-grad-fill:hover {
  color: white;
  background: linear-gradient(281.73deg, #6B6DAD 22.59%, #E9A3BB 93.94%);
}

button {
  white-space: nowrap;
}

.hashtag, .text-info {
  color: var(--info);
}

footer {
  padding: 20px 0;
  border-top: 1px solid var(--grey);
  background-color: white;
  height: 120px;
}

footer .footer-brand-name {
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}

footer .footer-brand-image {
  width: 42px;
}

.copy {
  color: var(--black);
}

.icon-light {
  fill: white;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  color: var(--primary);
  fill: var(--primary);
}


/* BLOG POST */
div.blog-post {
  padding-top: 16px;
}

div.blog-post>.row {
  margin-bottom: 34px;
}

div.blog-post .blog-post-title {
  font-weight: 700;
  font-size: 34px;
  color: var(--black);
}

div.blog-post .blog-post-subtitle, div.blog-post .blog-post-highlight {
  font-weight: 400;
  line-height: 28px;
  color: var(--secondary);
}

div.blog-post .blog-post-highlight-divider {
  margin: 1.5rem 0;
}

div.blog-post .blog-post-image {
  height: 240px;
  display: flex;
  overflow: hidden;
}

div.blog-post .blog-post-image img {
  width: 100%;
  object-fit: cover;
}

div.blog-post .blog-post-info-item{
  height: 60px;
}

div.blog-post .blog-post-info-item small{
  font-weight: 700;
}

div.blog-post .blog-post-info-item h6{
  font-weight: 500;
  color: var(--black)
}

div.blog-post .blog-post-info-btn {
  border-color: var(--ash);
  color: var(--black);
  height: 40px;
  font-size: 14px;
}

div.blog-post .blog-post-info-btn:hover {
  color: white;
}

div.blog-post .blog-post-info-btn.social:hover {
  background-color: var(--grey);
}

div.blog-post .blog-post-info-btn.social {
  width: 40px;
  font-size: 19px;
  color: var(--ash);
}

div.blog-post .blog-post-content p {
  font-weight: 400;
  line-height: 26px;
  color: var(--secondary);
}

div.blog-post .blog-post-content label {
  font-weight: 400;
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

div.blog-post .blog-post-content small {
  margin-top: 20px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary);
  font-size: 15px;
  display: block;
  font-style: normal;
}

div.blog-post .blog-post-content h1 {
  font-size: 26px;
  font-weight: 700;
}

div.blog-post .blog-post-content strong {
  margin: 16px 0;
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}

div.blog-post .blog-post-content blockquote {
  padding: 6px 20px;
  border-left: 2px solid var(--blue);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  color: var(--black);
}

div.blog-post .blog-post-content ol {
  color: var(--secondary);
}

div.blog-post .blog-post-content img {
  width: 100%;
  margin-bottom: 7px;
}

.newsletter-cover {
  padding: 20px;
  background: #F9F5FF;
  border-radius: 16px;
}

.newsletter-header {
  margin-bottom: 16px;
}

.newsletter-body h5 {
  font-weight: 700;
  color: var(--newsletter);
}

.newsletter-body p {
  color: var(--blue);
  font-size: 14px;
}

.newsletter-form {
  gap: 16px;
}

.newsletter-form input {
  padding: 12px 16px;
}

.newsletter-form input::placeholder {
  color: var(--input) !important;
  font-size: 14px;
}

.newsletter-form input:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.asset-card-img {
  overflow: hidden;
  display: flex;
  height: 200px;
  border-radius: 16px;
}

.asset-title {
  text-align: center;
  justify-content: center;
}

.asset-subtitle {
  text-align: center;
  font-size: 14px;
}

.about-subtitle {
  font-size: 15px;
  line-height: 20px;
  color: var(--input);
}

.about-bubbles {
  width: 100%;
  max-width: 400px;
}

.about-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}

.about-box-text {
  padding: 15px;
}

.about-box h3 {
  font-size: 26px;
  font-weight: 700;
}

.about-box p {
  color: var(--nav-black);
}

.what-we-do-box {
  background-color: var(--what-we-do);
}

.mission-box {
  background-color: var(--mission);
}

.newsletter {
  background-color: white;
  padding: 24px 32px;
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 700;
}

.newsletter-text {
  max-width: 769px;
  text-align: center;
  margin: auto;
}

.newsletter-footer-form {
  max-width: 493px;
  margin: auto;
}

.newsletter-footer-form input {
  padding: 12px 16px;
}

.newsletter-footer-form input::placeholder {
  color: var(--input) !important;
}

.newsletter-footer-form input:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.notification-btn {
  padding: 12px 20px;
  font-size: 14px;
}

.newsletter-btn-wrapper, .newsletter-btn-wrapper button {
  width: 100%;
}

.faq-wrapper {
  max-width: 780px;
  margin: auto;
}

#faq-accordion {
  border-radius: 5px;
  overflow: hidden;
}

#faq-accordion .accordion-button:focus {
  border: 0;
  box-shadow: none;
}

#faq-accordion .accordion-button:not(.collapsed) {
  background: unset;
  color: unset;
  box-shadow: none;
}


#faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\229D";
}

#faq-accordion .accordion-button::after {
  content: "\2295";
  background-image: none;
  background-image: none;
  font-size: 24px;
  width: 24px;
  height: 24px;
  text-align: center;
  color: var(--primary);
}

@media screen and (min-width: 800px) {
  .section-title {
    font-weight: 700;
    font-size: 28px;
  }

  .section-subtitle {
    color: var(--secondary);
  }

  .blog-card-img {
    height: 230px;
  }

  div.blog-post .blog-post-title {
    font-size: 40px;
  }

  div.blog-post .blog-post-image {
    height: 516px;
  }

  .newsletter {
    padding: 96px;
  }

  .newsletter h2 {
    font-size: 26px;
  }
}

@media screen and (min-width: 992px) {
  header .navbar .nav-btn {
    width: unset;
  }
  .about-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (min-width: 576px) {
  div.wrapper {
    min-height: calc(100vh - 101.5px - 95px);
  }
  footer {
    height: 95px;
  }
}

@media screen and (min-width: 1200px) {
  .about-box-text {
    padding: 30px;
  }  
}

@media screen and (min-width: 768px) {
  .newsletter-btn-wrapper, .newsletter-btn-wrapper button {
    width: auto;
  }
}