/* Variables */
:root {
  --color-bg: #f8f8f8;
  --color-primary: #f8f8f8;
}

/* 2. Reset / Normalize */
html,
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

/* Base styles */
body {
  background: var(--color-bg);
}
body.dark {
  background: #121212;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}


/* Layout */
.page-main__wrapper {
  width: 100%;
  margin: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 575.98px) {
  .page-main__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-container {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;
  
}
@media (max-width: 575.98px) {
  .section-container {
padding: 3rem 1rem 2rem;
  }
}

/* Components */

.btn {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  border-radius: 13px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  width: auto;
  text-align: center;
  white-space: nowrap;
  border: none;
  background: none;
  color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none; /* removes Bootstrap focus shadow */
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}


.btn--black {
  background-color: #000 !important;
  color: #EDEDED !important;
}

.btn--warning {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: #DF4628 !important;
}

.btn--cancel {
  padding: 0.5rem;
  font-weight: 300;
  font-size: 0.85rem;
  color: #818181;
}

.btn--confirm {
  padding: 0.5rem;
  font-weight: 300;
  font-size: 0.85rem;
  color: #000000;
}

.btn--black:hover,
.btn--black:focus,
.btn--black:active {
  background-color: #111;
  color: #EDEDED;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Modifier: outline button */
.btn.btn--outline,
.btn.btn--outline:hover,
.btn.btn--outline:focus,
.btn.btn--outline:active {
  background: none;
  border: 1px solid #a0a0a0;
  border-radius: 8px;
  color: inherit;
  font-weight: 600;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus,
.btn--outline:active {
  background: #f5f5f5;
  border-color: #888;
  color: inherit;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn--round {
  border-radius: 99px;
  -ms-flex-item-align: center;
      align-self: center;
}


/* Dropdown menu */

.dropdown-menu {
  background-color: white;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 0.5rem;
  -webkit-box-shadow: 1px 1px 8px 1px #00000010;
          box-shadow: 1px 1px 8px 1px #00000010;
}

.dropdown-item {
  font-size: 13px;
  font-weight: 400;
  color: #00000095 !important;
  width: 100%;
  border-radius: 5px;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  gap: 10px;
  cursor: pointer;
}

.dropdown-item:hover {
  color: #000000 !important;
}

.dropdown-item_icon {
  font-size: 18px !important;
}

.dropdown-item:focus,
.dropdown-item:active {
  background-color: white;
}


/* Form */

.form__group {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
}

.form--auth {
  width: 390px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 4rem;
}

.form__input {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  background: none !important;
  border-radius: 8px; 
  border: 1px solid #ccc; 
  padding: 0.75rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form__input--light {
  background-color: #fdfdfd !important;
}

.form__input::-webkit-input-placeholder {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input::-moz-placeholder {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input:-ms-input-placeholder {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input::-ms-input-placeholder {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input::placeholder {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input:disabled {
  color: #A6A6A6; 
  opacity: 1; 
}

.form__input[readonly] {
  color: #A6A6A6 !important;
  opacity: 1 !important;
  border: 1px solid #a0a0a0 !important;
  
}
.form__input__label {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.form__info {
font-size: 0.8rem;
color: #9c9c9c;
}



/* override hover/focus states */
.form__input:focus {
  border-color: #000;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}


/* Medium editor */

.medium-editor-element {
  min-height: 400px !important;  
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  background: #fdfdfd;
  outline: none !important;
}

.medium-editor-placeholder:after {
  color: #aaa;
  font-style: italic;
}


/* offcanvas */

.mobile-menu {
  padding: 2rem 0rem 3rem;
  background-color: #F8F8F8;
}

.mobile-menu__header {
  padding: 0.6rem 1.5rem 2rem 1rem;
}

.mobile-menu__item {
  border-top: 1px solid #dedede;
  padding: 1.2rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
}

.mobile-menu__group {
  
}

.mobile-menu__group-title {
  font-weight: 300;
  font-size: 1.2rem;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dedede;
}

.mobile-menu__subitem {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
}

.mobile-menu__icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mobile-menu__icon--expanded {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}





/* table */

.aluvo-table {
width: 100%;
gap: 0.8rem;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
}

.aluvo-table__row{
background-color: #F5F5F5 !important;
border-radius: 10px !important;
border: 0.5px solid #d6d6d6;
width: 100%;
height: 50px;
padding-left: 1.5rem;
padding-right: 1rem;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;

}

.aluvo-table__content {
gap: 2rem;
}

.aluvo-table__cell-title {
font-size: 0.8rem;
font-weight: 600;

/* min-width: 150px */
}

.aluvo-table__cell-title--highlighted {
color: #4155EB !important;
}

.aluvo-table__cell-info {
  font-size: 0.8rem;
  font-weight: 400 !important;
color: #616161 !important;
width: 150px;
}

.aluvo-table__cell-action {

}

.aluvo-table__action-button {
width: 40px;
height: 40px;
}

/* Bootstrap table overrides */

.table-rounded {
  border-collapse: separate;
  border-spacing: 0 0.8rem; /* vertical spacing */
}

.table-rounded tbody tr td {
  background: #F5F5F5;
  height: 50px;
  border-top: 0.5px solid #d6d6d6;
  border-bottom: 0.5px solid #d6d6d6;
  padding-left: 1.5rem;
}


.table-rounded tbody tr td:first-child {
  border-left: 0.5px solid #d6d6d6;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}


.table-rounded tbody tr td:last-child {
  border-right: 0.5px solid #d6d6d6;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}


/* Utilities */
.u-text-center {
  text-align: center;
}

.p-tight {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.pointer {
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .u-mobile-padding {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* Bootstrap modal overrid */

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.1); 
}

.modal-content {
  border-radius: 1rem;
  border: none;        
  overflow: hidden;  
  height: 230px;
  max-width: 440px;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.modal-footer {
  padding: 0rem;
  border: none;
}

.modal--confirm {
padding: 2rem 2rem 1rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}

.modal__title {
  font-size: 1.2rem;
  font-weight: 500;
}

.modal__copy {
font-size: 0.9rem;
color: #838383;
}

/* 7. Page-specific styles */

/* Parent page scope */
.page-main__header {
  padding: 2.5rem 1.5rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===== MENU ===== */
.menu {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}

/* Elements */
.menu__logo {
  -ms-flex-item-align: center;
      align-self: center;
}

.menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-item-align: center;
      align-self: center;
}

.menu__link {
  color: #333;
  font-size: 0.8em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.menu__link--white {
  color: #b5b5b5;
}

.menu__link:hover {
  color: black;
}

.menu__link--white:hover {
  color: #b5b5b5;
}

.menu__link--grey {
  color: #8d8d8d;
  font-size: 0.8em;
  -ms-flex-item-align: center;
      align-self: center;
  white-space: nowrap;
  cursor: pointer;
}

.menu__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.menu__btn {
  padding: 0.4rem 1.3rem;
  white-space: nowrap;
  border-radius: 99px;
  border: 0.5px solid #c9c9c9 !important;
  background-color: #f3f3f3 !important;
  font-size: 0.75em;
  font-weight: 400;
}


/* BUTTON CTA */

.btn-cta {
  
  width: 140px;
  height: 45px;
  background-color: #000 !important;
  position: relative;
  border-radius: 99px;
  overflow: hidden;
  cursor:pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #252525 !important;
}

.text {
  width: 140px;
  height: 45px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
   font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

.primary {
  top: 0px;
}

.secondary {
  top: 80px;
}

.btn:hover .primary {
  top: -80px;
}

.btn:hover .secondary {
  top: 0px;
}

/* ===== HERO ===== */
.page-main__hero {
  padding: 12rem 4rem 4rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #222;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 5vw, 3.1rem);
}

.hero__title--break {
  display: block;
}

.hero__subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 4rem;
}

/* ===== FEATURES ===== */


/* SECTION INTRO */

.section-intro {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 575.98px) {
  .section-intro {
    margin-bottom: 4rem;
  }
}

.section-intro__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 540px;
  border-radius: 15px;
  background-color: #252525;
  padding: 2.5rem;
}

.section-intro__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
  overflow: hidden;
  min-width: 405px;
  border-radius: 15px;
}

.section-intro__title {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
}

.section-intro__copy {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 620px;
}

/* SECTION CUSTOMERS */

.section-customers {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* gap: 5rem */
  padding: 1.5rem 3rem 12rem;
}

/* SECTION FLOW */

.section-flow {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  padding-top: 5rem;
}

/* SECTION FEATURE ATS */

.section-feature-ats {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;gap: 4rem;
  padding-top: 12rem;
}
@media (max-width: 575.98px) {
  .section-feature-ats {
    padding-top: 3rem;
  }
}

.section-feature-ats__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border-radius: 15px;
  background-size: cover;
  background-image: url("../assets/images/elements/ft1_bg.jpg");
  aspect-ratio: 1 / 1;
  max-height: 605px;
  min-width: 405px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .section-feature-ats__right {
    min-width: 320px;
  }
}


.section-feature-ats__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
-webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
        flex: 1 1 0;min-width: 360px;min-height: 450px;
  gap: 4.5rem;
}
@media (max-width: 575.98px) {
  .section-feature-ats__left {
    min-width: 320px;
  }
}

.section-feature-ats-select {
  padding-bottom: 8rem;
}
@media (max-width: 991.98px) {
  .section-feature-ats-select {
    padding-bottom: 2rem;
    
  }
}

.section-feature-ats-select p {
  cursor: pointer;
  font-family: merriweather;
  font-weight: 300;
   font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 2.2rem;
  opacity: 0.15;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: left center;
          transform-origin: left center; /* scale from left side */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

.section-feature-ats-select p.slider__active {

  opacity: 1;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}


.section-feature-ats__title {
 font-family: merriweather; 
  color: #000;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.section-feature-ats__copy {
  color: #0E0E0E;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 475px;
}

/* SECTION FEATURE COLLAB */

.section-feature-collab {
  width: 100%;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 11rem;

}

.section-feature-collab__slide {
  width: 100%;
  max-width: 1280px;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}

.section-feature-collab__slide__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
-webkit-box-flex: 2;
    -ms-flex: 2;
        flex: 2;
  height: 510px;
  min-width: 360px;
  border-radius: 15px;
  background-color: #EAEBEB;
  padding: 2.5rem;
}
@media (max-width: 575.98px) {
  .section-feature-collab__slide__left {
min-width: 320px;
  }
}

.section-feature-collab__slide__right {
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
  min-width: 405px;
  min-height: 410px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media (max-width: 575.98px) {
  .section-feature-collab__slide__right {
    min-width: 320px;
  }
}

.section-feature-collab__title {
 font-family: merriweather; 
  color: #000;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.section-feature-collab__title--sm {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
}

.section-feature-collab__copy {
  color: #0E0E0E;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 490px;
}

.section-feature-collab__copy--wide {
  max-width: 520px;
}

.section-feature-collab__meta {
font-weight: 400;
font-size: 0.9rem;
margin-bottom: 1rem;
}

.section-feature-collab__nav {
gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.section-feature-collab__btn {
  background-color: #f8f8f8 !important;
  color: #818181 !important;
  border-radius: 99px;
  font-weight: 300;
  font-size: .75rem;
  padding: .5rem 1.8rem;
  border: none !important;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.section-feature-collab__btn--active {
background-color: #000 !important;
  color: #fff !important;
}

.section-feature-collab__btn-cta {
  
  width: 105px;
  height: 35px;
  background-color: #9B9B9B !important;
  position: relative;
  border-radius: 99px;
  overflow: hidden;
  cursor:pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.section-feature-collab__btn-cta:hover {
  background-color: #252525 !important;
}

.section-feature-collab__btn-cta__text {
  width: 105px;
  height: 34px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 300;
  font-size: .75rem;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

.section-feature-collab__btn-cta__text--primary {
  top: 0px;
}

.section-feature-collab__btn-cta__text--secondary {
  top: 80px;
}

.section-feature-collab__btn-cta__text--primary:hover {
  top: -80px;
}

.section-feature-collab__btn-cta__text--secondary:hover {
  top: 0px;
}


/* SECTION CTA */

.section-cta {
  width: 100%;
  max-width: 1280px;
  height: 578px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18rem;
  padding-top: 8rem;
  background-image: url("../assets/images/elements/cta_bg.jpg");
  background-size: cover;
  border-radius: 20px;
}
@media (max-width: 575.98px) {
  .section-cta {
    margin-top: 4rem;
    padding-top: 10rem;
  }
}


/* SECTION FOOTER */

.footer {
  width: 100%;
  max-width: 1280px;
  height: 578px;
  padding-top: 9rem;
}

.footer--small {
  height: auto;
  padding-top: 12rem;
}

.footer__meta{
  margin-bottom: 0px;
  font-size: .75rem;
  color: #818181;
}

.footer__menu {
  padding-right: 5rem;
  row-gap: 0.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-menu__category {
  margin-bottom: 1rem;
  font-size: .85rem;
  font-weight: 400;
  color: #000;
}

.footer-menu__item {
  font-size: .8rem;
  font-weight: 400;
  color: #818181;
  margin-bottom: 0rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, color 0.3s ease;
  transition: color 0.3s ease, color 0.3s ease;
}

.footer-menu__item:hover {
  color: #000000;
}

.footer__social {
  gap: .8rem;
}

.footer__branding {
min-width: 280px;
min-height: 100px;
}

/* Feature slider controls */

.slider {
  width: 60px;
  height: 10px;
  gap: 5px;
  margin-top: 3rem;
  
}

.slider__dot {
  height: 7px;
  width: 7px;
  border-radius: 99px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease; 
}

.slider__dot.slider--white { background-color: #fbfbfb; }
.slider__dot.slider--black { background-color: #000; }

.slider__dot.slider__active {
  width: 30px; /* expanded width for active dot */
}


.slider-wrapper {
  position: relative;
  height: 90px;
}

.slider-wrapper__ft1 {
  position: relative;
  height: 250px;
}

.section__ft1--slider {
  max-width: 475px;
  padding-top: 3.5rem;
}

/* Full width for lg and below (<= 992px) */
@media (max-width: 992px) {
  .section__ft1--slider {
    width: 100%;
    max-width: 100%;
  }
}


.slider-wrapper__img {
  position: relative;
  height: 100%;
}

.slider__fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  /* visibility: hidden */
  -webkit-transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;
}

.slider__fade__active {
  opacity: 1;
  visibility: visible;
}


/* FAQ page */

.faq {
  padding: 9rem 0rem 1rem;
  gap: 1rem;
  max-width: 1280px;
  width: 100%;
}

.faq__title {
font-family: merriweather;
font-size: 2.5rem;
}

.faq__subtitle {
  font-size: 0.8rem;
  color: #222222;
}

.faq__entries {
  padding: 3rem 0rem 0rem;
  width: 100%;max-width: 1280px;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}


.faq__item {
 border: 0.5px solid #c9c9c9;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 10px;
    -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;

}

.faq__item--expanded {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
-webkit-transform: translateY(-2px);
        transform: translateY(-2px);
}

.faq__item:hover {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
-webkit-transform: translateY(-2px);
        transform: translateY(-2px);
}

.faq__item-header {
min-height: 65px;
cursor: pointer;
}

.faq__item-title {
  font-size: 1rem;
  font-weight: 500;
}

.faq__item-content {
 padding-bottom: 2rem;
 padding-right: 3.5rem;
 font-size: 0.9rem;
 color: #494949;
 max-width: 520px;
}

.faq__item-icon__wrapper {
  background-color: #F3F3F3;
  width: 40px;
  height: 40px;
  border-radius: 99px;
}

.faq__item-icon {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item-icon--rotate {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}


/* Pricing page */

.pricing {
  padding: 12rem 4rem 4rem;
  gap: 1.5rem;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pricing-table {
  max-width: 1070px;
  padding-top: 6rem;
  width: 100%;
}
@media (max-width: 768px) {
  .pricing-table {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pricing-table__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;  
  min-width: 320px;
}

.pricing-table__column-header {
  min-height: 180px;
  width: 100%;
}

.pricing-table__column--features {
  padding-right: 4rem;
}

.pricing-table__column--startup {
  padding-right: 4rem;
  padding-left: 4rem;
  border-right: 1px solid #333333;
}
@media (max-width: 990px) {
  .pricing-table__column--startup {
    padding-left: 0rem;
  }
}
@media (max-width: 770px) {
  .pricing-table__column--startup {
    border-bottom: 1px solid #333333;
    border-right: none;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .pricing-table__column--startup {
    padding-right: 0rem;
  }
}

.pricing-table__column--enterprise {
  padding-right: 4rem;
  padding-left: 4rem;
}
@media (max-width: 768px) {
  .pricing-table__column--enterprise {
    padding: 0rem;
  }
}

.pricing-table__feature-list {
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  width: 100%;
  color: #949494;
}

.pricing__title {
font-family: merriweather;
font-size: 2rem;
max-width: 450px;
color: #f8f8f8;
}

.pricing__subtitle {
  font-size: 0.8rem;
  color: #D1D1D1;
}

.pricing-icon {
  display: inline-block;            
  -webkit-transition: -webkit-transform 0.25s ease;            
  transition: -webkit-transform 0.25s ease;            
  transition: transform 0.25s ease;            
  transition: transform 0.25s ease, -webkit-transform 0.25s ease; 
  color: red;
}

.pricing-icon:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);  
}

.pricing-table__title {
  color: #f8f8f8;
  font-size: 1.25rem;
}

.pricing-table__description {
color: #949494;
}

.pricing-table__price {
  color: #f8f8f8;
}

/* Magazine */

.magazine {
width: 100%;
max-width: 1280px;
}

.magazine__header {
width: 100%;
padding-top: 8rem;
padding-bottom: 2rem;
gap: 1.25rem;
}

.magazine__title {
  font-family: merriweather;
font-size: 1.8rem;
max-width: 450px;
line-height: 2.2rem;
letter-spacing: 0.5rem;
}

.magazine__subtitle {
  font-size: 1.7rem;
  color: #222222;
}

.magazine__top {
  padding-top: 6rem;
  padding-bottom: 5rem;
  gap: 8rem;
}

.magazine__featured {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.magazine__recent {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding-top: 8rem;
}

.magazine__recent__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
}

.magazine__bottom {
  padding-top: 5rem;
  width: 100%;
  border-top: 1px solid #dedede;
}

.magazine__grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.magazine__featured-image {
  border-radius: 8px;
margin-bottom: 2rem;
}

.magazine__featured-title {
font-size: 1.5rem;
font-weight: 500;
max-width: 400px;
}

.magazine__article {
-webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
        flex: 1 1 0;
margin-bottom: 2rem;
cursor: pointer;
}

.magazine__article-image {
  margin-bottom: 1rem;
  border-radius: 8px;
}

.magazine__article-title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  color: #000000;
}

.magazine__article-excerpt {
  font-size: 0.8rem;
  color: #000000;
}

.magazine__article-category {
  font-size: 0.75rem;
  color: #000000;
}

.magazine__section-title {
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}


/* Article */

.article {
  width: 100%;
  max-width: 1280px;
}

.article__header {
  padding-top: 9rem;
  padding-bottom: 6rem;
  font-size: 2.5rem;
  font-family: merriweather;
  max-width: 670px;
}

.article__body {
gap: 4rem;
}

.article__content-wrapper {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0px;
          flex: 2 1 0;
}

.article__image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 320px;
  padding-bottom: 1rem;
}

.article__details {
-webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
        flex: 1 1 0;
font-size: 0.75rem;
color: #9E9E9E;
min-width: 250px;
padding-bottom: 1.5rem;
gap: 0.5rem;
}

.article__content {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0px;
          flex: 2 1 0;
font-size: 0.9rem;
min-width: 320px;
}

.article__image {
  border-radius: 5px;
}

.btn-read {
  display: inline-block;
  position: relative;
  padding: 8px 2px;
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-read::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: black;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.btn-read:hover::after {
  width: 100%;              /* animate to full width */
}


/* Help */

.help {
  width: 100%;
  max-width: 1280px;
  padding-top: 9rem;
  gap: 4rem;
}

.help__sidebar {
  -webkit-box-flex: 1.1.1;
      -ms-flex: 1.1.1;
          flex: 1.1.1;
  padding-top: 180px;
}

.help__index {
  gap: 2rem;
  
}

.help-index__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.help-index__group {

}

.help-index__group-title {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.6rem;  
}

.help-index__item {
  font-size: 0.75rem;
  border-left: 2px solid #d8d8d8;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

.help-index__item--active {
  border-left-color: #000000;
}

.help__content {
  -webkit-box-flex: 4.4.1;
      -ms-flex: 4.4.1;
          flex: 4.4.1;
}

.help__top {
  padding-bottom: 3rem;
}

.help__header {
  margin-bottom: 3rem;
}

.help__bottom {
}

.help__title {
  font-size: 2.2rem;
  font-family: merriweather;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.help__subtitle {
  font-size: 1rem;font-weight: 300;
  /* color: #939393 */
  /* max-width: 200px */
}

.help__search {
  height: 40px;
  max-width: 325px;
  font-size: 0.9rem;
  background: none !important;
  border-radius: 8px; 
  border: 1px solid #ccc; 
  padding-left: 0.5rem;
}

.help__search-input {
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 0.8rem;
  padding-left: 0.5rem;
}

.help__suggested {

}

.help__suggested-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns max */
  gap: 2rem;
  width: 100%;
}

.help__suggested-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #F8F8F8;
  border: 0.5px solid #c9c9c9;
  height: 210px;
  min-width: 320px;
  border-radius:8px;
  padding: 2rem;
  cursor: pointer;
  margin-bottom: 1rem;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.help__suggested-card:hover {
-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
-webkit-transform: translateY(-2px);
        transform: translateY(-2px);
}


.help__suggested-card-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #252525;
}

.help__suggested-card-desc {
font-size: 0.75rem;
color: #252525;
}

.help-article {
  padding-top: 1.5rem;
}

.help-article__title {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.help-article__content {
  font-size: 0.9rem;
}

.help-article__details {
  font-size: 0.75rem;
}


/* ===== ADMIN PAGES ===== */

.admin-layout {
max-width: 1120px;
width: 100%;
padding-top: 12rem;
}

.admin-layout__sidebar {
-webkit-box-flex: 1.1.1;
    -ms-flex: 1.1.1;
        flex: 1.1.1;
}

.admin-layout__content {
  -webkit-box-flex: 4.4.1;
      -ms-flex: 4.4.1;
          flex: 4.4.1;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column;
                  padding-bottom: 6rem;

}

.sidebar {

}

.sidebar__page-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.sidebar__section-title {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.sidebar__nav-item {
  font-size: 0.8rem;
  color: #8F8F8F;
  padding-left: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.25rem;
}

.sidebar__nav-item:hover {
  color: #000000;
}



