/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

html,
body {
  margin: 0;
}

/* CSS Variables */
:root {
  --primary-color: #ffa500;

  --text01-color: #ffffff;
  --text02-color: #151515;
  --text03-color: #4f4d4d;
  --text04-color: #666666;

  --stroke01-color: #f2f2f2;
  --stroke02-color: #ececec;

  --bg01-color: #ffffff;
  --bg02-color: #151515;
  --bg03-color: #232323;
}

/* Start Repeated Styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-gap {
  margin: 120px auto;
}

.primary-color {
  color: var(--primary-color);
}

.text01-color {
  color: var(--text01-color);
}

.text02-color {
  color: var(--text02-color);
}

.text03-color {
  color: var(--text03-color);
}

.block {
  display: block;
}

.btn {
  background-color: var(--primary-color);
  color: var(--text01-color);
  border-style: solid;
  border-color: #000;
  border-width: 0 3px 3px 0;
  padding: 12px 20px;
  border-radius: 40px;
  cursor: pointer;
}

.head-title {
  display: flex;
  line-height: 26px;
  letter-spacing: -2%;
  gap: 8px;
}

.vartical-border {
  width: 3px;
  height: 48px;
  background: var(--primary-color);
  opacity: 20%;
  border-radius: 2px;
  flex-shrink: 0;
  margin: 6px 0;
}

.custom-divider {
  border: 0;
  height: 1px;
  background: #ececec33;
  width: 90%;
  margin: 0px 20px 20px;
}

/* End Repeated Styles */

/* Header Start here */

#header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 165, 0, 0.1) 100%);
}

/* Navbar */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

#nav-right-div {
  display: flex;
  align-items: center;
  gap: 48px;
}

#navLink-div {
  word-spacing: 32px;
  color: var(--text03-color);
}

#navlink-services {
  font-weight: 500;
}

/* Banner */
#banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0px 200px;
  position: relative;
}

#banner-heading {
  font-weight: 600;
  text-align: center;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -2%;
  margin-bottom: 48px;
}

/* Total incomes div */

#total-incomes-card {
  position: absolute;
  width: 227px;
  height: 177px;
  padding: 16px;
  background: var(--bg01-color);
  border: 1px solid var(--stroke02-color);
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  left: -80px;
  top: 220px;
  transform: rotate(-16deg);

  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.08);
}

/* bars row */
#total-incomes-card .bars {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-end; /* bottom aligned bars */
  flex: 1;
}

#total-incomes-card h4 {
  font-size: 18px;
}

#total-incomes-card .months {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

#total-incomes-card .months span {
  width: 19px;
  text-align: center;
  display: inline-block;
  font-size: 8px;
}

.jan {
  height: 59px;
  width: 19px;
  background-color: var(--stroke01-color);
  border-radius: 16px;
}
.feb {
  height: 80px;
  width: 19px;
  background-color: var(--stroke01-color);
  border-radius: 16px;
}
.mar {
  height: 62px;
  width: 19px;
  background-color: var(--stroke01-color);
  border-radius: 16px;
}
.apr {
  height: 80px;
  width: 19px;
  background-color: var(--primary-color);
  border-radius: 16px;
}
.may {
  height: 34px;
  width: 19px;
  background-color: var(--stroke01-color);
  border-radius: 16px;
}
.jun {
  height: 90px;
  width: 19px;
  background-color: var(--stroke01-color);
  border-radius: 16px;
}

/* 45+ users card  */

#users-card-banner {
  width: 236px;
  height: 84px;
  right: -80px;
  top: 220px;
  transform: rotate(16deg);
  background: var(--bg01-color);
  border: 1px solid var(--stroke02-color);
  border-radius: 16px;
  padding: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;

  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.08);
}

#avatars {
  display: flex;
  align-items: center;
}

#avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  margin-left: -12px;
  border: 2px solid var(--bg01-color);
}

#avatars figure:first-child {
  margin-left: 0px;
}

#avatars-card-text {
  text-align: center;
}

#avatars-card-text p:first-child {
  font-weight: 600;
  font-size: 20px;
}

#avatars-card-text p i {
  color: var(--primary-color);
}

#avatars-card-text p:last-child {
  font-weight: 500;
  font-size: 14px;
  color: var(--text04-color);
}

/* Header End here */

/* main Start here */

/* Statistics section */
#statistics-section {
  padding: 60px 0;
  text-align: center;
}

#statistics-section p:first-child {
  color: var(--text02-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
}

#statistics-card-div {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.statistics-card {
  width: 282px;
  padding: 32px 16px;
  border: 1px solid var(--stroke02-color);
  border-radius: 16px;
}

.statistics-card p:first-child {
  color: var(--text02-color);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -2%;
  margin-bottom: 12px;
}

.statistics-card p:last-child {
  color: var(--text03-color);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -2%;
}

/* Our story */
#our-story-section {
  padding: 40px 120px 100px;
  text-align: center;
}

.our-story-title {
  justify-content: center;
}

.our-story-title p {
  line-height: 26px;
  letter-spacing: -2%;
}

#our-story-section h5 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -2%;
  margin: 16px 0;
}

#our-story-section .out-story-paragraph {
  max-width: 552px;
  margin: auto;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -2%;
  margin-bottom: 40px;
}

/* Why choose us */
#why-choose-us-section {
  background-color: var(--bg02-color);
  padding: 100px 12px;
  margin-bottom: 100px;
}

#why-choose-us-parent-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* choose us left div */
.choose-us-left-div {
  flex: 1;
  color: var(--text01-color);
}

.choose-us-left-div h5 {
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -2%;
  margin: 12px 0 16px;
  font-weight: 600;
}

.choose-us-paragraph {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -2%;
  margin-bottom: 40px;
}

.choose-us-btn {
  border-color: var(--stroke02-color);
}

/* choose us right div */
.choose-us-right-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.choose-us-right-div {
  flex: 1;
  margin-right: -60px;
}

#logo-arc {
  display: flex;
  margin-right: -100px;
}

#logo-arc img:first-child {
  width: 280px;
  height: auto;
  display: block;
}

#logo-arc img:nth-child(2) {
  margin-left: -50px;
  transform: rotate(4deg);
  position: relative;
}

#logo-arc img:nth-child(3) {
  margin-left: -186px;
  transform: rotate(4deg);
  position: relative;
}

.right-div-cards-parent {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.choose-us-card {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg03-color);
  padding: 16px 20px;
  font-size: 18px;
  color: var(--text01-color);
  border-radius: 16px;
}

.right-div-cards-parent div:first-child {
  width: 195px;
  position: relative;
  left: -50px;
}

.right-div-cards-parent div:nth-child(2) {
  width: 215px;
  position: relative;
  left: -30px;
}

.right-div-cards-parent div:nth-child(3) {
  width: 198px;
  position: relative;
  left: -30px;
}

.right-div-cards-parent div:last-child {
  width: 230px;
  position: relative;
  left: -80px;
}

.choose-us-card figure {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff12;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.choose-us-card figure img {
  width: 24px;
  height: 24px;
}

/* Our services */

#services-section {
  margin-bottom: 100px;
}

.services-heading,
.growth-heading,
.contact-heading {
  margin-bottom: 64px;
  text-align: center;
}

.services-title,
.growth-title,
.contact-title {
  justify-content: center;
}

/* card */
.services-parent-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 24px;
}

.services-heading h5,
.growth-heading h5,
.contact-heading h5 {
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -2%;
  margin-bottom: 16px;
}

.services-heading p,
.growth-heading p,
.contact-heading p {
  opacity: 80%;
}

.services-card {
  width: 588px;
  height: 222px;
  border: 1px solid var(--stroke02-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.card-head {
  display: flex;
  justify-content: space-between;
}

.card-head p {
  font-size: 18px;
}

.card-head figure {
  position: absolute;
  right: 32px;
  top: 32px;
}

.card-head figure img {
  width: 64px;
  height: 64px;
}

.tick-mark-parent-div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-head {
  display: flex;
}

.tick-mark-div {
  display: flex;
  gap: 8px;
}

/* approach-section */
#approach-section {
  background-color: var(--bg02-color);
  padding: 100px 120px;
}

#approach-parent-div {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.approach-left-div {
  display: flex;
  gap: 24px;
}

.approach-left-div figure:last-child {
  margin-top: 90.5px;
}

.approach-right-div {
  color: var(--text01-color);
}

.approach-right-div h2 {
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: -2%;
  margin-bottom: 60px;
}

.approach-mission {
  border-left: 2px solid #ececec33;
  margin-bottom: 20px;
}

.approach-mission h5,
.approach-vision h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -2%;
  padding-left: 20px;
}

.approach-vision {
  border-left: 2px solid var(--primary-color);
}

.approach-vision button {
  margin-left: 20px;
  border-color: var(--stroke02-color);
}

.approach-vision p {
  margin: 16px 20px 32px;
  opacity: 90%;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -2%;
}

/* Growth section */
#growth-section {
  padding: 100px 0;
}

.growth-card-parent-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.growth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 384px;
  height: 174px;
  border-radius: 16px;
  border: 1px solid var(--stroke02-color);
  padding: 24px;
}

.growth-card p:first-child {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -2%;
}

.growth-card p:last-child {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -2%;
  color: var(--text03-color);
  white-space: nowrap;
}

.growth-btn {
  text-align: center;
}

/* Growth Help section */
#growth-help {
  padding: 100px 0;
  background: var(--bg02-color);
  margin-bottom: 100px;
}

.growth-help-title {
  justify-content: center;
  color: var(--text01-color);
}

.growth-help-heading h5 {
  color: var(--text01-color);
}

.growth-help-heading p {
  color: var(--text01-color);
}

.growth-help-card {
  background-color: var(--bg03-color);
  border: none;
}

.growth-help-card p:last-child {
  color: var(--text01-color);
  opacity: 90%;
}

.growth-help-btn {
  border-color: var(--stroke02-color);
}

/* Contact Us section */
#contact-us {
  margin-bottom: 100px;
}
/* Calendly */
.calendly-parent-div {
  padding: 36px 26px;
  background: var(--bg01-color);
  border-radius: 10px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;

  display: flex;
  position: relative;
  overflow: hidden;
}

/* Calendly left div css */
.calendly-left-div {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.calendly-left-div > p:first-child {
  color: var(--text04-color);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.calendly-left-div h4 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: var(--text02-color);
  margin-bottom: 14px;
}

.calendly-left-div > p:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 20px;
  color: var(--text04-color);
  margin-top: 20px;
}

.calendly-left-div > p:nth-of-type(2) i {
  font-size: 20px;
}

.calendly-left-div > div {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 18px;
  color: var(--text04-color);
  max-width: 260px;
  margin-top: 20px;
}

.calendly-left-div i {
  font-size: 14px;
  margin-top: 3px;
  color: var(--text04-color);
}

.calendly-left-div p {
  margin: 0;
}

/* calendly right div css */
.calendly-left-div {
  padding-right: 24px;
}

/* right div  */
.calendly-right-div {
  flex: 1;
  padding-left: 24px;
}

/* ribbon */
.calendly-ribbon {
  position: absolute;
  top: 12px;
  right: -44px;
  width: 150px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #4b5563;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;

  transform: rotate(45deg);
  transform-origin: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Header */
.calendly-header-parent h5 {
  margin-left: 18px;
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 70%;
}

.calendly-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.cal-month {
  font-size: 16px;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.cal-nav-btn--active {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.15);
}

/* Weekdays */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 10px 0 14px 0;

  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  justify-items: center;

  margin-bottom: 18px;
}

.cal-date {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;

  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}

.cal-date--active {
  background: rgba(59, 130, 246, 0.12);
  color: rgba(59, 130, 246, 1);
}

.cal-date--muted {
  color: rgba(0, 0, 0, 0.25);
}

/* Timezone */
.cal-timezone {
  margin-left: 18px;
}

.cal-timezone-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 70%;
}

.cal-timezone-row {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  opacity: 90%;
}

.cal-timezone-row i:last-child {
  opacity: 70%;
}

.note-div-parent {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.note-div-parent div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg03-color);
}

/* main End here */

/* Footer */
footer {
  background: var(--bg02-color);
  padding: 100px 72px 40px;
  color: var(--text01-color);
}

.footer-parent-div {
  display: flex;
  justify-content: space-between;
}

.footer-left-div {
  flex: 1;
}

.footer-left-div p {
  line-height: 26px;
  letter-spacing: -2%;
  opacity: 90%;
  margin-top: 16px;
}

.footer-right-div {
  flex: 2;
  justify-content: flex-end;
  display: flex;
  gap: 48px;
}

.footer-home-div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-home-div h6,
.footer-contact-div h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -2%;
}

.footer-home-div a {
  width: 200px;
  opacity: 70%;
  line-height: 26px;
  letter-spacing: -2%;
}

.footer-contact-div div {
  display: flex;
  opacity: 70%;
  gap: 8px;
  margin-top: 24px;
}

.footer-custom-divider {
  width: 100%;
  margin: 40px 0;
}

.footer-copyright {
  opacity: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright div {
  display: flex;
  gap: 64px;
}
