@import url(http://fonts.googleapis.com/css?family=Karla|Quicksand);
@import url('styles/boots-bones.css');
/*
Theme Name: Teen Kylebroune
Version: 1.0

-------------------------------------------------------------- */
/* Reset
-------------------------------------------------------------- */

:root {
  --color-primary: #6554bf;
  --color-secondary: #3394f3;
  --color-text-dark: #191919;
  --color-text-light: #ffffff;
  --color-background-dark: #0b021c;
  --color-background-light: #ffffff;
  --font-dm-sans: "DM Sans", sans-serif;
  --font-cabin: "Cabin", sans-serif;
  --font-inter: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-dm-sans);
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  /*  padding-left: 80px;
  padding-right: 80px;*/
}

@media (max-width: 1440px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header-section {
  position: relative;
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  padding-bottom: 50px;
  overflow: hidden;
}

.header-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.header-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-bg-svg-overlays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.13;
}

.header-bg-svg-overlays img {
  position: absolute;
  filter: blur(200px);
}

.bg-svg-1 {
  top: -10%;
  left: -20%;
  width: 80%;
}
.bg-svg-2 {
  top: -30%;
  right: -10%;
  width: 40%;
}
.bg-svg-3 {
  top: -20%;
  left: -30%;
  width: 40%;
  transform: rotate(180deg);
}
.bg-svg-4 {
  bottom: -20%;
  left: -10%;
  width: 80%;
}
.bg-svg-5 {
  bottom: -40%;
  right: -20%;
  width: 40%;
  transform: rotate(180deg);
}

.main-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.logo-svg-wrapper {
  position: relative;
  width: 232px;
  height: 62px;
}

.logo-svg-wrapper img {
  /*position: absolute;*/
}

.logo-svg-1 {
  top: 0;
  left: 0;
  height: 62px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-weight: 600;
  font-size: 14px;
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  margin-top: 2px;
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
  border-radius: 15px 0px 15px 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 21px;
  width: 150px;
}

.dropdown-container:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.dropdown-menu a:not(:last-child) {
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
  z-index: 1;
  /*    max-width: 653px;
    margin-left: 80px;
    margin-right: auto;*/
  padding-top: 100px;
  text-align: center;
}
.hero-content a{display: inline-block;}
.hero-subtitle {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.hero-title {
  font-weight: 400;
  font-size: 45px;
  line-height: 1.18;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  max-width: 631px;
  margin-bottom: 42px;
}

.apple-store-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-text-light);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 50px;
}

.apple-store-button div {
  display: flex;
  flex-direction: column;
}

.apple-store-button span {
  font-size: 8px;
  line-height: 1.5;
}

.apple-store-button strong {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero-content {
    margin-left: 40px;
    padding-top: 60px;
  }
  .hero-title  {
    font-size: 36px;
  }
  .hero-title br  {
   display: none;
  }
}

@media (max-width: 767px) {
  .main-header {
    flex-direction: column;
    gap: 20px;
  }
  .hero-content {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding-top: 40px;
  }
  .hero-title {
    font-size: 28px;
  }
  .apple-store-button {
    margin: 0 auto;
  }
  .features-accordion-section {
    padding: 60px 0;
}
}

/* CSS for section section:features-accordion */
.features-accordion-section {
  padding: 90px 0;
  background-color: rgba(101, 84, 191, 0.05);
}

.features-accordion-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.accordion-column {
  flex: 1;
  max-width: 488px;
}

.image-column {
  flex: 1;max-width: 60%;
}

.section-title,h2.vc_custom_heading.vc_do_custom_heading {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
}

.accordion,.vc_tta-panels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item,.vc_tta-panel {
  background-color: var(--color-background-light);
  border-radius: 16px;
  padding: 17px 20px;
}

.accordion-item.active , .vc_tta-panel.active{
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}

.accordion-header ,.vc_tta-panel-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3,.vc_tta-panel-heading h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}

.accordion-header img ,.vc_tta-panel-heading img{
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header img ,  {
  transform: rotate(-180deg);
}

.accordion-body,.vc_tta-panel-body {
  padding-top: 11px;
}

.accordion-body p, .vc_tta-panel-body p {
  font-size: 15px;
  line-height: 1.43;
  opacity: 0.8;
  max-width: 448px;
}

.feature-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .features-accordion-wrapper {
    flex-direction: column;
  }
  .accordion-column {
    max-width: 100%;
  }
}

.tabs-section {
  padding: 100px 0;
}
.tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.tab-card {
  padding: 44px 35px;
  border-radius: 40px;
}
.tab-card.journal {
  background-color: #eff0ff;
}
.tab-card.resources {
  background-color: #ffedec;
}
.tab-card.connections {
  background-color: #f0eef9;
}
.tab-card.create {
  background: #ffeee1;
}
.tab-title {
  font-size: 18px;
  /*opacity: 0.3;*/
  margin-bottom: 31px;
  color: #000;
}
.tab-image , .tabs-swiper .feature-image  {
  width: 100%;
  margin-bottom: 58px;
}
.tab-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.tab-content p {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .tabs-grid {
    grid-template-columns: 1fr;
  }
  .tab-card {
    padding: 30px;
  }
}

/* CSS for section section:app-features */
.app-features-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* .app-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 330px;
background: var(--Gradient, linear-gradient(225deg, #3394F3 0%, #6554BF 100%));
filter: blur(250px);
    z-index: -1;
  } */

.app-features-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  background: var(
    --Gradient,
    linear-gradient(225deg, #3394f3 0%, #6554bf 100%)
  );
  filter: blur(250px);
  z-index: -2;
}

.app-features-header {
  text-align: center;
  margin-bottom: 80px;
}

.app-features-header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.425;
  color: #252b42;
  margin-bottom: 11px;
}

.app-features-header p {
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 0.2px;
}

.app-features-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 65px;
  flex: 1;
}

.features-col.left {
  align-items: flex-end;
}

.features-col.right {
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 327px;
  cursor: pointer;
}

.features-col.left .feature-item {
  text-align: right;
}

.features-col.right .feature-item {
  text-align: left;
}

.feature-text h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  color: #252b42;
  margin-bottom: 6px;
}

.homeSlider .tab-content{
  display: none;
}
.feature-text p {
  font-size: 15px;
  line-height: 1.33;
  opacity: 0.7;
}

.feature-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-cabin);
  font-size: 24px;
  font-weight: 500;
  flex-shrink: 0;
  color: #000;
  background: #f6f6f6;
}

.feature-badge.active {
  background: linear-gradient(225deg, #3394f3 0%, #6554bf 141.42%);
  color: var(--color-text-light);
}

.phone-col {
  flex-shrink: 0;
}

.phone-image {
  max-height: 500px;
}

@media (max-width: 991px) {
  .app-features-content {
    flex-direction: column;
  }
  .features-col.left,
  .features-col.right {
    align-items: center;
    text-align: center;
  }
  .features-col.left .feature-item {
    flex-direction: column-reverse;
    text-align: center;
  }
  .features-col.right .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

/* CSS for section section:welcome */
.welcome-section {
  background: linear-gradient(50deg, #191919 0%, #6554bf 211.33%);
  padding: 100px 0;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 467px;
  height: 467px;
  background: #3394f3;
  opacity: 0.5;
  filter: blur(500px);
  z-index: 0;
}

.welcome-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.welcome-text > .wpb_wrapper > .wpb_wrapper {
  flex: 1;
  max-width: 477px;
}

.welcome-text h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.welcome-description > .wpb_wrapper {
  display: flex;
  gap: 18px;
  max-width: 477px;

}
.welcome-description .line {
  width: 3px;
  background: linear-gradient(225deg, #3394f3 0%, #6554bf 141.42%);
  flex-shrink: 0;
}

.welcome-description p {
  font-size: 15px;
  line-height: 1.73;
}

.welcome-images {
  flex: 1;
}

.phone-stack {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-stack img {
  position: absolute;
}

.phone-1 {
  width: 288px;
  transform: rotate(-15deg);
  z-index: 1;
}

.phone-2 {
  width: 288px;
  transform: rotate(15deg);
  z-index: 1;
}

.phone-main-wrapper {
  position: relative;
  z-index: 2;
  width: 198px;
  height: 400px;
}

.phone-frame {
  width: 100%;
  height: 100%;
}

.phone-screen {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 182px;
  height: 382px;
  object-fit: cover;
  border-radius: 27px;
}

@media (max-width: 991px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
    align-items: normal;
  }
  .welcome-description {
    justify-content: center;
  }
  .welcome-description .line {
    display: none;
  }
  .phone-stack {
    margin-top: 40px;
  }
}

/* CSS for section section:history */
.history-section {
  padding: 100px 0;
  align-items: center;
  padding-top:0px !important;
}
.history-section .vc_tta-panel-title a{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
.channel-card.athletic {
    height: 100%;
}
.channel-card .wpb_wrapper::after{
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(36, 36, 40, 0.7) 100%);
}


.history-title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.history-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.history-image {
  flex: 1;
}

.history-image img {
  border-radius: 20px;
}

.history-accordion-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.history-accordion-card .accordion-item , .history-accordion-card  .vc_tta-panel{
  padding: 17px 20px;
  border-radius: 16px;
}

.history-accordion-card .accordion-item.active , .history-accordion-card  .vc_tta-panel.active{
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 20px;
}

.history-accordion-card .accordion-item:not(.active), .history-accordion-card  .vc_tta-panel:not(.active){
  background-color: #f2f2f2;
}

.history-accordion-card .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.history-accordion-card .accordion-header h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.history-accordion-card .accordion-header img {
  transition: transform 0.3s ease;
}

.history-accordion-card .accordion-item.active .accordion-header img {
  transform: rotate(-180deg);
  filter: brightness(0) invert(1);
}

.history-accordion-card .accordion-body {
  padding-top: 14px;
}

.history-accordion-card .accordion-body p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .history-content {
    flex-direction: column;
  }
}

/* CSS for section section:channels */
.channels-section {
  padding: 100px 0;
  background: linear-gradient(
    179deg,
    #e4ecff 0%,
    rgba(234, 240, 255, 0) 104.41%
  );
}

.channels-header {
  text-align: center;
  margin-bottom: 40px;
}

.channels-header p {
  font-size: 15px;
  line-height: 1.73;
  color: #676a6c;
}

.channels-header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  grid-template-areas:
    "charitable athletic portfolio"
    "academic athletic thoughts";
}

.channel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: var(--color-text-light);
  min-height: 250px;
}

.channel-card.charitable {
  grid-area: charitable;
}
.channel-card.academic {
  grid-area: academic;
}
.channel-card.athletic {
  grid-area: athletic;
}
.channel-card.portfolio {
  grid-area: portfolio;
}
.channel-card.thoughts {
  grid-area: thoughts;
}

.channel-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(36, 36, 40, 0.7) 100%
  );
}
.footer-nav ul{
display: contents;
}

.channel-card h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

@media (max-width: 991px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "charitable athletic"
      "portfolio thoughts"
      "academic academic";
  }
}

@media (max-width: 767px) {
  .channels-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "charitable"
      "athletic"
      "portfolio"
      "thoughts"
      "academic";
  }

}

/* CSS for section section:discover */
.discover-section {
  padding: 100px 0;
  background: linear-gradient(50deg, #191919 0%, #6554bf 211.33%);
  color: var(--color-text-light);
}

.discover-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.discover-text {
  flex: 1;
  max-width: 427px;
}

.discover-text h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}

.discover-description {
  display: flex;
  gap: 18px;
}

.discover-description .line {
  width: 3px;
  background: linear-gradient(225deg, #3394f3 0%, #6554bf 141.42%);
  flex-shrink: 0;
}

.discover-description p {
  font-size: 15px;
  line-height: 1.5;
}

.discover-image {
  flex: 1;
}

.discover-image img {
  border-radius: 15px;
}
body .vc_tta-panel-heading, body .vc_tta-panel-body {
    background: #fff !important;
    background-color: #fff !important;
    border: 0px !important;
} 
body .history-accordion-card .vc_tta-panel-heading, body .history-accordion-card .vc_tta-panel-body {
    background: #f2f2f2 !important;
    background-color:#f2f2f2 !important;
    border: 0px !important;
} 
.vc_tta-panel-body {
    padding: 0px !important;
    padding-top: 11px !important;
}
.vc_tta-panel-title a {
    padding: 0px !important;
}
.vc_tta-panel-heading .vc_tta-panel-title{
  width: 100%;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: auto !important;
    right: 0px  !important;
}
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a ,.vc_tta-panel-body p{
    color: #000 !important;
  }
  .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a{
        color: #000 !important;

  }
i.vc_tta-controls-icon {
    width: 24px !important;
    height: 27px !important;
}
.history-accordion-card .accordion-item {
    padding: 17px 20px;
    border-radius: 16px;
}

.vc_tta-controls-icon::before {
    background-image: url(/wp-content/uploads/2025/10/3_264.svg);
    content: " ";
    border: 0px !important;
    background-size: contain !important;
    padding: 12px 10px;
    background-size: contain;
    background-repeat: no-repeat;
}
.vc_active  .vc_tta-controls-icon::before {
    background-image: url(/wp-content/uploads/2025/10/3_257.svg);
}
.vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus:after{
  border-width:0px !important;
}
@media (max-width: 991px) {
  .discover-container {
    flex-direction: column;
    text-align: center;
  }
  .discover-description {
    justify-content: center;
  }
  .discover-description .line {
    display: none;
  }
}

/* CSS for section section:curated-content */
.curated-content-section {
  padding: 100px 0;
}

.curated-header {
  text-align: center;
  max-width: 862px;
  margin: 0 auto 40px;
}

.curated-header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

.curated-header p {
  font-size: 15px;
  line-height: 1.73;
  color: #676a6c;
}

.curated-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.curated-item {
  text-align: center;
}

/*.curated-image-wrapper {
    width: 242px;
    height: 242px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid;
  }

  .curated-image-wrapper.health { border-color: #36b37e; }
  .curated-image-wrapper.financial { border-color: #1565d8; }
  .curated-image-wrapper.athletics { border-color: #00b8d9; }
  .curated-image-wrapper.academics { border-color: #faad13; }
  .curated-image-wrapper.motivational { border-color: #faad13; }*/

.curated-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curated-item h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  margin-top: 20px;
}

/* CSS for section section:footer */
.footer-section {
  background: linear-gradient(360deg, #191919 0%, #6554bf 186.72%);
  color: var(--color-text-light);
  padding-top: 80px;
  padding-bottom: 30px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid #52525b;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 2.6;
  margin-bottom: 10px;
}

.subscribe-text {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.subscribe-text .line {
  width: 3px;
  height: 44px;
  background: linear-gradient(225deg, #3394f3 0%, #6554bf 141.42%);
  flex-shrink: 0;
}

.subscribe-text p {
  font-size: 15px;
  line-height: 1.33;
  max-width: 371px;
}

.subscribe-form  form> p {
    display: flex;
    background-color: var(--color-background-light);
    border-radius: 5px;
    padding: 5px;
    align-items: center; 
}
.single-post main.section-blog {
    padding-bottom: 100px;
}


span.wpcf7-spinner {
    display: none;
}
.subscribe-form form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 10px 15px;
  font-family: var(--font-inter);
  font-size: 15px;
  color: #12141d;
  max-width: 100%;
}

.subscribe-form  form input::placeholder {
  color: #12141d;
  opacity: 0.7;
}
a.button,
.subscribe-form form .wpcf7-submit {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: 5px;
  padding: 13px 38px;
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.footer-center {
  padding: 60px 0;
  text-align: center;
}

.footer-tagline {
  font-size: 90px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-bottom .apple-store-button {
  margin-bottom: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-wrapper {
}

.footer-brand p {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.26;
  max-width: 87px;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #52525b;
  margin-bottom: 36px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  line-height: 1.86;
}

.copyright a {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 52px;
}

@media (max-width: 991px) {
  .footer-top,
  .footer-bottom,
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  .subscribe-form {
    max-width: 100%;
  }
  .footer-tagline {
    font-size: 6vw;
  }
}

@media (max-width: 767px) {
  .subscribe-form {
    flex-direction: column;
    gap: 10px;
    background: transparent;
  }
  .subscribe-form input {
    background: white;
    border-radius: 5px;
    padding: 15px;
  }
}

/* CSS from section:blogs */
.blogs-section {
  padding-bottom: 100px;
}
.blogs-hero {
  padding-top: 60px;
  padding-bottom: 0;
}

.blogs-hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 9;
}

.blogs-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 53px;
  color: #fff;
  flex-shrink: 0;
}

.blogs-quote {
  margin: 0;
  max-width: 442px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}

.blogs-quote p {
  font-weight: 600;
  margin-bottom: 5px;
}

.blogs-quote cite {
  font-style: normal;
  font-weight: 400;
}

.blogs-grid-wrapper {
  padding-top: 50px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px 30px;
}

.blog-card {
  background-color: var(--color-bg-light);
  border-radius: 12px;
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image-wrapper {
  width: 100%;
  aspect-ratio: 360 / 249;
  background-color: #f0f0f0;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.card-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text-dark);
}

.card-excerpt {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--color-text-dark);
  flex-grow: 1;
  margin-bottom: 20px;
}

.card-date {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #8d8d8d;
}

.more-blogs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.more-blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.more-blogs-btn .arrow-icon {
  background: var(--gradient-primary);
  font-weight: 900;
}

.more-blogs-btn:hover {
  background: var(--gradient-primary);
  color: var(--color-text-white);
}
.more-blogs-btn:hover .arrow-icon {
  background: var(--color-text-white);
  -webkit-background-clip: text;
  background-clip: text;
}
.founder-img-box {
  flex: 0 0 30%;
  position: relative;
}
.founder-img {
  width: 100%;
  border-radius: 24px;
}
.shape-top-left {
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: -1;
}
.paul-content p {
    margin-bottom: 30px;
}
.shape-bottom-right {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}
.founder-disc-box h3 {
  color: #000;
  font-family: "DM Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.12px;
}
.founder-disc-box {
  text-align: left;
}

.founder-disc-box span {
  color: #000;
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  letter-spacing: 0.15px;
}

.info-deatils p {
  color: #000;
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 22.5px */
  letter-spacing: 0.15px;
  margin-bottom: 26px;
}

.info-deatils {
  margin-top: 30px;
  text-align: left;
}
.about-section {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .blogs-hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder-img-box {
    flex: 0 0 100%;
  }
  .blogs-quote {
    text-align: center;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .footer-center {
    padding: 30px 0;
  }
  .footer-top {
    padding-bottom: 50px;
  }
}

/* CSS from section:blog */
#section-blog {
  padding-bottom: 100px;
}
.blog-intro {
  background: linear-gradient(
    179deg,
    #e4ecff 0%,
    rgba(234, 240, 255, 0) 104.41%
  );
  padding-top: 58px;
  padding-bottom: 58px;
}
.blog-intro-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.blog-section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  color: #191919;
  flex-shrink: 0;
}
.blog-quote {
  margin: 0;
  max-width: 442px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
}
.blog-quote p {
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-quote footer {
  font-weight: 400;
}
.blog-content-wrapper {
  margin-top: -30px;
  position: relative;
}
.blog-image-container {
  margin: 0 0 40px 0;
  border-radius: 8px;
  overflow: hidden;
}
.blog-image-container img {
  width: 100%;
}
.blog-text-content {
  margin: 0 auto;
}
.blog-date {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}
.blog-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 36px;
  color: var(--color-text-primary);
  margin-bottom: 27px;
}
.blog-body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-text-primary);
}
.blog-body h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: var(--color-text-primary);
  margin-bottom: 15px;
}
.blog-body p {
  margin-bottom: 15px;
}
.blog-body ul{list-style: initial;margin-left: 25px;}
.blog-body ol{margin-left: 25px; margin-bottom: 25px;}
.blog-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .blog-intro-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.accordion-body {
  display: none;
  transition: all 0.3s ease;
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs-section {
  padding: 60px 0;
  background: #fafafa;
}

.tab-card {
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.tab-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}

.tab-image, .tabs-swiper .feature-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 352px;
  object-fit: contain;
}

.tab-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.tab-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Swiper override */
.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.swiper {
  padding: 20px 10px;
}
.header-section .container:after{
  display: none !important;
}

.row-fluid .offset2:first-child {
    margin-left: 0px !important;
	margin-right:0px !important;
	width: 100%;
}
.main-fluid {
    max-width: 1440px !important;
	padding-left:0px; 
	padding-right:0px;
  margin: 0 auto !important;;
}
.tabs-swiper .tab-content {
    min-height: 220px;
}
.features-col.left .feature-item {
    margin-left: auto !important;
}
body strong{
	font-weight:600;
}
.features-col > .vc_column-inner > .wpb_wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 327px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
}
.features-col.left > .vc_column-inner > .wpb_wrapper {
    margin-left: auto;
}
.features-col .wpb_raw_code{
margin-bottom: 0px !important;
}
.blog-body a.button {
    margin-top: 30px !important;
    display: block;
    max-width: 200px;
}
@media (max-width: 767px) {
  .tab-image, .tabs-swiper .feature-image  {
    height: auto;
}
.features-col {
    gap: 30px;
}
.phone-stack {
    margin-top: 0;
    height: auto;
}
.phone-stack img {
    position: relative;
}
.history-accordion-card {
    width: 100%;
}
.curated-header h2 {
    font-size: 24px;
}
.subscribe-form form> p{
  display: block;
}
.subscribe-form form .wpcf7-submit{
  width: 100%;
}
.wpb_wrapper {
  margin: 15px 0;
}
.tabs-section {
  padding: 0px 0;
}
.wpb_content_element{
  margin-bottom: 0;
}
.vc_custom_1762162629836 {
  padding-top: 50px !important;
}
.curated-content-section {
  padding: 50px 0;
}
h2.vc_custom_heading.vc_do_custom_heading {
  font-size: 35px;
}
.history-section {
  padding: 50px 0;
}
.channels-section {
  padding: 50px 0;
}
.app-features-section {
  padding: 20px 0 50px;
}
.accordion-column + .vc_column_container .vc_column-inner{
  padding: 20px !important;
} 
.features-accordion-section {
  padding: 30px 0;
}
.welcome-section{
  padding: 50px 0;
}


 
}
