﻿/*Layout*/
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Thin.woff2") format("woff2"), url("/fonts/Inter/Inter-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-ExtraLight.woff2") format("woff2"), url("/fonts/Inter/Inter-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Light.woff2") format("woff2"), url("/fonts/Inter/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.woff2") format("woff2"), url("/fonts/Inter/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.woff2") format("woff2"), url("/fonts/Inter/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-SemiBold.woff2") format("woff2"), url("/fonts/Inter/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("/fonts/Inter/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Black.woff2") format("woff2"), url("/fonts/Inter/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-ExtraBold.woff2") format("woff2"), url("/fonts/Inter/Inter-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --heroty-primary-font: "Inter", sans-serif;
  --heroty-background-color: #fffffc;
  --heroty-primary-color: #E21818;
  --heroty-secondary-color: #FEEEEE;
  --heroty-text-color: #272727;
  --heroty-subtitle-color: #666665;
  --heroty-subpage-subtitle-color: #292F37;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a,
a:visited,
a:active,
a:link,
a:focus,
a:hover {
  text-decoration: none;
}

*:focus {
  outline: 0 !important;
}

body {
  font-size: 16px;
  font-family: var(--heroty-primary-font);
  background-color: var(--heroty-background-color);
  width: 100%;
  color: var(--heroty-text-color);
  overflow-x: hidden;
}
body:has(nav.opened) {
  overflow: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border: 5px solid #f2f2f2;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--heroty-primary-color);
  border-radius: 10px;
}

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

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

header {
  position: fixed;
  max-width: 1055px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 35px;
  box-shadow: 0px 12px 10px 0px rgba(122, 122, 122, 0.1019607843);
  background-color: var(--heroty-background-color);
  border-radius: 16px;
  z-index: 10;
  transition: all 0.4s;
}
header div.content {
  padding: 10px 15px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  /*   .mobile-icon:hover .strip div {
              background: white;
          }
  */
}
header div.content .logo {
  margin-top: 10px;
}
header div.content #header-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
header div.content #header-nav a {
  font-size: 14px;
  font-weight: 600;
}
header div.content #header-nav .dropdown {
  position: relative;
  transition: all 0.4s;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
header div.content #header-nav .dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  top: 20px;
  left: -125px;
  opacity: 0;
  transition: all 0.4s;
  cursor: default;
}
header div.content #header-nav .dropdown .dropdown-content .columns {
  max-width: 1010px;
  width: 100%;
  margin-top: 35px;
  position: relative;
  display: grid;
  grid-template-columns: 336px 672px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 12px 10px 0px rgba(122, 122, 122, 0.1019607843);
}
header div.content #header-nav .dropdown .dropdown-content .columns:before {
  content: "";
  position: absolute;
  border-right: solid 20px transparent;
  border-left: solid 20px transparent;
  border-bottom: solid 16px var(--heroty-secondary-color);
  left: 135px;
  top: -14px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column {
  padding: 35px;
  background-color: #fff;
  display: flex;
  height: 545px;
  overflow: hidden;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column .go-back {
  display: none;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column:first-child {
  background-color: rgba(255, 235, 235, 0.831372549);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .first ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 0;
  list-style: none;
  width: 100%;
}
header div.content #header-nav .dropdown .dropdown-content .columns .first ul li {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  cursor: pointer;
}
header div.content #header-nav .dropdown .dropdown-content .columns .first ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
header div.content #header-nav .dropdown .dropdown-content .columns .first ul li img {
  filter: brightness(0);
  transition: all 0.4s;
  z-index: unset;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second {
  padding: 0;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item {
  width: 100%;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content, header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview {
  min-width: 50%;
  padding: 35px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content .column-title, header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview .column-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: left;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content .column-title {
  font-size: 14px;
  font-weight: 600;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul li {
  padding: 10px 15px 10px 0;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s;
  border-radius: 12px;
  cursor: pointer;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul li:not(:has(.entered)):hover {
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  padding: 10px 15px;
  border-radius: 12px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul .entered {
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  padding: 10px 15px;
  border-radius: 12px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content a.more {
  padding: 5px 25px;
  transition: all 0.4s;
  border-radius: 12px;
  color: var(--heroty-primary-color);
  background-color: var(--heroty-secondary-color);
  width: fit-content;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid #E8E8E8;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a:hover {
  transform: scale(1.03);
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a .icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  min-width: 55px;
  height: 55px;
  justify-content: center;
  background: #EEEEEE;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a .overview-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a .overview-content span {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview nav a .overview-content p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #C6C6C6;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview a.features {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 5px;
  color: #C6C6C6;
}
header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview a.features img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(73%) sepia(0%) saturate(70%) hue-rotate(147deg) brightness(109%) contrast(92%);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item:hover {
  color: var(--heroty-primary-color);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item:hover img {
  filter: unset;
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item.active {
  color: var(--heroty-primary-color);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item.active a {
  color: var(--heroty-primary-color);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item.active img {
  filter: unset;
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-entered {
  color: var(--heroty-primary-color);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-entered a {
  color: var(--heroty-primary-color);
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-entered img {
  filter: unset;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column-item {
  display: none;
}
header div.content #header-nav .dropdown .dropdown-content .columns .column-item.active {
  display: flex;
}
header div.content #header-nav .dropdown .dropdown-content .columns .menu-item.active ~ .third .column-item {
  display: block;
}
header div.content #header-nav .dropdown .dropdown-content + .arrow {
  display: none;
}
@media (min-width: 1065px) {
  header div.content #header-nav .dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
  }
}
header div.content #header-nav hr {
  border: 1px solid #E7E7E7;
  transform: rotate(90deg);
  width: 22px;
}
header div.content #header-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
header div.content #header-nav .demo {
  padding: 10px 18px;
  background-color: var(--heroty-secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heroty-primary-color);
  transition: all 0.4s;
  white-space: nowrap;
}
header div.content #header-nav .demo:hover {
  color: #fff;
  background-color: var(--heroty-primary-color);
}
header div.content #header-nav .demo:hover img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(7%) saturate(280%) hue-rotate(314deg) brightness(133%) contrast(98%);
}
header div.content #header-nav .lang {
  padding: 8px 14px;
  border: 1.5px solid var(--heroty-primary-color);
  border-radius: 12px;
  color: var(--heroty-primary-color);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.4s;
  white-space: nowrap;
}
header div.content #header-nav .lang:hover {
  background-color: var(--heroty-primary-color);
  color: #fff;
}
header div.content .mobile-icon {
  display: none;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  /*background: white;
  box-shadow: rgb(136 165 191 / 48%) 6px 2px 16px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;*/
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all 0.5s ease;
  /* margin: 1em;*/
  /*   &:hover {
      background: rgb(56 56 56);
  }*/
}
header div.content .mobile-icon .strip {
  transition: all 0.5s ease;
}
header div.content .mobile-icon .strip div {
  height: 3px;
  border-radius: 2px;
  background: var(--heroty-primary-color);
  margin: 10px;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 30px;
}
header div.content .active .strip div:first-child {
  transform: translateY(13px) rotate(-45deg);
}
header div.content .active .strip div:nth-child(2) {
  opacity: 0;
}
header div.content .active .strip div:last-child {
  transform: translateY(-13px) rotate(45deg);
}
@media (max-width: 1065px) {
  header {
    top: 0;
    border-radius: unset;
  }
  header div.content {
    gap: unset;
    justify-content: space-between;
  }
  header div.content .logo {
    max-width: 150px;
    width: 100%;
  }
  header div.content #header-nav {
    transition: 0.45s;
    transform: translateX(100%);
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: calc(100dvh - 70px);
    background-color: #fff;
    margin-top: 64px;
    padding-top: 20px;
    align-items: start;
    left: 0;
  }
  header div.content #header-nav a {
    width: 100%;
    padding-left: 15px;
  }
  header div.content #header-nav .nav-actions {
    width: 100%;
    padding: 16px 15px 8px;
    border-top: 1px solid #E7E7E7;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  header div.content #header-nav .nav-actions a {
    width: auto;
    padding-left: 0;
  }
  header div.content #header-nav .nav-actions .demo {
    flex: 0 0 60%;
    max-width: 60%;
    justify-content: center;
  }
  header div.content #header-nav .nav-actions .lang {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 52px;
    padding: 10px 8px;
    line-height: 1;
  }
  header div.content #header-nav .demo {
    max-width: 200px;
  }
  header div.content #header-nav hr {
    display: none;
  }
  header div.content #header-nav .dropdown {
    width: 100%;
    padding-left: 15px;
    position: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header div.content #header-nav .dropdown .dropdown-content {
    width: 100%;
    left: 0;
    top: 0;
    transform: translateX(100%);
    visibility: unset;
    opacity: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns {
    display: flex;
    flex-direction: column;
    max-width: unset;
    margin-top: 0;
    border-radius: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns:before {
    display: none;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column {
    height: calc(100dvh - 81px);
    padding: 15px;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column:first-child {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    background-color: #fff;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column:last-child {
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column .column-item {
    width: 100%;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column .go-back {
    display: flex;
    align-items: center;
    position: absolute;
    right: 35px;
    top: 7px;
    cursor: pointer;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .column .go-back img {
    display: block;
    width: 30px;
    transform: rotate(180deg);
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .first ul {
    width: 100%;
    margin-top: 40px;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .first ul li {
    display: flex;
    justify-content: space-between;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .first ul li a {
    padding-left: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second {
    position: absolute;
    width: 100%;
    transition: 0.45s;
    transform: translateX(100%);
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second:has(.active) {
    transform: translateX(0);
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item {
    flex-direction: column;
    overflow: auto;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content, header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview {
    width: 100%;
    padding: 10px;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content {
    border-right: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-content ul li a {
    padding-left: unset;
  }
  header div.content #header-nav .dropdown .dropdown-content .columns .second .column-item .column-overview {
    margin-top: 20px;
    border-left: unset;
    border-top: 1px solid #E8E8E8;
  }
  header div.content #header-nav .dropdown .dropdown-content + .arrow {
    display: block;
  }
  header div.content .opened {
    transform: translateX(0) !important;
  }
  header div.content .mobile-icon {
    display: flex;
  }
}

@media (min-width: 1065px) {
  header.scroll {
    top: 25px;
  }
}
main {
  display: flex;
  flex-direction: column;
  gap: 110px;
  /*Product*/
  /*Core-HR*/
  /*Pay&Benefit*/
  /*Payroll*/
  /*Time Managment*/
  /*HR Modules*/
  /*Hiring&Onboarding*/
  /*Mobile*/
  /*Services*/
  /*Other Pages*/
  /*Responsive*/
}
main section div.content {
  width: 100%;
  max-width: 1290px;
  padding: 0 15px;
  margin: 0 auto;
}
main section.subpage {
  display: flex;
  flex-direction: column;
  /*        gap:50px;*/
}
main section.subpage .content {
  display: flex;
  flex-direction: column;
}
main section.subpage .content .boxes {
  display: flex;
  flex-direction: column;
  gap: 110px;
}
main section.subpage .content .boxes h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.25px;
  text-align: left;
  color: var(--heroty-subpage-subtitle-color);
}
main section.subpage .content .boxes p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
  width: 100%;
  color: var(--heroty-subtitle-color);
}
main section.subpage .content .boxes ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 25px;
  list-style-image: url("../img/icons/circle-check.svg") !important;
}
main section.subpage .content .boxes ul li {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
}
main section.subpage .content .boxes [class^=box] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*
  .left {
      gap: 15px;
  }

  .right {
      gap: 35px;
  }*/
}
main section.subpage .content .boxes [class^=box] .left, main section.subpage .content .boxes [class^=box] .right {
  display: flex;
  flex-direction: column;
  width: 45%;
  gap: 25px;
}
main section.subpage .content .boxes [class^=box] ul, main section.subpage .content .boxes [class^=box] h2 {
  width: 100%;
}
main section.subpage .content .boxes .box2 {
  align-items: center;
}
main section.subpage .content .boxes .buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
main section.subpage .content .boxes .buttons a {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-align: left;
}
main section.subpage .content .boxes .buttons a:first-child {
  color: var(--heroty-primary-color);
  background-color: var(--heroty-secondary-color);
}
main section.subpage .content .boxes .buttons a:last-child {
  background-color: #fff;
  color: var(--heroty-primary-color);
  border: 3px solid var(--heroty-primary-color);
}
main section.subpage .content .help-box {
  width: 100%;
  border: 1px solid #EBEBEB;
  background: #F8F8F5;
  border-radius: 30px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 110px;
}
main section.subpage .content .help-box .left, main section.subpage .content .help-box .right {
  width: 45%;
}
main section.subpage .content .help-box .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
main section.subpage .content .help-box .right h2 {
  font-size: 28px;
  font-weight: 700;
}
main section.subpage .content .help-box .right p {
  font-weight: 500;
}
main section.subpage .content .help-box .right a {
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  border-radius: 20px;
}
main section.subpage .content .faq {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 110px;
}
main section.subpage .content .faq h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: -1.25px;
  text-align: left;
  color: var(--heroty-primary-color);
}
main section.subpage .content .faq p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
}
main section.subpage .content .faq ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 518px;
}
main section.subpage .content .faq ul li {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
  text-align: left;
}
main section.subpage .content .faq .faq-content {
  display: flex;
  justify-content: space-between;
}
main section.subpage .content .faq .faq-content .right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 50%;
}
main section.subpage .content .faq .faq-content .right .accordion {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
main section.subpage .content .faq .faq-content .right .accordion .accordion-header {
  width: 100%;
  border-bottom: 1px solid #D2D2D2;
  text-align: center;
  padding: 8px 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
  justify-content: space-between;
}
main section.subpage .content .faq .faq-content .right .accordion .accordion-content {
  padding: 8px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main section.subpage .content .faq .faq-content .right .accordion .accordion-content p {
  /*  max-width: 518px;*/
  font-weight: 500;
}
main section.subpage .content .faq .faq-content .left {
  max-width: 450px;
}
main section.subpage .subpage-banner {
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}
@media (min-width: 2500px) {
  main section.subpage .subpage-banner {
    align-items: center;
  }
}
@media (min-width: 1065px) and (min-height: 800px) {
  main section.subpage .subpage-banner {
    padding-bottom: 200px;
  }
}
main section.subpage .subpage-banner .content {
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 65px;
}
main section.subpage .subpage-banner .content .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 45%;
}
main section.subpage .subpage-banner .content .left h1 {
  background: linear-gradient(277.78deg, #2E0404 0.22%, #ED1818 37.23%, #2E0404 82.54%, #2E0404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: left;
}
main section.subpage .subpage-banner .content .left p {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-align: left;
}
main section.subpage .subpage-banner .content .left .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 440px;
}
main section.subpage .subpage-banner .content .left .buttons a {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-align: left;
}
main section.subpage .subpage-banner .content .left .buttons a:first-child {
  color: var(--heroty-primary-color);
  background-color: var(--heroty-secondary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
}
main section.subpage .subpage-banner .content .left .buttons a:first-child:hover {
  color: #fff;
  background-color: var(--heroty-primary-color);
}
main section.subpage .subpage-banner .content .left .buttons a:first-child:hover img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(7%) saturate(280%) hue-rotate(314deg) brightness(133%) contrast(98%);
}
main section.subpage .subpage-banner .content .left .buttons a:nth-child(2) {
  background-color: #fff;
  color: var(--heroty-primary-color);
  border: 3px solid var(--heroty-primary-color);
}
main section.subpage .subpage-banner .content .right {
  position: absolute;
  right: 70px;
  top: 210px;
}
@media (max-width: 1145px) {
  main section.subpage .subpage-banner .content .right {
    right: 20px;
  }
}
main section.employee-records .subpage-banner {
  background-image: url("../img/subpages/core-hr/employee-records/subpage-banner.jpg");
}
main section.holding-structure .subpage-banner {
  background-image: url("../img/subpages/core-hr/holding-structure/subpage-banner.jpg");
}
main section.holding-structure .content .help-box {
  padding: 15px;
}
main section.organisational-chart .subpage-banner {
  background-image: url("../img/subpages/core-hr/organisational-chart/subpage-banner.jpg");
}
main section.organisational-chart .subpage-banner .content .left h1 span {
  all: initial;
  font-size: 64px;
}
main section.self-service .subpage-banner {
  background-image: url("../img/subpages/core-hr/self-services/subpage-banner.jpg");
}
main section.self-service .subpage-banner .content {
  padding-bottom: 0;
}
@media (min-height: 800px) {
  main section.self-service .subpage-banner {
    align-items: center;
    padding-bottom: 0;
  }
}
main section.documents .subpage-banner {
  background-image: url("../img/subpages/core-hr/documents/subpage-banner.jpg");
}
main section.workflows-approvals .subpage-banner {
  background-image: url("../img/subpages/core-hr/workflows-approvals/subpage-banner.jpg");
}
main section.task-managment .subpage-banner {
  background-image: url("../img/subpages/core-hr/task-managment/subpage-banner.jpg");
}
main section.pay-benefit .subpage-banner {
  background-image: url("../img/subpages/pay-benefit/subpage-banner.jpg");
}
main section.payroll .subpage-banner {
  background-image: url("../img/subpages/payroll/subpage-banner.jpg");
}
main section.payroll .content .boxes .box2 .left img {
  box-shadow: 0px 11.58px 46.31px 0px rgba(122, 122, 122, 0.2509803922);
  border-radius: 10px;
}
main section.payroll .content .boxes .box3 .right img {
  box-shadow: 0px 13.51px 54.05px 0px rgba(122, 122, 122, 0.2509803922);
  border-radius: 15px;
}
main section.holiday-planner .subpage-banner {
  background-image: url("../img/subpages/time-managment/holiday-planner/subpage-banner.jpg");
}
main section.holiday-planner .subpage-banner .content .right {
  right: 24.5%;
}
main section.holiday-planner .content .boxes .box3 .right img {
  box-shadow: 0px 9.45px 37.79px 0px rgba(122, 122, 122, 0.2509803922);
  border-radius: 13px;
}
main section.calendar .subpage-banner {
  background-image: url("../img/subpages/time-managment/calendar/subpage-banner.jpg");
  align-items: center;
}
main section.absence-managment .subpage-banner {
  background-image: url("../img/subpages/time-managment/absence-managment/subpage-banner.jpg");
  align-items: center;
}
main section.training .subpage-banner {
  background-image: url("../img/subpages/hr-modules/training/subpage-banner.jpg");
}
main section.asset .subpage-banner {
  background-image: url("../img/subpages/hr-modules/asset/subpage-banner.jpg");
}
main section.asset .subpage-banner .content .left {
  width: 51%;
}
main section.expense .subpage-banner {
  background-image: url("../img/subpages/hr-modules/expense/subpage-banner.jpg");
}
main section.expense .subpage-banner .content .left {
  width: 51%;
}
main section.announcement .subpage-banner {
  background-image: url("../img/subpages/hr-modules/announcement/subpage-banner.jpg");
}
main section.recruiting .subpage-banner {
  background-image: url("../img/subpages/hiring-onboarding/recruiting/subpage-banner.jpg");
  align-items: center;
}
main section.recruiting .subpage-banner .content {
  padding-bottom: 0;
}
@media (min-width: 1065px) and (min-height: 800px) {
  main section.recruiting .subpage-banner {
    padding-bottom: 0;
  }
}
main section.onboarding .subpage-banner {
  background-image: url("../img/subpages/hiring-onboarding/onboarding/subpage-banner.jpg");
  align-items: center;
}
main section.onboarding .subpage-banner .content {
  padding-bottom: 0;
}
@media (min-width: 1065px) and (min-height: 800px) {
  main section.onboarding .subpage-banner {
    padding-bottom: 0;
  }
}
main section.offboarding .subpage-banner {
  background-image: url("../img/subpages/hiring-onboarding/offboarding/subpage-banner.jpg");
  align-items: center;
}
@media (min-width: 1065px) and (min-height: 800px) {
  main section.offboarding .subpage-banner {
    padding-bottom: 0;
  }
}
main section.mobile .subpage-banner {
  background-image: url("../img/subpages/mobile/subpage-banner.jpg");
}
main section.mobile .subpage-banner .content .left .stores {
  display: flex;
  gap: 15px;
  align-items: center;
}
main section.managment-consulting .subpage-banner {
  background-image: url("../img/subpages/services/managment-consulting/subpage-banner.jpg");
}
main section.managment-consulting .subpage-banner .content .left {
  width: 47%;
}
main section.managment-consulting .subpage-banner .content .right {
  top: 25%;
  right: 18%;
}
@media (max-width: 1620px) {
  main section.managment-consulting .subpage-banner .content .right {
    display: none;
  }
}
main section.managment-consulting .content .boxes {
  margin-top: 110px;
}
main section.managment-consulting .content .boxes .box1 .left img {
  box-shadow: 0px 10px 10px 0px rgba(122, 122, 122, 0.2509803922);
  border: 1px solid #D2D2D2;
  border-radius: 20px;
}
main section.managment-consulting .content .boxes .box1 .right {
  width: 45%;
}
main section.managment-consulting .content .discover-boxes {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 25px;
  /*margin-top: 110px;*/
}
main section.managment-consulting .content .discover-boxes h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heroty-primary-color);
  text-align: center;
}
main section.managment-consulting .content .discover-boxes p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--heroty-subtitle-color);
}
main section.managment-consulting .content .discover-boxes .box-list {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 0.5fr);
  margin-top: 60px;
}
main section.managment-consulting .content .discover-boxes .box-list [class^=box] {
  border: 1px solid #EBEBEB;
  border-radius: 30px;
  background: #F8F8F5;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
  padding: 40px 15px;
  justify-content: center;
}
main section.managment-consulting .content .discover-boxes .box-list [class^=box] h3 {
  font-size: 28px;
  font-weight: 700;
}
main section.managment-consulting .content .discover-boxes .box-list [class^=box] p {
  text-align: unset;
}
main section.managment-consulting .content .discover-boxes .box-list .box1 {
  grid-column: 1/span 2;
}
main section.managment-consulting .content .discover-boxes .box-list .box2 {
  grid-column: 3/span 3;
}
main section.managment-consulting .content .discover-boxes .box-list .box3 {
  grid-column: 1/span 2;
  grid-row: 2;
}
main section.managment-consulting .content .discover-boxes .box-list .box4 {
  grid-column: 3;
  grid-row: 2;
  position: relative;
  z-index: -1;
  overflow: hidden;
  background-color: #380B0B;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
main section.managment-consulting .content .discover-boxes .box-list .box4 .blob1, main section.managment-consulting .content .discover-boxes .box-list .box4 .blob2, main section.managment-consulting .content .discover-boxes .box-list .box4 .blob3 {
  position: absolute;
  z-index: 0;
  filter: blur(36px);
}
main section.managment-consulting .content .discover-boxes .box-list .box4 .blob1 {
  bottom: 50%;
  right: 24%;
  animation: move1 5s infinite alternate ease-in-out;
  animation-delay: 0s;
}
main section.managment-consulting .content .discover-boxes .box-list .box4 .blob2 {
  right: -90px;
  top: -20%;
  animation-delay: 1.5s;
  animation: move2 6s infinite alternate ease-in-out;
}
main section.managment-consulting .content .discover-boxes .box-list .box4 .blob3 {
  left: 3%;
  bottom: -9px;
  animation-delay: 3s;
  animation: move3 9s infinite alternate ease-in-out;
}
@keyframes move1 {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(50%);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes move2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes move3 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-75%, -50%);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
main section.managment-consulting .content .discover-boxes .box-list .box4 h3 {
  font-size: 38px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--heroty-secondary-color);
  z-index: 1;
}
main section.managment-consulting .content .discover-boxes .box-list .box4 h3 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  letter-spacing: 16px;
  margin-left: 12px;
}
main section.managment-consulting .content .discover-boxes .box-list .box5 {
  grid-column: 4/span 2;
  grid-row: 2;
}
main section.managment-consulting .content .discover-boxes .box-list .box6 {
  grid-column: 1/span 2;
  grid-row: 3;
}
main section.managment-consulting .content .discover-boxes .box-list .box7 {
  grid-column: 3/span 3;
  grid-row: 3;
}
main section.managed-services .subpage-banner {
  background-image: url("../img/subpages/services/managed-services/subpage-banner.jpg");
}
main section.managed-services .content .boxes .box2 .left ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  row-gap: 20px;
  column-gap: 40px;
}
main section.managed-services .content .boxes .box4 .left ul {
  list-style-image: none !important;
  padding: 0;
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
main section.managed-services .content .boxes .box4 .left ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
main section.managed-services .content .boxes .box4 .right {
  max-width: 485px;
}
main section.outsourced-payroll .subpage-banner {
  background-image: url("../img/subpages/services/outsourced-payroll/subpage-banner.jpg");
}
main section.outsourced-payroll .content .boxes .box1 .left {
  max-width: 670px;
}
main section.outsourced-payroll .content .boxes .box2 .right {
  max-width: 595px;
}
main section.outsourced-payroll .content .boxes .box2 .left ul {
  list-style-image: none !important;
  padding: 0;
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
main section.outsourced-payroll .content .boxes .box2 .left ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
main section.hr-software-training .subpage-banner {
  background-image: url("../img/subpages/services/hr-software-training/subpage-banner.jpg");
}
main section.hr-software-training .subpage-banner .content .left h1 {
  font-size: 48px;
}
main section.why-heroty .subpage-banner {
  background-image: url("../img/subpages/why-heroty/subpage-banner.jpg");
}
main section.why-heroty .content section.discover {
  margin-top: 110px;
}
main section.company .subpage-banner {
  background-image: linear-gradient(to right, #ffffff 35%, rgba(255, 255, 255, 0.6) 55%, transparent 75%), url("../img/subpages/company/subpage-banner.png");
  background-position: center right;
  background-size: cover;
}
main section.company .subpage-banner .content .left {
  width: 52%;
}
main section.company .content {
  margin-top: 60px;
}
main section.company .content section.discover {
  margin-top: 110px;
}
main section.company .content .company-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
}
main section.company .content .company-values .value-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main section.company .content .company-values .value-item strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--heroty-primary-color);
}
main section.company .content .company-values .value-item p {
  font-size: 14px;
  margin: 0;
}
main section.company .content .company-milestones {
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
main section.company .content .company-milestones h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.25px;
  color: var(--heroty-subpage-subtitle-color);
}
main section.company .content .company-milestones > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--heroty-subtitle-color);
  max-width: 600px;
}
main section.company .content .company-milestones .milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
main section.company .content .company-milestones .milestones-grid .milestone {
  border: 1px solid #EBEBEB;
  background: #F8F8F5;
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main section.company .content .company-milestones .milestones-grid .milestone .year {
  font-size: 28px;
  font-weight: 700;
  color: var(--heroty-primary-color);
}
main section.company .content .company-milestones .milestones-grid .milestone p {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--heroty-subtitle-color);
  margin: 0;
}
@media (max-width: 1065px) {
  main section.company .content .company-values {
    grid-template-columns: 1fr;
  }
  main section.company .content .company-milestones .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  main section.company .content .company-milestones .milestones-grid {
    grid-template-columns: 1fr;
  }
}
main section.pricing {
  padding-top: 225px;
}
main section.pricing .content {
  display: flex;
  flex-direction: column;
  gap: 220px;
}
main section.pricing .content .custom-pricing {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
main section.pricing .content .custom-pricing form, main section.pricing .content .custom-pricing .right {
  width: 47%;
}
main section.pricing .content .custom-pricing form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
main section.pricing .content .custom-pricing form h1 {
  background: linear-gradient(277.78deg, #2E0404 0.22%, #ED1818 45.07%, #2E0404 82.54%, #2E0404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  margin: 25px 0;
}
main section.pricing .content .custom-pricing form p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 60px;
}
main section.pricing .content .custom-pricing form input {
  border: 1px solid #EBEBEB;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #F8F8F5;
  padding: 10px;
}
main section.pricing .content .custom-pricing form input::placeholder {
  color: #C2C2C2;
}
main section.pricing .content .custom-pricing form .error-message {
  visibility: hidden;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  height: 0;
  color: var(--heroty-primary-color);
  margin: 0;
  transition: all 0.4s;
}
main section.pricing .content .custom-pricing form .active {
  visibility: visible;
  opacity: 1;
  height: max-content;
}
main section.pricing .content .custom-pricing form .required-input {
  border: 1px solid var(--heroty-primary-color);
}
main section.pricing .content .custom-pricing form a {
  margin-top: 40px;
  padding: 10px 25px;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  border-radius: 20px;
}
main section.pricing .content .custom-pricing .right {
  padding: 30px;
  background: #F8F8F5;
  border-radius: 20px;
}
main section.pricing .content .custom-pricing .right img {
  padding: 90px;
}
main section.pricing .content .custom-pricing .right p {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
main section.pricing .content .updates {
  width: 100%;
  position: relative;
}
main section.pricing .content .updates .inside {
  display: flex;
  width: 100%;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 70px;
  position: relative;
  border-radius: 20px;
}
main section.pricing .content .updates .inside:after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background: linear-gradient(84.34deg, #E21818 1.12%, #7C0D0D 96.96%);
  z-index: -1;
  border-radius: 25px;
}
main section.pricing .content .updates .inside h2 {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
}
main section.pricing .content .updates .inside p {
  font-size: 16px;
  font-weight: 500;
  color: var(--heroty-subtitle-color);
  text-align: center;
}
main section.pricing .content .updates .inside a {
  padding: 10px;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  font-size: 18px;
  font-weight: 700;
  border-radius: 20px;
}
main section.pricing .content .updates:before, main section.pricing .content .updates:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: var(--heroty-secondary-color);
  z-index: -2;
}
main section.pricing .content .updates:before {
  left: -95px;
  top: -85px;
  width: 270px;
  height: 270px;
}
main section.pricing .content .updates:after {
  bottom: -35px;
  right: -55px;
  width: 110px;
  height: 110px;
}
@media (max-width: 1460px) {
  main section.pricing .content .updates:before {
    left: 0;
  }
  main section.pricing .content .updates:after {
    right: 0;
  }
}
main section.request-demo {
  padding-top: 225px;
}
main section.request-demo .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
main section.request-demo .content .left, main section.request-demo .content .right {
  width: 48%;
}
main section.request-demo .content .left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
main section.request-demo .content .left span {
  font-size: 32px;
  font-weight: 600;
  color: var(--heroty-primary-color);
}
main section.request-demo .content .left h1 {
  font-size: 64px;
  font-weight: 600;
  max-width: 80%;
}
main section.request-demo .content .left p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
main section.request-demo .content .left ul {
  padding-left: 25px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  list-style-image: url("../img/icons/circle-check.svg") !important;
}
main section.request-demo .content .right {
  padding: 40px 55px;
  display: flex;
  gap: 25px;
  flex-direction: column;
  background: #F8F8F5;
  border-radius: 20px;
}
main section.request-demo .content .right .inside {
  padding: 30px;
  background: #FFFFFF;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 30px;
}
main section.request-demo .content .right .inside h2 {
  max-width: 75%;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
}
main section.request-demo .content .right .inside input {
  background: #F8F8F5;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 10px;
}
main section.request-demo .content .right .inside input::placeholder {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #C2C2C2;
}
main section.request-demo .content .right .inside textarea {
  border: 1px solid #EBEBEB;
  resize: none;
  padding: 10px;
  background: #F8F8F5;
  border-radius: 10px;
  width: 100%;
  height: 155px;
  font-family: Inter;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
}
main section.request-demo .content .right .inside textarea::placeholder {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #C2C2C2;
}
main section.request-demo .content .right .inside .fname, main section.request-demo .content .right .inside .lname, main section.request-demo .content .right .inside .email, main section.request-demo .content .right .inside .tel {
  height: 50px;
}
main section.request-demo .content .right .inside .fname, main section.request-demo .content .right .inside .lname {
  flex: 1;
}
main section.request-demo .content .right .inside .email, main section.request-demo .content .right .inside .tel {
  flex: 100%;
}
main section.request-demo .content .right .submit {
  height: 50px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  padding: 15px;
  color: var(--heroty-primary-color);
  background-color: var(--heroty-secondary-color);
  border-radius: 10px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
  border: 1px solid var(--heroty-primary-color);
}
main section.newsletter {
  padding-top: 225px;
}
main section.newsletter .content .newsletter-box {
  width: 100%;
  padding: 70px 35px;
  background: #F8F8F5;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
}
main section.newsletter .content .newsletter-box .left, main section.newsletter .content .newsletter-box form {
  width: 49%;
}
main section.newsletter .content .newsletter-box .left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main section.newsletter .content .newsletter-box .left h1 {
  margin-bottom: 35px;
  font-size: 64px;
  font-weight: 600;
}
main section.newsletter .content .newsletter-box .left ul {
  padding-left: 25px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  list-style-image: url("../img/icons/circle-check.svg") !important;
}
main section.newsletter .content .newsletter-box .left p, main section.newsletter .content .newsletter-box .left ul li {
  font-weight: 500;
}
main section.newsletter .content .newsletter-box form {
  padding: 35px;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
main section.newsletter .content .newsletter-box form h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}
main section.newsletter .content .newsletter-box form input {
  border: 1px solid #EBEBEB;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #F8F8F5;
  padding: 10px;
}
main section.newsletter .content .newsletter-box form input::placeholder {
  color: #C2C2C2;
}
main section.newsletter .content .newsletter-box form a {
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  border-radius: 20px;
}
main section.cookie-policy {
  padding-top: 130px;
  padding-bottom: 50px;
}
main section.cookie-policy .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main section.cookie-policy .content h1 {
  color: var(--heroty-primary-color);
  margin-bottom: 15px;
  font-size: 64px;
}
main section.cookie-policy .content h2 {
  margin-top: 20px;
  font-size: 32px;
}
main section.cookie-policy .content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--heroty-subtitle-color);
}
main section.cookie-policy .content ul {
  list-style-type: disc !important;
  padding-left: 20px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--heroty-subtitle-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-image: none !important;
}
main section.cookie-policy .content ul li {
  margin-bottom: 5px;
}
main section.cookie-policy .content .summary {
  margin-top: 20px;
}
main section.cookie-policy .content .summary a {
  color: var(--heroty-primary-color);
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: underline;
}
main section.cookie-policy .content .summary a:hover {
  color: #a81111;
}
@media (max-width: 1065px) {
  main {
    /*Core HR*/
    /*Payroll*/
    /*Time Managment*/
    /*Pay & Benefit*/
    /*HR Modules*/
    /*Hiring&Onboarding*/
    /*Mobile*/
    /*Services*/
    /*Other Pages*/
  }
  main section.subpage {
    gap: 100px;
  }
  main section.subpage .subpage-banner {
    align-items: center;
    background-position: right 75px;
  }
  main section.subpage .subpage-banner:before {
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    height: 100dvh;
    /* height: calc(100dvh - 45px);*/
    background: #fff;
    opacity: 0.6;
    z-index: 1;
  }
  main section.subpage .subpage-banner .content {
    flex-direction: column;
    padding-bottom: unset;
    padding-top: 150px;
    align-items: center;
    gap: 50px;
    z-index: 2;
    backdrop-filter: blur(3px);
  }
  main section.subpage .subpage-banner .content .left {
    width: 100%;
    align-items: center;
  }
  main section.subpage .subpage-banner .content .left h1 {
    font-size: 48px;
  }
  main section.subpage .subpage-banner .content .left h1, main section.subpage .subpage-banner .content .left p {
    text-align: center;
  }
  main section.subpage .subpage-banner .content .left .buttons {
    gap: 15px;
  }
  main section.subpage .subpage-banner .content .left .buttons a {
    padding: 10px;
  }
  main section.subpage .subpage-banner .content .right {
    position: unset;
  }
  main section.subpage .content .boxes {
    gap: 75px;
  }
  main section.subpage .content .boxes [class^=box] {
    flex-direction: column;
    gap: 25px;
  }
  main section.subpage .content .boxes [class^=box] .right, main section.subpage .content .boxes [class^=box] .left {
    width: 100%;
  }
  main section.subpage .content .boxes .box1 .right {
    align-items: center;
    max-width: unset;
  }
  main section.subpage .content .boxes .box1 .right img {
    width: 100%;
  }
  main section.subpage .content .boxes .box2 {
    gap: 25px;
    flex-direction: column-reverse;
  }
  main section.subpage .content .boxes .box3 .left {
    max-width: unset;
  }
  main section.subpage .content .boxes .box4 {
    flex-direction: column-reverse;
  }
  main section.subpage .content .boxes .box4 .right {
    max-width: unset;
  }
  main section.subpage .content .boxes .box4 .right img {
    max-width: 100%;
  }
  main section.subpage .content .help-box {
    flex-direction: column;
    padding: 15px;
    gap: 25px;
  }
  main section.subpage .content .help-box .left, main section.subpage .content .help-box .right {
    width: 100%;
  }
  main section.subpage .content .help-box .right {
    gap: 25px;
  }
  main section.subpage .content .faq .faq-content {
    flex-direction: column;
    gap: 35px;
  }
  main section.subpage .content .faq .faq-content .left, main section.subpage .content .faq .faq-content .right {
    width: 100%;
  }
  main section.subpage .content .faq .faq-content .accordion .accordion-header {
    padding: 8px;
  }
  main section.employee-records {
    /*     padding-top: 220px;*/
  }
  main section.employee-records .subpage-banner .content .right {
    display: none;
  }
  main section.self-service .subpage-banner .content {
    padding-top: 0;
  }
  main section.self-service .subpage-banner .content .left {
    gap: 25px;
  }
  main section.self-service .subpage-banner .content .right {
    display: none;
  }
  main section.payroll .subpage-banner .content .left {
    gap: 25px;
  }
  main section.payroll .subpage-banner .content .right {
    display: none;
  }
  main section.absence-managment .subpage-banner .content {
    padding-top: unset;
  }
  main section.absence-managment .subpage-banner .content .left {
    gap: 25px;
  }
  main section.calendar .subpage-banner .content {
    padding-top: unset;
  }
  main section.calendar .subpage-banner .content .left {
    gap: 25px;
  }
  main section.holiday-planner .subpage-banner {
    margin-bottom: 120px;
  }
  main section.holiday-planner .subpage-banner .content {
    padding-top: 300px;
  }
  main section.holiday-planner .subpage-banner .content .left {
    gap: 25px;
  }
  main section.pay-benefit .subpage-banner .content {
    padding-top: 100px;
  }
  main section.pay-benefit .subpage-banner .content .left {
    gap: 15px;
  }
  main section.expense .subpage-banner .content {
    padding-top: unset;
  }
  main section.expense .subpage-banner .content .left {
    gap: 25px;
  }
  main section.recruiting .subpage-banner .content {
    padding-top: 0;
  }
  main section.onboarding .subpage-banner .content {
    padding-top: 0;
  }
  main section.offboarding .subpage-banner .content {
    padding-top: 0;
  }
  main section.offboarding .subpage-banner .content .left {
    gap: 25px;
  }
  main section.mobile .subpage-banner .content {
    padding-top: 0;
    gap: 25px;
  }
  main section.managment-consulting .content .boxes .box1 .left img {
    max-width: 100%;
  }
  main section.managment-consulting .content .discover-boxes .box-list {
    display: flex;
    flex-direction: column;
  }
  main section.managment-consulting .content .discover-boxes .box-list .box4 {
    min-height: 200px;
  }
  main section.managment-consulting .content .discover-boxes .box-list .box4 h3 {
    line-height: 1;
    font-size: 24px;
  }
  main section.managed-services .content .boxes .box2 .right {
    flex-direction: column;
  }
  main section.managed-services .content .boxes .box2 .right ul {
    margin: 0;
  }
  main section.managed-services .content .boxes .box4 .left ul {
    display: flex;
  }
  main section.outsourced-payroll .content .boxes .box2 .left ul {
    display: flex;
  }
  main section.pricing {
    padding-top: 130px;
  }
  main section.pricing .content .custom-pricing {
    flex-direction: column;
  }
  main section.pricing .content .custom-pricing form, main section.pricing .content .custom-pricing .right {
    width: 100%;
  }
  main section.pricing .content .custom-pricing form {
    align-items: flex-end;
  }
  main section.pricing .content .custom-pricing form h1 {
    font-size: 48px;
  }
  main section.pricing .content .custom-pricing form h1, main section.pricing .content .custom-pricing form p {
    text-align: center;
    width: 100%;
  }
  main section.pricing .content .custom-pricing .right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  main section.pricing .content .custom-pricing .right img {
    padding: 0;
  }
  main section.pricing .content .updates .inside {
    padding: 20px;
  }
  main section.pricing .content .updates .inside h2 {
    text-align: center;
  }
  main section.request-demo {
    padding-top: 130px;
  }
  main section.request-demo .content {
    flex-direction: column;
    gap: 50px;
  }
  main section.request-demo .content .left, main section.request-demo .content .right {
    width: 100%;
  }
  main section.request-demo .content .left span {
    font-size: 28px;
  }
  main section.request-demo .content .left h1 {
    font-size: 48px;
  }
  main section.request-demo .content .right {
    padding: 15px;
  }
  main section.request-demo .content .right .inside {
    padding: 15px;
  }
  main section.request-demo .content .right .inside h2 {
    max-width: 100%;
  }
  main section.newsletter {
    padding-top: 135px;
  }
  main section.newsletter .content .newsletter-box {
    flex-direction: column;
    gap: 25px;
    padding: 25px 15px;
  }
  main section.newsletter .content .newsletter-box .left, main section.newsletter .content .newsletter-box form {
    width: 100%;
  }
  main section.newsletter .content .newsletter-box .left h1 {
    font-size: 35px;
  }
  main section.newsletter .content .newsletter-box form {
    padding: 25px;
  }
  main section.cookie-policy {
    padding-top: 130px;
  }
  main section.cookie-policy .content {
    gap: 15px;
  }
  main section.cookie-policy .content h1 {
    font-size: 40px;
    text-align: center;
  }
  main section.cookie-policy .content h2 {
    font-size: 24px;
  }
}

footer {
  width: 100%;
  max-width: 1290px;
  background: #F8F8F5;
  border: 1px solid #EBEBEB;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin: 110px auto 0 auto;
}
footer div.content {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  padding: 40px 40px 25px 40px;
  gap: 40px;
  width: 100%;
}
footer div.content .columns {
  display: grid;
  gap: 35px;
  grid-template-columns: 3fr 2fr 2fr 1.5fr 2fr;
}
footer div.content .columns .logo {
  min-width: 175px;
}
footer div.content .columns .column {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
footer div.content .columns .column h3 {
  color: var(--heroty-subtitle-color);
  font-size: 28px;
  font-weight: 700;
}
footer div.content .columns .column p {
  font-size: 13px;
  font-weight: 600;
  color: #B7B7B7;
}
footer div.content .columns .column form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer div.content .columns .column form label {
  font-size: 13px;
  font-weight: 600;
  color: #B7B7B7;
}
footer div.content .columns .column form input[type=email] {
  max-width: 200px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
  padding: 0 5px;
  height: 35px;
}
footer div.content .columns .column form input[type=submit] {
  max-width: 125px;
  margin-top: 30px;
  padding: 10px 20px;
  background: #FFFFFF;
  color: var(--heroty-primary-color);
  border: 1px solid var(--heroty-primary-color);
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0px 12px 40px 0px rgba(122, 122, 122, 0.1019607843);
}
footer div.content .columns .column span {
  color: #C6C6C6;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
footer div.content .columns .column nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer div.content .columns .column nav h4 {
  font-size: 14px;
  font-weight: 500;
}
footer div.content .columns .column nav h4 a {
  font-size: 14px;
  color: var(--heroty-subtitle-color);
}
footer div.content .columns .column nav a {
  font-size: 12px;
  color: #C6C6C6;
  font-weight: 500;
}
footer div.content .copyright {
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 1065px) {
  footer div.content .columns {
    display: flex;
    flex-wrap: wrap;
  }
  footer div.content .columns .column {
    width: 20%;
  }
  footer div.content .columns .column:has(.logo) {
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer div.content .columns {
    display: flex;
    flex-direction: column;
  }
  footer div.content .columns .column {
    width: 100%;
  }
}

.cookie-popup {
  border-radius: 10px;
  width: 345px;
  position: fixed;
  z-index: 999999;
  background-color: rgba(79, 79, 79, 0.8);
  color: #fff;
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 15px;
}
.cookie-popup.accept {
  display: none;
}
.cookie-popup b {
  font-size: 14px;
  color: #fff;
}
.cookie-popup p {
  font-size: 12px;
  color: #fff;
  margin: 0px 0px 5px;
}
.cookie-popup a {
  color: skyblue;
}
.cookie-popup a:visited {
  color: skyblue;
  text-decoration: none;
}
.cookie-popup .action {
  flex: 1;
  text-align: right;
}
.cookie-popup .action button {
  display: inline-block;
  font-size: 12px;
  transition: 0.3s;
  color: #212529;
  cursor: pointer;
  font-weight: 700;
  background-color: #fff;
  float: left;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  border-radius: 0.2rem;
  margin-top: 3px;
}
.cookie-popup .action button:hover {
  background-color: #333333;
  color: #fff;
}

/*Home*/
section.banner {
  width: 100%;
  /*    height: 100vh;*/
  padding-top: 160px;
}
@media (min-width: 1065px) and (min-height: 800px) {
  section.banner {
    padding-top: 185px;
  }
}
section.banner .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background-color: #FFF;
  background-image: url("../../img/home/banner/background.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
}
section.banner .content h1 {
  background: linear-gradient(277.78deg, #2E0404 0.22%, #ED1818 45.07%, #2E0404 82.54%, #2E0404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  max-width: 850px;
  width: 100%;
}
section.banner .content p {
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
section.banner .content .store {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  margin: 30px 0;
}
section.banner .content .store img {
  max-width: 150px;
}
section.banner .content .phones {
  margin-top: 15px;
  max-width: 820px;
  width: 100%;
  position: relative;
  margin-left: 30px;
}
section.banner .content .phones:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 252, 0) 0%, #FFFFFC 100%);
  width: 100%;
  bottom: 0;
  height: 125px;
}
section.banner .content .phones img {
  width: 100%;
}
@media (max-width: 1065px) {
  section.banner {
    padding-top: 125px;
  }
  section.banner .content h1 {
    font-size: 45px;
    line-height: normal;
  }
  section.banner .content .store {
    flex-direction: column;
    align-items: center;
  }
  section.banner .content .phones {
    margin-top: 25px;
    margin-left: unset;
  }
}

section.simplify {
  width: 100%;
}
section.simplify .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
section.simplify .content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
  color: var(--heroty-primary-color);
  text-align: center;
}
section.simplify .content .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: var(--heroty-subtitle-color);
  max-width: 420px;
}
section.simplify .content .boxes {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(3, 0.5fr);
  margin-top: 25px;
  width: 100%;
}
section.simplify .content .boxes .box1, section.simplify .content .boxes .box2, section.simplify .content .boxes .box3, section.simplify .content .boxes .box4, section.simplify .content .boxes .box5 {
  border: 1px solid #EBEBEB;
  background: #F8F8F5;
  border-radius: 30px;
}
section.simplify .content .boxes .box1 .title, section.simplify .content .boxes .box2 .title, section.simplify .content .boxes .box3 .title, section.simplify .content .boxes .box4 .title, section.simplify .content .boxes .box5 .title {
  padding-top: 25px;
  padding-left: 25px;
  display: flex;
  align-items: end;
  gap: 10px;
}
section.simplify .content .boxes .box1 .title h3, section.simplify .content .boxes .box2 .title h3, section.simplify .content .boxes .box3 .title h3, section.simplify .content .boxes .box4 .title h3, section.simplify .content .boxes .box5 .title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
}
section.simplify .content .boxes .box1 .title a, section.simplify .content .boxes .box2 .title a, section.simplify .content .boxes .box3 .title a, section.simplify .content .boxes .box4 .title a, section.simplify .content .boxes .box5 .title a {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #C2C2C2;
}
section.simplify .content .boxes .box1 {
  grid-column: 1/span 5;
  grid-row: 1;
  overflow: hidden;
}
section.simplify .content .boxes .box1 .marquee {
  padding: 35px 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 24px;
}
section.simplify .content .boxes .box1 .marquee:before, section.simplify .content .boxes .box1 .marquee:after {
  position: absolute;
  content: "";
  left: 0;
  height: calc(100% - 70px);
  bottom: 35px;
  width: 20%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(248, 248, 245, 0) 0%, rgba(238, 238, 238, 0.95) 100%);
}
section.simplify .content .boxes .box1 .marquee:after {
  left: unset;
  right: 0;
  background: linear-gradient(90deg, rgba(248, 248, 245, 0) 0%, rgba(238, 238, 238, 0.95) 100%);
}
section.simplify .content .boxes .box1 .marquee .marquee-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 24px;
}
section.simplify .content .boxes .box1 .marquee .marquee-1, section.simplify .content .boxes .box1 .marquee .marquee-2 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  animation: marquee 15s linear infinite;
}
section.simplify .content .boxes .box1 .marquee .marquee-1 .marquee-item, section.simplify .content .boxes .box1 .marquee .marquee-2 .marquee-item {
  padding: 15px 20px;
  border: 1px solid #D2D2D2;
  /*box-shadow: 0px 10px 20px 0px rgba(122, 122, 122, 0.25);
  backdrop-filter: blur(12px);*/
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  width: max-content;
}
section.simplify .content .boxes .box1 .marquee .marquee-1 .marquee-item p, section.simplify .content .boxes .box1 .marquee .marquee-2 .marquee-item p {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  text-align: center;
}
section.simplify .content .boxes .box1 .marquee .marquee-1 .marquee-item p span, section.simplify .content .boxes .box1 .marquee .marquee-2 .marquee-item p span {
  font-weight: 600;
  color: var(--heroty-primary-color);
}
section.simplify .content .boxes .box1 .marquee .marquee-1 .marquee-item img, section.simplify .content .boxes .box1 .marquee .marquee-2 .marquee-item img {
  height: 28px;
  width: 28px;
  object-fit: cover;
}
section.simplify .content .boxes .box1 .marquee .marquee-2 {
  animation-direction: reverse;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 24px));
  }
}
section.simplify .content .boxes .box2 {
  grid-column: 6/span 3;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.simplify .content .boxes .box2 p {
  max-width: 400px;
  text-align: center;
  color: #BBBBBB;
  margin: 15px auto;
}
section.simplify .content .boxes .box3 {
  grid-column: 1/span 3;
  grid-row: 2/span 2;
  display: flex;
  flex-direction: column;
}
section.simplify .content .boxes .box3 ul {
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  background: transparent;
  gap: 10px;
}
section.simplify .content .boxes .box3 ul li {
  display: flex;
  padding: 20px;
  align-items: center;
  transition: all 0.4s;
  border-radius: 25px;
  border: 1px solid #f8f8f5;
  gap: 28px;
  justify-content: center;
}
section.simplify .content .boxes .box3 ul li:hover {
  border: 1px solid #D2D2D2;
  background: #FFFFFF;
}
section.simplify .content .boxes .box3 ul li .item-img {
  width: 95px;
  text-align: center;
  display: flex;
  justify-content: center;
}
section.simplify .content .boxes .box3 ul li .item-img img {
  object-fit: contain;
}
section.simplify .content .boxes .box3 ul li .item-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 210px;
}
section.simplify .content .boxes .box3 ul li .item-details .item-title {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  justify-content: space-between;
}
section.simplify .content .boxes .box3 ul li .item-details .item-title h4 {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  line-height: 13px;
  gap: 10px;
}
section.simplify .content .boxes .box3 ul li .item-details .item-title h4 span {
  font-size: 12px;
  color: #B7B7B7;
}
section.simplify .content .boxes .box3 ul li .item-details .item-title .status {
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 500;
  line-height: 13px;
  color: #32C039;
  background: #EFFFF0;
  border-radius: 15px;
}
section.simplify .content .boxes .box3 ul li .item-details .item-info {
  display: flex;
  gap: 20px;
}
section.simplify .content .boxes .box3 ul li .item-details .item-info h4 {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 13px;
  gap: 10px;
  flex-direction: column;
}
section.simplify .content .boxes .box3 ul li .item-details .item-info h4 span {
  font-size: 12px;
  color: #B7B7B7;
}
@media (max-width: 1290px) {
  section.simplify .content .boxes .box3 ul {
    padding: 25px;
  }
}
section.simplify .content .boxes .box4 {
  grid-column: 4/span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.simplify .content .boxes .box4 div {
  color: var(--heroty-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 17px;
  text-align: center;
}
section.simplify .content .boxes .box4 div span {
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: 0.06em;
  text-align: center;
}
section.simplify .content .boxes .box5 {
  grid-column: 4/span 5;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
section.simplify .content .boxes .box5 .title {
  padding: 0;
  flex: 1 0 auto;
}
section.simplify .content .boxes .box5 .hiring-info {
  padding: 25px;
  box-shadow: 0px 10px 40px 0px rgba(122, 122, 122, 0.2509803922);
  border-radius: 26px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 340px;
  width: 100%;
}
section.simplify .content .boxes .box5 .hiring-info .department-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.simplify .content .boxes .box5 .hiring-info .department-info .department-name {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
section.simplify .content .boxes .box5 .hiring-info .department-info .department-name .wage {
  color: #B7B7B7;
  font-size: 12px;
}
section.simplify .content .boxes .box5 .hiring-info .department-info .status {
  padding: 7px 15px;
  font-size: 9px;
  font-weight: 500;
  line-height: 13px;
  color: #32C039;
  background: #EFFFF0;
  border-radius: 50px;
}
section.simplify .content .boxes .box5 .hiring-info .candicate {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.simplify .content .boxes .box5 .hiring-info .candicate .candicate-status {
  font-size: 14px;
  font-weight: 500;
  line-height: 13px;
  text-align: left;
}
section.simplify .content .boxes .box5 .hiring-info .candicate .requirements {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.simplify .content .boxes .box5 .hiring-info .candicate .requirements span {
  font-size: 9px;
  font-weight: 500;
  line-height: 13px;
  text-align: left;
  padding: 6px 15px;
  border-radius: 50px;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
}
section.simplify .content .boxes .box5 ul {
  flex-basis: 100%;
  display: flex;
  padding: 0;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
section.simplify .content .boxes .box5 ul:after {
  content: "";
  position: absolute;
  right: -3px;
  top: -2px;
  height: calc(100% + 3px);
  width: 50%;
  background: linear-gradient(90deg, rgba(248, 248, 245, 0) 0%, #F8F8F5 100%);
}
@media (max-width: 1140px) {
  section.simplify .content .boxes .box5 ul:after {
    height: 95px;
  }
}
section.simplify .content .boxes .box5 ul li {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 140px;
  background-color: #fff;
  border-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid #D2D2D2;
  position: relative;
}
section.simplify .content .boxes .box5 ul li:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -8px;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-left: transparent;
  border-bottom: transparent;
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
  z-index: 2;
  border-radius: 3px;
}
section.simplify .content .boxes .box5 ul li:first-child {
  padding-left: 10px;
}
section.simplify .content .boxes .box5 ul li:last-child {
  border-right: unset;
}
section.simplify .content .boxes .box5 ul li:last-child:after {
  display: none;
}
section.simplify .content .boxes .box5 ul li span {
  font-size: 21px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: -0.5px;
  margin-left: 4px;
  color: var(--heroty-primary-color);
}
section.simplify .content .boxes .box5 ul li p {
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  text-align: left;
}
@media (max-width: 1065px) {
  section.simplify .content .boxes {
    display: flex;
    flex-direction: column;
  }
  section.simplify .content .boxes .box2 {
    min-height: 300px;
    gap: 25px;
  }
  section.simplify .content .boxes .box1 .title, section.simplify .content .boxes .box2 .title, section.simplify .content .boxes .box3 .title {
    justify-content: center;
  }
  section.simplify .content .boxes .box4 {
    padding: 25px 0;
  }
  section.simplify .content .boxes .box4 div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  section.simplify .content .boxes .box5 ul {
    overflow-x: auto;
    overflow-y: hidden;
  }
  section.simplify .content .boxes .box5 ul:after {
    display: none;
  }
  section.simplify .content .boxes .box5 ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  section.simplify .content .boxes .box5 ul::-webkit-scrollbar-thumb {
    background-color: var(--heroty-primary-color);
  }
}
@media (max-width: 640px) {
  section.simplify .content .boxes .box5 {
    justify-content: center;
  }
  section.simplify .content .boxes .box5 .title {
    justify-content: center;
  }
  section.simplify .content .boxes .box5 .hiring-info {
    max-width: unset;
  }
}
@media (max-width: 450px) {
  section.simplify .content .boxes .box3 ul li {
    flex-direction: column;
  }
  section.simplify .content .boxes .box5 .hiring-info .candicate {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

section.discover {
  width: 100%;
}
section.discover .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.discover .content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
  color: var(--heroty-primary-color);
  text-align: center;
}
section.discover .content .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: var(--heroty-subtitle-color);
  width: 100%;
}
section.discover .content .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  transition: all 0.4s;
  min-height: 520px;
}
section.discover .content .columns .column-menu {
  grid-column: 1;
  padding: 40px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  background-color: var(--heroty-secondary-color);
  width: 100%;
}
section.discover .content .columns .column-menu ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.discover .content .columns .column-menu ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
}
section.discover .content .columns .column-menu ul li img {
  filter: brightness(0);
}
section.discover .content .columns .column-menu ul .active {
  color: var(--heroty-primary-color);
}
section.discover .content .columns .column-menu ul .active img {
  filter: unset;
}
section.discover .content .columns .column-content {
  grid-column: 2/span 3;
  background-color: #f8f8f5;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
section.discover .content .columns .column-content .column-banner {
  padding: 70px 0px 70px 70px;
}
section.discover .content .columns .column-content .content-item {
  justify-content: space-between;
  width: 100%;
}
section.discover .content .columns .column-content .content-item .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 48%;
}
section.discover .content .columns .column-content .content-item .left h3 {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
}
section.discover .content .columns .column-content .content-item .left ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.discover .content .columns .column-content .content-item .left ul li {
  border-radius: 12px;
  padding: 10px 15px;
  gap: 15px;
  transition: all 0.4s;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  display: flex;
  align-items: center;
}
section.discover .content .columns .column-content .content-item .left ul .active {
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  padding: 10px 15px;
}
section.discover .content .columns .column-content .content-item .right {
  width: 48%;
  overflow: hidden;
  padding: 40px 15px;
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  gap: 25px;
}
section.discover .content .columns .column-content .content-item .right img {
  border-radius: 10px;
  max-width: 400px;
}
section.discover .content .columns .column-content .content-item a.more {
  padding: 10px 15px;
  transition: all 0.4s;
  border-radius: 12px;
  background-color: var(--heroty-secondary-color);
  color: var(--heroty-primary-color);
  width: fit-content;
}
section.discover .content .columns .column-content .content-item .active-content {
  display: flex;
}
section.discover .content .columns .column-content #payroll .right, section.discover .content .columns .column-content #people-analytics .right {
  display: flex;
  flex-direction: column;
}
section.discover .content .columns .column-content .content-item {
  display: none;
}
section.discover .content .columns .column-content .content-item.active {
  display: flex;
}
@media (max-width: 1065px) {
  section.discover .content .columns {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.discover .content .columns .column-menu {
    border-bottom-left-radius: unset;
    border-top-right-radius: 32px;
    padding: 25px;
    width: 100%;
  }
  section.discover .content .columns .column-menu ul {
    width: 100%;
    flex-direction: row;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 15px;
  }
  section.discover .content .columns .column-menu ul li {
    align-items: center;
    min-width: max-content;
    gap: 10px;
    transition: all 0.4s;
  }
  section.discover .content .columns .column-menu ul li img {
    display: none;
  }
  section.discover .content .columns .column-menu ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  section.discover .content .columns .column-menu ul::-webkit-scrollbar-track {
    border: 5px solid #272727;
  }
  section.discover .content .columns .column-menu ul::-webkit-scrollbar-thumb {
    background-color: var(--heroty-primary-color);
  }
  section.discover .content .columns .column-content {
    width: 100%;
  }
  section.discover .content .columns .column-content .content-item {
    width: 100%;
    flex-direction: column;
  }
  section.discover .content .columns .column-content .content-item .right {
    width: 100%;
  }
  section.discover .content .columns .column-content .content-item .right img {
    position: unset;
    max-width: 100%;
  }
  section.discover .content .columns .column-content .content-item .left {
    width: 100%;
  }
}

section.features {
  width: 100%;
}
section.features .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
section.features .content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
  color: var(--heroty-primary-color);
  text-align: center;
}
section.features .content .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: var(--heroty-subtitle-color);
  max-width: 450px;
}
section.features .content .boxes {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(9, 1fr);
  min-height: 980px;
  margin-top: 25px;
  width: 100%;
}
section.features .content .boxes .box1, section.features .content .boxes .box2, section.features .content .boxes .box3, section.features .content .boxes .box4, section.features .content .boxes .box5 {
  border: 1px solid #EBEBEB;
  background: #F8F8F5;
  border-radius: 30px;
}
section.features .content .boxes .box1 .title, section.features .content .boxes .box2 .title, section.features .content .boxes .box3 .title, section.features .content .boxes .box4 .title, section.features .content .boxes .box5 .title {
  padding-top: 25px;
  padding-left: 25px;
  display: flex;
  align-items: end;
  gap: 10px;
}
section.features .content .boxes .box1 .title h3, section.features .content .boxes .box2 .title h3, section.features .content .boxes .box3 .title h3, section.features .content .boxes .box4 .title h3, section.features .content .boxes .box5 .title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
}
section.features .content .boxes .box1 .title a, section.features .content .boxes .box2 .title a, section.features .content .boxes .box3 .title a, section.features .content .boxes .box4 .title a, section.features .content .boxes .box5 .title a {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #C2C2C2;
}
section.features .content .boxes .box1 {
  grid-column: 1/span 5;
  grid-row: 1/span 3;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 25px;
  position: relative;
}
section.features .content .boxes .box1 .company {
  position: absolute;
  bottom: 0;
  max-width: 400px;
}
@media (max-width: 1165px) {
  section.features .content .boxes .box1 .company {
    left: 10px;
  }
}
section.features .content .boxes .box1 .title {
  flex: 1 0 auto;
  padding: 0;
}
section.features .content .boxes .box1 .employee {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: all 0.4s;
  box-shadow: 0px 10px 40px 0px rgba(122, 122, 122, 0.2509803922);
}
section.features .content .boxes .box1 .employee .profile {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #D2D2D2;
  border-radius: 12px;
}
section.features .content .boxes .box1 .employee h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all 0.4s;
}
section.features .content .boxes .box1 .employee h4 span {
  font-size: 13px;
  font-weight: 500;
  color: #B6B6B6;
}
section.features .content .boxes .box1 .employee .social-boxes {
  display: flex;
  gap: 45px;
}
section.features .content .boxes .box1 .employee .social-boxes .social-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  transition: all 0.4s;
}
section.features .content .boxes .box1 .employee .social-boxes .social-box .icon {
  padding: 12px;
  background-color: var(--heroty-secondary-color);
  border-radius: 50%;
}
section.features .content .boxes .box1 .employee:hover {
  background: linear-gradient(360deg, #ED1818 0%, #510707 100%);
}
section.features .content .boxes .box1 .employee:hover h4 {
  color: #fff;
}
section.features .content .boxes .box1 .employee:hover h4 span {
  color: #FFBCBC;
}
section.features .content .boxes .box1 .employee:hover .social-boxes .social-box {
  color: #fff;
}
section.features .content .boxes .box1 .employee:hover .social-boxes .social-box .icon {
  padding: 12px;
  background: #620909;
}
section.features .content .boxes .box1 .employee:hover .social-boxes .social-box .icon img {
  filter: brightness(100);
}
section.features .content .boxes .box2 {
  grid-column: 6/span 3;
  grid-row: 1/span 6;
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 20px;
}
section.features .content .boxes .box2 .title {
  padding: 0;
}
section.features .content .boxes .box2 .time-off {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}
section.features .content .boxes .box3 {
  grid-column: 1/span 3;
  grid-row: 4/span 6;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 25px;
}
section.features .content .boxes .box3 .title {
  padding: 0;
}
section.features .content .boxes .box3 .calendar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 20px;
}
section.features .content .boxes .box3 .calendar img:last-child {
  border-radius: 27px;
  box-shadow: 0px 10px 40px 0px rgba(122, 122, 122, 0.2509803922);
}
section.features .content .boxes .box4 {
  grid-column: 4/span 2;
  grid-row: 4/span 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.features .content .boxes .box4 div {
  color: var(--heroty-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 17px;
  text-align: center;
}
section.features .content .boxes .box4 div span {
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: 0.06em;
  text-align: center;
}
section.features .content .boxes .box5 {
  grid-column: 4/span 5;
  grid-row: 7/span 3;
  display: flex;
  justify-content: space-between;
}
section.features .content .boxes .box5 .left {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.features .content .boxes .box5 .left .title {
  padding: 0;
}
section.features .content .boxes .box5 .right {
  padding: 20px 30px;
}
@media (max-width: 1065px) {
  section.features .content .boxes {
    display: flex;
    flex-direction: column;
  }
  section.features .content .boxes .box1 {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    overflow: hidden;
    padding: 20px;
  }
  section.features .content .boxes .box1 .title {
    justify-content: center;
    width: 100%;
  }
  section.features .content .boxes .box1 .company {
    position: unset;
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
  }
  section.features .content .boxes .box1 .employee {
    max-width: 100%;
    width: 100%;
    align-self: stretch;
    padding: 16px 16px;
    box-sizing: border-box;
  }
  section.features .content .boxes .box1 .employee h4 {
    font-size: 18px;
  }
  section.features .content .boxes .box1 .employee .social-boxes {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  section.features .content .boxes .box1 .employee .social-boxes .social-box {
    min-width: 60px;
  }
  section.features .content .boxes .box1 .employee .social-boxes .social-box .icon {
    padding: 10px;
  }
  section.features .content .boxes .box2 .title {
    justify-content: center;
  }
  section.features .content .boxes .box3 .title {
    justify-content: center;
  }
  section.features .content .boxes .box3 .calendar {
    align-items: center;
  }
  section.features .content .boxes .box4 {
    padding: 25px 0;
  }
  section.features .content .boxes .box4 div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  section.features .content .boxes .box5 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  section.features .content .boxes .box5 .left, section.features .content .boxes .box5 .right {
    width: 100%;
  }
  section.features .content .boxes .box5 .title {
    flex-direction: column;
    align-items: center;
  }
  section.features .content .boxes .box5 .right {
    justify-content: center;
    display: flex;
    padding: 10px 40px;
    margin-bottom: 24px;
  }
  section.features .content .boxes .box5 .right img {
    width: 100%;
  }
}

section.contact {
  width: 100%;
}
section.contact .content {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  gap: 10px;
  background-color: #380B0B;
  align-items: center;
  overflow: hidden;
}
section.contact .content img {
  position: absolute;
  z-index: 0;
}
section.contact .content .blob1 {
  bottom: 50%;
  right: 24%;
  animation: move1 5s infinite alternate ease-in-out;
  animation-delay: 0s;
}
section.contact .content .blob2 {
  right: 9%;
  top: -21%;
  animation-delay: 1.5s;
  animation: move2 6s infinite alternate ease-in-out;
}
section.contact .content .blob3 {
  left: 55%;
  bottom: -70%;
  animation-delay: 3s;
  animation: move3 9s infinite alternate ease-in-out;
}
@keyframes move1 {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(50%);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes move2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes move3 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-75%, -50%);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
section.contact .content h2, section.contact .content a, section.contact .content p {
  z-index: 1;
}
section.contact .content h2 {
  display: flex;
  flex-direction: column;
  font-size: 43px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  gap: 10px;
}
section.contact .content h2 span {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}
section.contact .content a {
  padding: 15px 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1490196078);
  color: #fff;
  margin-top: 15px;
}
section.contact .content p {
  margin-top: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
  color: #DFB9B9;
}
@media (max-width: 1065px) {
  section.contact {
    padding: 0 10px;
  }
  section.contact .content h2 {
    font-size: 35px;
  }
  section.contact .content p {
    text-align: center;
  }
}
