/* Styling for register steps */
.position-absolute { position: absolute; }
.p-relative { position: relative; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-30 { right: 30px; }
.bottom-30 { bottom: 30px; }
.py-48 { margin: 48px 0; }
.required { color: #E92C2C !important; }
hr { border-color: #e8e8e8; }
.rounded-full { border-radius: 50%; }
.cursor-pointer { cursor: pointer; }
.fw-600 { font-weight: 600; }
.fw-800 { font-weight: 800; }
.mx-24 { margin: 0 24px !important; }
.my-24 { margin: 24px 0 !important; }
.my-48 { margin: 48px 0 !important; }
.yellow-text { color: #FDB136; }
.dark-yellow-text { color: #BD7418; }
.fs-48 { font-size: 48px; }
.show-on-desktop { display: block; }
.show-on-mobile { display: none; }
.banner-btn { border: none !important; }

.fs-md-48 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
} 
.fs-32 {
  font-size: 32px;
  line-height: 44px;
}

.google-login-btn {  
  width: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #E8E8E8 !important;
  line-height: 36px;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.google-login-btn:hover {  
  color: #000 !important;
  background: #fff !important;
}

#step-content {
  min-height: 514px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}
.step-indicator div {
    cursor: pointer;
    padding: 0px;
    text-align: center;
    position: relative;
    height: 4px;
    width: 100%;
    background: #D9D9D9;
    border-radius: 30px;
}
.step-indicator div.active {
    background-color: #bd7418;
}

.register-page-wrap label, .corporate-page label {     
  font-family: 'futura';
  font-size: 16px;
  font-weight: 500; 
  color: #585757;
  line-height: 24px;
}
.register-page-wrap .form__input {
    border-color: #E8E8E8;
}
.register-page-wrap .form__input:focus {
    border-color: #a3a3a3;
}
.register-page-wrap .btn-submit { 
    border-radius: 8px !important; 
}
.field-info-text {
    font-size: 12px;
    line-height: 20px;
    color: #969696;
    margin-top: 8px;
}
.custom-checkbox label { 
    color: #585757; 
    font-size: 14px; 
    line-height: 20px; 
    font-family: 'century-gothic'; 
}

/* Custom-checkbox styling */
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
}
.styled-checkbox:before {
  background: #bd7418;
}
.styled-checkbox:focus + label:before {
  /* box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12); */
  /* border-color: #bd7418; */
}
.styled-checkbox:checked + label:before {
  background: #bd7418;
  border-color: #bd7418;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: auto;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

.or-border-img {
  margin: 24px auto !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.or-border-img .or {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 12px;
  font-size: 16px;
}
.or-border-img:before {
  content: '';
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0.5px;
  background: #E8E8E8;
}

/* password hint styling */
.password-hint {
  background-color: #261907;
  color: white;
  border-radius: 8px;
  padding: 16px;
  width: calc(100% - 30px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 85px;
  z-index: 1;
}
.password-hint ul {
  list-style-type: none;
  padding: 0;
}
.password-hint li {
  font-size: 12px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.password-hint .check {
  color: purple;
  margin-right: 10px;
  font-size: 18px;
}
.password-hint .cross {
  color: red;
  margin-right: 10px;
  font-size: 18px;
}
.password-hint .check img { 
  width: 20px; 
  min-width: 20px;
}

/* Membership page design */
.membership-page {
  background-color: #F2F2F2;
}
.membership-page .banner {
  width: 100%;
  background-size: cover;
  background-position: top right;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner.corporate-banner, .membership-page .banner {
  min-height: 276px;
}
.banner.p-relative:before {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(249.45deg, rgba(255, 255, 255, 0) 35.15%, rgba(255, 255, 255, 0.4) 73.88%);
}
.membership-page .content { 
  max-width: 627px;
  padding: 100px 0;
}
.membership-page .content .heading { 
  color: #262626;
  font-size: 56px;
  line-height: 68px;
  font-weight: 600;
}
.membership-page .content .sub-text { 
  color: #262626;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'futura';
  max-width: 543px;
}
/* .membership-page .banner .container-fluid {
  background: linear-gradient(249.45deg, rgba(255, 255, 255, 0) 35.15%, rgba(255, 255, 255, 0.1) 73.88%);
} */
.sip-saver-section {
  padding-top: 120px;
  padding-bottom: 100px;
}
.sip-saver-section h1 { 
  text-align: center;
  line-height: 56px;
  margin-bottom: 48px;
}
.sip-saver-section .main-headings { 
  text-align: center;
  line-height: 56px;
  margin-bottom: 48px;
  color: rgba(0, 0, 0, 1);
}
.sip-saver-section .font-48-px{
  font-size:48px !important;
}
.custom-card {
  padding: 32px;
  border: 1px solid rgba(219, 219, 219, 1);
  border-radius: 20px;
  height: 100%;
}
.number-heading {
  font-size: 16px;
  line-height: 24px;
  margin: 32px 0 4px;
}
.black-heading-text {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 12px;
  color: #000;
  font-family: "Montserrat", sans-serif;
}
.details-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(60, 60, 67, 1);
  font-family: 'century-gothic';
}

.what-said-section .testimonial-content {
  min-height: calc(100% - 64.8px);
  padding-bottom: 24px;
}
.review-container {
  gap: 16px;
}
.review-container .divider {
  width: 1px;
  height: 15px;
  background: #E8E8E8;
}
.review-container .stars {
  gap: 6px;
}
.review-container .date {
  font-size: 12px;
  color: #969696;
}

.get-started-container {
  border-bottom: 3px solid #E8E8E8;
  padding-bottom: 0 !important;
}
.get-started-container .col-sm-4.active {
  border-bottom: 5px solid #BD7418;
}
.get-sipsaver-container h1 {
  margin-bottom: 60px;
}
.get-sipsaver-container .custom-card {
  background-color: #F2F2F2;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #DBDBDB !important;
}
.get-sipsaver-container .img-col img {
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  /* max-height: 510px; */
}
.membership-page .testimonial-card-parent {
  width: calc(100% + 270px);
}
.act-now-container .content .heading, .ready-save-container .content .heading {
  color: #000;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 16px;
}
.act-now-container .content .sub-text, .ready-save-container .content .sub-text {
  color: #3C3C43;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 48px;
  max-width: 651px;
  font-family: 'century-gothic';
  font-weight: 400;
}
.act-now-card.text-center {
  padding: 100px 65px 74px;
  background: #262626;
  border-radius: 0 0 24px 24px;
}
.act-now-card .bear-img {
  bottom: -50px;
  left: -81px;
  width: 140px;
  height: 140px;
}
.faq-btn { 
  margin-top: 40px;
}
.faq-accordion .accordion .accordion-item {
  font-family: 'futura' !important;
}
.faq-accordion .accordion .accordion-title {
  font-family: 'futura' !important;
  font-weight: 500 !important;
}
.what-said-section .section-bg {
  margin-top: 0 !important;
}
.what-said-section .section-bg .testimonial {
  overflow-x: auto;
}
.what-said-section .section-bg .testimonial::-webkit-scrollbar {
  display: none !important;
}
.get-started-container .col-md-4.active {
  border-bottom: 5px solid #bd7418;
}
.get-started-container .custom-card img {
  margin-right: 24px !important;
}
.membership-page .review-head {
  padding: 75px 18px 55px !important;
}
.get-sipsaver-container .details-text {
  color: rgba(38, 38, 38, 0.6);
}
.ready-save-container img.h-100 {
  border-radius: 12px;
}

/* Corporate page styling */
.corporate-banner .position-absolute {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}
.corporate-banner .position-absolute .content {
  max-width: 545px;
}
.corporate-banner .heading {
  font-size: 56px;
  line-height: 68px;
  font-weight: 600;
}
.corporate-banner .content .sub-text {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'futura';
}
.corporate-banner:before {
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)) !important;
}
.corporate-page .effortless-container {
  padding-top: 120px;
  padding-bottom: 40px;
}
.corporate-page .effortless-container .heading {
  max-width: 503px;
}
.corporate-page .effortless-container p.text-left {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 60, 67, 1);
}
.corporate-page .heading {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color:rgba(0, 0, 0, 1);
}
.corporate-page .form-container {
  max-width: 835px;
}
.corporate-page .get-started-container .form .btn-submit {
  border-radius: 8px;
  margin-top: 8px;
}

/* About page styling */
.about-page .banner .content {
  max-width: 849px;
}
.about-page .banner .content .heading {
  font-size: 56px;
  line-height: 68px;
}
.about-page .welcome-container .content {
  max-width: 523px;
}
.about-page .independent-container .content {
  max-width: 705px;
}
.about-page .celebrating-container .content , .about-page .mission-container .content {
  max-width: 651px;
}
.about-page .sub-text {
  font-size: 16px;
  color: rgba(60, 60, 67, 1);
}
.about-page .heading {
  color: rgba(0, 0, 0, 1);
}
.mission-container {
  padding-top: 0 !important;
}
.sip-saver-section .col-md-5 img {
  border-radius: 16px;
}

/* FAQ page styling */
.faq-page .about-text h2 {
  font-size: 48px;
  line-height: 56px;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 48px;
}
.faq-page .tab-style-3 .nav-tabs {
  border-bottom: 1px solid rgba(232, 232, 232, 1) !important;
  gap: 48px;
  margin-left: 9.7px;
  margin-right: 9.7px;
}
.faq-page .tab-style-3 .nav-link, .faq-page .tab-style-3 .nav-link span {
  width: auto;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.faq-page .tab-style-3 .nav-link {
  padding: 8px 0;
  border-radius: 0 !important;
  border-bottom: 3px solid transparent !important;
}
.faq-page .tab-style-3 .nav-link span {
  color: rgba(38, 38, 38, 1) !important;
  line-height: 24px;
  font-family: 'century-gothic';
  font-weight: 700;
  text-transform: capitalize;
}
.faq-page .tab-style-3 .nav-link.active {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: 3px solid rgba(189, 116, 24, 1) !important;
}
.faq-page .tab-style-3 .nav-link.active span {
  color: rgba(189, 116, 24, 1) !important;
}
.faq-page .tab-style-3 .nav-link:hover {
  background-color: transparent !important;
  color: rgba(189, 116, 24, 1) !important;
}
.faq-accordion .accordion .accordion-content p {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
}

/* Event planning page */
.event-planning-page .corporate-banner .position-absolute .content {
  max-width: 819px;
}

/* Oreder detail page styling */
.order-detail-page .order-detail-card {
  max-width: 950px;
  border: 1px solid rgba(219, 219, 219, 1);
  border-radius: 24px;
  padding: 36px;
}
.order-detail-card .card-header {
  padding: 48px 36px 24px;
}
.order-detail-card .reorder-btn {
  border: 1px solid rgba(232, 232, 232, 1);
  padding: 0 10px;
  color: rgba(28, 28, 28, 1);
}
.order-detail-card .back-reorder-btn {
  gap: 15px;
}
.order-detail-card .order-no {
  color: rgba(88, 87, 87, 1);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400px;
}
.order-detail-card .buyer-name {
  color: rgba(38, 38, 38, 1);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.order-detail-card .sm-gray-text {
  color: rgba(166, 169, 187, 1);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  font-family: 'futura';
  margin-bottom: 4px; 
}
.order-detail-card .md-gray-text {
  color: rgba(86, 92, 117, 1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'century-gothic';
}
.border-bottom-dashed {
  border-bottom: 1px dashed rgba(219, 219, 219, 1);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.order-detail-card .mb--24 {
  margin-bottom: 24px;
}
.order-detail-card .pb--24 {
  padding-bottom: 24px;
}
.order-table {
  background-color: rgba(246, 248, 249, 1)!important;
  border-radius: 12px !important;
}
.order-table .items-title {
  color: rgba(14, 14, 36, 1);
  font-size: 24px;
  font-weight: 500;
  font-family: 'futura';
}
.order-detail-card .table tbody td, .order-detail-card .table tfoot td {
  padding-left: 0;
  padding-right: 0;
}
.order-detail-card .table tfoot td { 
  border-bottom: none !important;
}
.order-detail-card .table tfoot td {
  border-bottom: none !important;
  font-size: 16px;
  font-weight: 700;
  color: rgba(86, 92, 117, 1) !important;
}
.order-detail-card .table tfoot td.text-danger {
  color: #dc3545 !important;
}
.order-detail-card .table tfoot tr:first-child td {
  padding-top: 12px;
}
.order-detail-card .table tbody td.table-data {
  padding-top: 32px;
  padding-bottom: 32px;
}
.order-detail-card .table tbody tr:not(:first-child) td.table-data {
  border-top: 1px dashed rgba(219, 219, 219, 1);
}
.order-detail-card .table tbody tr td.table-data {
  border-bottom: none !important;
}
.order-detail-card .table tbody tr:last-child td.table-data {
  border-bottom: 1px solid #E8E8E8 !important;
}
.order-detail-card .img-col {
  border: 1px solid rgba(232, 232, 232, 1);
  background-color: rgba(255, 255, 255, 1);
  width: 64px;
  height: 64px;
  border-radius: 8px;
  padding: 8px;
  margin-right: 16px;
}
.order-detail-card .quantity-tag {
  border: 1px solid rgba(193, 210, 209, 1);
  background-color: #EFF3F4;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 20px;
  width: max-content;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
}
.order-detail-card .case-text {
  margin-bottom: 0;
  color: rgba(28, 28, 28, 1);
  font-size: 12px;
  font-weight: 700 !important;
  line-height: 16px;
  font-family: 'century-gothic';
}
.order-detail-card .qty-text {
  margin-bottom: 0;
  color: rgba(88, 87, 87, 1);
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 16px;
  font-family: 'century-gothic';
}
.order-detail-card .price-text {
  color: rgba(38, 38, 38, 1) !important;
  font-size: 20px !important;
  line-height: 28px;
  font-weight: 700 !important;
}
.order-detail-card .img-col .img-fluid {
  height: 100% !important;
  object-fit: contain;
}

@media only screen and (min-width: 992px) {
  .order-no-row .col-lg-8 {
    padding-right: 36px !important;
  }
  .order-no-row .col-lg-4 {
    padding-left: 36px !important;
  }
}



/* --------------------------------Responsive Styling Start from here-------------------------- */
@media only screen and (min-width: 580px) and (max-width: 768px) {
  .main-content-wrapper.membership-page {
    padding-top: 104.5px;
  }
}
@media only screen and (max-width: 768px) {
  .event-planning-page .why-partner-section {
    padding-bottom: 0 !important;
  }
  .event-planning-page .celebrating-container .content {
    padding-bottom: 32px !important;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
  }
  .corporate-page.event-planning-page .get-started-container {
    padding-top: 40px !important;
  }
  .event-planning-page .celebrating-container .heading br, .event-planning-page .celebrating-container .sub-text br {
    display: none;
  }
  .event-planning-page .celebrating-container .sub-text {
    text-align: left !important;
    padding: 17px 0 32px !important;
  }
  .event-planning-page .why-partner-section .col-md-3 {
    margin-bottom: 24px;
  }
  .event-planning-page .get-started-container .heading {
    margin-bottom: 48px !important;
  }
  .faq-page {
    padding-top: 150px !important;
  }
  .faq-page .about-text h2 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 40px;
  }
  .faq-page .product-tab-area .tab-content {
    margin-top: 0 !important;
  }
  .faq-page .tab-style-3 .nav-tabs {
    gap: 36px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .faq-page .tab-style-3 .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .faq-page .tab-style-3 .nav-link {
    white-space: nowrap;
  }
  .membership-page .desktop-img {
    display: none !important;
  }
  .membership-page .mobile-img {
    display: block !important;
  }
  .membership-page .content .heading {
    color: #262626;
    font-size: 32px;
    line-height: 44px;
    font-weight: 600;
    text-align: center !important;
  }
  .membership-page .content .sub-text, .corporate-page .content .sub-text {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 0 !important;
  }
  .membership-page .banner-btn {
    width: auto !important;
  }
  .membership-page .container-fluid.position-absolute {
    height: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 31.83%, rgba(255, 255, 255, 0.3) 68.12%, rgba(255, 255, 255, 0.7) 98.72%);
  }
  .membership-page .banner .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
  }
  .membership-page .container-fluid {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .membership-page .container-fluid h1, .membership-page .saveMore {
    font-size: 32px;
    line-height: 44px;
  }
  .membership-page .row .col-md-4:not(:last-child) {
    margin-bottom: 12px;
    border-bottom: none;
  }
  .membership-page .testimonial-card {
    margin-right: 0 !important;
    min-width: 100% !important;
  }
  .membership-page .testimonial-card.active-border {
    border: none !important;
  }
  .membership-page .review-head {
    padding: 80px 18px 55px !important;
  }
  .get-started-container {
    padding-top: 20px !important;
    border-bottom: none !important;
  }
  .get-started-container .col-md-4 {
    margin-bottom: 0;
  }
  .get-started-container .custom-card {
    background-color: transparent !important;
  }
  .get-started-container .col-md-4:not(:last-child) .custom-card {
    border-bottom: 1px solid #E8E8E8 !important;
    border-radius: 0 !important;
  }
  .what-said-section {
    background-color: #fff !important;
  }
  .get-sipsaver-container h1 {
    margin-bottom: 48px;
  }
  .get-sipsaver-container .img-col, .get-sipsaver-container .img-col img {
    max-height: 489px !important;
    margin-bottom: 24px;
  }
  .get-sipsaver-container .custom-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .get-sipsaver-container .custom-card img { 
    margin-bottom: 24px;
    margin-right: 0;
  }
  .get-sipsaver-container h1 {
    padding-top: 73px;
  }
  .act-now-card.text-center {
    padding: 36px;
    width: 100%;
    margin-top: 64px;
  }
  .act-now-container .content {
    text-align: center;
  }
  .membership-page .faq-container {
    padding-bottom: 120px;
  }
  .ready-save-container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .membership-page .ready-save-container .heading, .membership-page .ready-save-container .sub-text {
    text-align: left !important;
  }
  .membership-page .ready-save-container .content {
    padding-top: 24px !important;
  }
  .show-on-desktop { display: none; }
  .show-on-mobile { display: block; }
  .act-now-card .bear-img {
    bottom: -78px;
    left: -31px;
  }
  .get-started-container .join-btn.text-center.my-48 {
    margin: 24px 0 !important;
  }
  .sip-saver-section.membership h1 {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 32px !important;
    margin-bottom: 32px !important;
  }
  .membership-page .testimonial-card-parent {
    width: 100% !important;
  }
  .corporate-page .effortless-container .heading {
    text-align: center !important;
    margin-bottom: 32px;
  }
  .corporate-page .effortless-container p.text-left {
    font-size: 16px;
    line-height: 24px;
    text-align: center !important;
  }
  .why-partner-section {
    padding-top: 32px;
  }
  .why-partner-section .col-md-4:not(:last-child) {
    margin-bottom: 24px;
  }
  .corporate-page .banner-btn {
    width: max-content !important;
  }
  .corporate-banner .position-absolute {
    height: 100%;
  }
  .corporate-banner .position-absolute .content {
    padding: 48px 0 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .corporate-page .heading {
    font-size: 32px;
    line-height: 44px;
  }
  .corporate-page .effortless-container {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .corporate-page .effortless-container .row .col-md-6 .text-left {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
  }
  .event-planning-page .effortless-container .row .col-md-6 .heading {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
  .explore-popular {
    margin-bottom: 0;
  }
  .corporate-page .product-tab-area .tab-content {
    margin-top: 16px;
  }
  .get-started-container .col-md-4.active {
    border-bottom: none !important;
  }
  .corporate-page .get-started-container {
    padding-top: 60px !important;
  }
  .corporate-page .get-started-container .form {
    margin-bottom: 48px !important;
  }
  .corporate-page .form-container {
    padding-bottom: 0 !important;
  }
  .corporate-page .faq-container {
    padding-top: 20px !important;
  }
  .about-page .banner .content .heading {
    font-size: 36px;
    line-height: 48px;
  }
  .about-page .banner .position-absolute .content {
    justify-content: flex-end;
  }
  .about-page .heading {
    text-align: center !important;
  }
  .about-page .sub-text, .about-page .content .sub-text {
    margin-bottom: 32px !important;
    padding-bottom: 32px !important;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
  }
  .about-page .independent-wrapper .container-fluid {
    margin-top: 0 !important;
  }
  .about-page .celebrating-container .sub-text {
    padding-bottom: 0 !important;
    border-bottom: none;
    text-align: left;
  }
  .about-page .celebrating-container .heading {
    text-align: left !important;
  }
  .about-page .celebrating-container .content {
    margin-bottom: 32px !important;
    padding-bottom: 32px !important;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
  }
  .about-page .independent-wrapper .container-fluid img  {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 580px) {
  .membership-page {
        /* padding-top: 129px;*/
        padding-top: 71px!important;
  }
  .categories-block {
        /*  height: 626px!important;*/
  }
  .fs-32-mobile{
    font-size:32px !important;
  }
}