/* Variables */
:root {
  --primary-color: #054886;
  --secondary-color: #3f5f79;
  --bg-color: #023e73;
  --black-color: #000000;
  --white-color: #fff;
  --grey-color: #c3c3c3;
  --yellow-color: #ffff00;
  --dark-grey-color: #34495e;
  --grey-text: #616161;
  --text-color: #242424;
  --grey-bg-color: #f5f5f5;
  --text-large: 22px;
  --text-medium: 18px;
  --text-normal: 16px;
  --line-height-text: 32px;
}

/* Global and Common CSS */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Work Sans", sans-serif !important;
}

body.has-scroll {
  position: fixed !important;
}

ul {
  list-style: none;
}

h1 {
  font-weight: bold;
  font-size: 64px;
}

.h2-heading {
  font-size: 40px;
  line-height: 44px;
  font-weight: bold;
}

.text-style {
  font-size: var(--text-medium);
  line-height: var(--line-height-text);
  color: var(--text-color);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

.container {
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
}

.pd-top-60 {
  padding-top: 60px;
}
.pd-bottom-60 {
  padding-bottom: 60px;
}
.pd-40 {
  padding: 40px 0;
}
.pd-60 {
  padding: 60px 0;
}
.pd-80 {
  padding: 80px 0;
}
.mb-60 {
  margin-bottom: 60px;
}

.grey-background {
  background-color: var(--grey-bg-color);
}

/* Layout */

/* Hero Layout */
.hero-section {
  background: linear-gradient(to right, #fff 60%, var(--grey-bg-color) 40%);
  margin-top: -20px;
}

.hero-section .hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-section .hero .hero-content {
  width: 80%;
}

.hero-section .hero .hero-image {
  width: 62%;
  text-align: right;
}

.hero-section .hero .hero-content .hero-heading {
  margin-bottom: 24px;
}

.hero-section .hero .hero-content .hero-desc {
  color: var(--black-color);
  margin-bottom: 48px;
  max-width: 90%;
}

.hero-section .hero .hero-content .hero-btn.btn.btn-primary,
.hero-btn.btn.btn-primary {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  border-radius: 8px;
  padding: 16px 42px;
}
/* End Hero Layout */

/* Header box layout */
.header-box {
  margin-bottom: 72px;
}

.header-box .h2-heading {
  text-align: center;
  margin-bottom: 24px;
}

.header-box .header-box-desc {
  font-size: var(--text-medium);
  text-align: center;
  line-height: 35px;
  max-width: 85%;
  margin: 0 auto;
  font-weight: bold;
}

/* 50/50 layout */
.two-column .column-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.two-column .column-item:not(:last-child) {
  margin-bottom: 82px;
}

.two-column .column-item.column-item-reverse {
  flex-direction: row-reverse;
}

.two-column .column-item .column-image {
  width: 50%;
}

.two-column .column-item .column-image img {
  object-fit: contain;
}

.two-column .column-item .column-content {
  width: 50%;
}

.two-column .column-item .column-content .column-text {
  font-size: var(--text-medium);
  line-height: var(--line-height-text);
  color: var(--text-color);
}

.two-column .column-item .column-content .column-title {
  font-size: 40px;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

/* Box layout */
.box-section .box-flex-layout {
  display: flex;
  align-items: center;
  gap: 36px;
}

.box-section .box-flex-layout.reverse {
  flex-direction: row-reverse;
}

.box-section .box-flex-layout .box-image,
.box-section .box-flex-layout .box-content {
  width: 50%;
}

.box-section .box-flex-layout .box-image {
  border-radius: 12px;
  overflow: hidden;
  height: fit-content;
}

.box-section .box-flex-layout .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-section .para-2-column {
  column-count: 2;
  column-gap: 40px;
}

/* Three columns layout */
/* 3 Column layout */
.three-column .three-column-wrapper {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 40px;
}

.three-column .three-column-title {
  margin-bottom: 24px;
}

.three-column .three-column-wrapper .item-content-image {
  padding-top: 24px;
  border-top: 10px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.three-column .three-column-wrapper .item-content-image p {
  font-size: var(--text-medium);
  line-height: var(--line-height-text);
  font-weight: bold;
}

.three-column .three-column-wrapper .item-content {
  column-count: 2;
  column-gap: 40px;
}

/*=======================================================*/
.nav-web {
	list-style:none inside;
	margin:0;
	padding:0;
	text-align:center;
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	float: right;
	z-index: 1;
	position:relative;
	top:4px;
	left:-25px;
}
.nav-web li {
	display:inline-block;
	position:relative;
	float:left;
	background-color: #F3F3F7; /* menu background color */
	border:solid 1px #DADADE;
	z-index: 1;
	padding-left: 5px;
}
.nav-web li a {
	display:block;
	padding:0;
	text-decoration:none;
	width:225px; /* this is the width of the menu items */
	line-height:35px; /* this is the hieght of the menu items */
	color:black; /* list item font color */
}
.nav-web li li a {font-size:14px;} /* smaller font size for sub menu items */
.nav-web li li a:hover {color:white;}
.nav-web li:hover {background-color:#3f5f79;color:white;} /* highlights current hovered list item and the parent list items when hovering over sub menues */
.nav-web ul {
	position:absolute;
	padding:0;
	left:0;
	display:none; /* hides sublists */
}
.nav-web li:hover ul ul {display:none;} /* hides sub-sublists */
.nav-web li:hover ul {display:block; background-color:blue;} /* shows sublist on hover */
.nav-web li li:hover ul {
	display:block; /* shows sub-sublist on hover */
	margin-left:225px; /* this should be the same width as the parent list item */
	margin-top:-35px; /* aligns top of sub menu with top of list item */
}


/*=======================================================*/

/* Nav component */
.nav-section .nav-logo img {
  object-fit: contain;
}

.nav-mobile {
  padding: 24px 0;
  background-color: var(--bg-color);
  border-bottom: solid 1px #fff;
  display: none;
  height: 113px;
  width: 100%;
  position: fixed;
  z-index: 10;
}

.nav-mobile .btn-menu {
  height: 20px;
  width: 30px;
  position: relative;
  z-index: 200;
  cursor: pointer;
  margin-left: auto;
  margin-right: 0;
}

.nav-mobile .btn-menu span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-mobile .btn-menu::after,
.nav-mobile .btn-menu::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: var(--white-color);
  position: absolute;
  transform: rotate(0deg) translateY(0);
  transition: transfrom 0.3s linear;
}

.nav-mobile .btn-menu::after {
  position: absolute;
  bottom: 0;
}

.nav-mobile .btn-menu.clicked::before {
  transform: rotate(45deg) translate(8px, 8px);
  transition: transform 0.3s linear;
}

.nav-mobile .btn-menu.clicked::after {
  transform: rotate(-45deg) translate(5px, -5px);
  transition: transform 0.3s linear;
}

.nav-mobile .btn-menu.clicked span {
  opacity: 0;
  transition: all 0.3s;
}

.nav-mobile .mobile-menu {
  visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  position: fixed;
  overflow: auto;
  top: 65px;
  left: -100%;
  transform: translateX(0);
  transition: all 0.3s linear;
  z-index: 100;
}

.nav-mobile .mobile-menu.active {
  visibility: visible;
  left: 0;
  transform: translateX(0);
  transition: all 0.3s;
}

.nav-mobile .mobile-menu .nav-list {
  padding-bottom: 120px;
}

.nav-mobile .mobile-menu .nav-list li {
  padding: 20px;
  border-bottom: solid 1px #fff;
  position: relative;
  vertical-align: middle;
}

.nav-mobile .mobile-menu .nav-list li:first-child {
  border-top: solid 1px #fff;
}

.nav-mobile .mobile-menu .nav-list li a {
  color: #fff;
}

.nav-mobile .mobile-menu .nav-list li span {
  cursor: pointer;
}

.nav-mobile .mobile-menu .nav-list li span img.clicked {
  transform: rotate(90deg);
  transition: all 0.2s linear;
}

.nav-mobile .mobile-menu .nav-list li span img {
  vertical-align: middle;
  position: absolute;
  right: 24px;
  transition: all 0.2s linear;
}

.nav-mobile .mobile-menu .nav-list .sub-menu,
.nav-mobile .mobile-menu .nav-list .sub-menu .extra-sub-menu {
  padding-top: 16px;
}

.nav-mobile .mobile-menu .nav-list .sub-menu li {
  border: none;
  padding-bottom: 10px;
}

.nav-mobile .mobile-menu .nav-list .sub-menu .extra-sub-menu li {
  padding: 14px;
}

.nav-mobile .mobile-menu .nav-list .sub-menu,
.nav-mobile .mobile-menu .nav-list .sub-menu .extra-sub-menu {
  overflow: hidden;
  max-height: 0;
  transition: all 0.55s;
}

.nav-mobile .mobile-menu .nav-list .sub-menu.active {
  max-height: 2000px;
}

.nav-mobile .mobile-menu .nav-list .sub-menu .extra-sub-menu.active {
  max-height: 2000px;
}

.nav-mobile .nav-buttons-mobile {
  text-align: right;
}

.nav-mobile .nav-buttons-mobile .btn.btn-secondary,
.nav-mobile .nav-buttons-mobile .btn.btn-primary {
  min-width: 0;
  background-color: transparent;
}

.nav-mobile .nav-buttons-mobile .btn {
  margin: 0;
  padding: 0;
  padding-top: 24px;
  margin-left: 24px;
}

.nav-section .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.nav::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--grey-color);
  width: 100%;
  height: 1px;
  bottom: -60px;
  left: 0;
  right: 0;
}

.nav-logo img {
  width: 250px;
}

.nav-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-left: auto;
}

.menu .menu-link {
  display: inline-block;
  padding-left: 20px;
  font-size: 25px;
  font-weight: bold;
}

/* Button component */
.btn {
  display: inline-block;
  text-align: center;
  background-color: var(--primary-color);
  padding: 14px 32px;
  color: var(--white-color);
  min-width: 200px;
  margin: 0 8px;
  cursor: pointer;
}

.btn img {
  vertical-align: middle;
  margin-right: 8px;
}

.btn.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-more {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 600;
}

/* CTA component */
.cta-section .cta {
  padding: 56px;
  background-color: #e1e4e7;
  border-radius: 15px;
}

.cta-section .cta .cta-heading {
  font-size: 40px;
  margin-bottom: 16px;
  color: #34495e;
  text-transform: capitalize;
}

.cta-section .cta .cta-desc {
  color: #34495e;
  margin-bottom: 32px;
}

.cta-section .cta .cta-btn {
  margin: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 10px;
  font-size: var(--text-normal);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 14px 32px;
}

.cta-section .cta .cta-group {
  display: flex;
  gap: 32px;
}

.cta-section .cta .cta-btn-white {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* Footer */
.footer-section {
  background-color: var(--bg-color);
  padding: 30px 0;
}

.footer {
  position: relative;
}

.footer p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  line-height: 24px;
  letter-spacing: 0.2px;
}

/* Homepage style */
.section-fold-1 .fold-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-fold-1 .fold-1 .fold-1-text {
  font-size: 29px;
  line-height: 54px;
  width: 53%;
  font-weight: lighter;
}

.section-fold-1 .fold-1 .fold-1-text h1 {
  font-size: 48px;
  line-height: 54px;
  font-weight: lighter;
}

.section-fold-1 .fold-1 .fold-1-img {
  width: 50%;
  text-align: right;
  max-width: 450px;
}

.section-fold-1 .fold-1 .fold-1-img img {
  width: 100%;
  height: 100%;
}

.section-fold .fold {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-fold .fold .fold-img {
  text-align: center;
  max-width: 500px;
}

.section-fold .fold .fold-text {
  width: 50%;
}

.section-fold .fold .fold-text .fold-heading {
  font-size: 38px;
  margin-bottom: 40px;
}

.section-fold .fold .fold-text .fold-desc-list {
  width: 70%;
  padding-left: 80px;
}

.section-fold .fold .fold-text .fold-desc-list .fold-desc {
  font-size: 24px;
  padding-bottom: 24px;
  position: relative;
}

.section-fold .fold .fold-text .fold-desc-list .fold-desc::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-top: 5px;
  left: -40px;
  border-radius: 100%;
  background-color: var(--white-color);
  border: 5px solid var(--primary-color);
}

.section-fold .fold .fold-text .fold-desc-list .fold-desc-line::after {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  left: -34px;
  margin-top: 5px;
  z-index: -1;
}

.section-fold.section-fold-3 .fold.fold-3 {
  flex-direction: row-reverse;
}

.section-fold.section-fold-3 .fold.fold-3 .fold-text .fold-desc-list {
  width: 90%;
}

.section-fold.section-fold-4 .fold.fold-4 .fold-text .fold-desc-list {
  width: 80%;
}

.section-fold-5 .fold-5 {
  text-align: center;
}

.section-fold-5 .fold-5 .fold-5-gif-img,
.section-fold-5 .fold-5 .fold-5-gif {

  width: 100%;
}

.section-fold-5 .fold-5 .fold-5-gif-img img,
.section-fold-5 .fold-5 .fold-5-gif img {
  width: 100%;
}

.section-fold-5 .fold-5 .btn.btn-watch {
  background-color: var(--yellow-color);
  color: var(--black-color);
  border: solid 1px var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
}

/* Popup */
.popup {
  height: 100vh;
  width: 100%;
  background-color: #c3c3c3a3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.popup-form {
  background-color: var(--white-color);
  padding: 64px;
  min-width: 800px;
  margin: 0 auto;
  font-family: "Work Sans";
  position: relative;
}

.popup .popup-form .popup-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.popup .popup-form .input-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.popup .popup-form .input-field .popup-label {
  font-size: 20px;
  margin-bottom: 8px;
}

.popup .popup-form .input-field .popup-input {
  outline: none;
  border: none;
  padding: 16px;
  border: 1px solid var(--primary-color);
  font-size: var(--text-medium);
  font-family: "Work Sans";
}

.popup .popup-form .popup-submit {
  margin: 0;
  border: none;
  font-size: 20px;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Workforce Automation */
.product-section .product-hero .product-content .product-heading {
  max-width: 50%;
}

.product-section .product-hero .product-content .product-desc {
  max-width: 80%;
}

.mobile-app-section {
  background-color: var(--grey-bg-color);
}

.mobile-app-section .mobile-app {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-app-section .mobile-app .mobile-app-content,
.mobile-app-section .mobile-app .mobile-app-image {
  width: 50%;
}

.mobile-app-section .mobile-app .mobile-app-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-app-section .mobile-app .mobile-app-content h3 {
  font-size: 40px;
  margin-bottom: 16px;
  letter-spacing: 0.2;
}

.mobile-app-section .mobile-app .mobile-app-content p {
  margin-bottom: 24px;
  max-width: 491px;
}

/* 24x7 Dynamic Shift Scheduling Page */
.schedule-section .schedule-hero .schedule-content .schedule-heading,
.schedule-section .schedule-hero .schedule-content .schedule-desc {
  max-width: 80%;
}

.schedule-about-section .schedule-about .about-desc {
  column-count: 2;
  column-gap: 24px;
  text-align: left;
  max-width: 95%;
}

.schedule-about-section .schedule-about .about-image {
  text-align: center;
}

.schedule-about-section .schedule-about .about-header {
  margin-bottom: 0;
}

.schedule-benefits-section
  .schedule-benefits
  .two-column
  .column-item
  .column-content
  .column-title {
  font-size: 24px;
  font-weight: semibold;
}

.schedule-interface-section .schedule-interface {
  display: flex;
}

.schedule-interface-section .schedule-interface .schedule-interface-content {
  width: 45%;
  margin-right: 50px;
}
.schedule-interface-section .schedule-interface .schedule-interface-list {
  width: 55%;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-content
  .about-heading {
  margin-bottom: 24px;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item,
.point-list .point-item {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item:not(:last-child),
.point-list .point-item:not(:last-child) {
  margin-bottom: 20px;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content,
.point-list .point-item .item-content {
  width: 90%;
  margin-left: 22px;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-wrap,
.point-list .point-item .item-content .item-wrap {
  display: flex;
  flex-wrap: wrap;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-wrap
  a,
.point-list .point-item .item-content .item-wrap a {
  order: 2;
  cursor: pointer;
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 600;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-wrap
  .show-more.hide {
  display: none;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  span,
.point-list .point-item span {
  background-color: var(--grey-bg-color);
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-heading,
.point-list .point-item .item-content .item-heading {
  font-size: 24px;
  margin-bottom: 16px;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-desc,
.point-list .point-item .item-content .item-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 8px;
  max-height: 72px;
}

.schedule-interface-section
  .schedule-interface
  .schedule-interface-list
  .schedule-interface-item
  .item-content
  .item-desc.show {
  display: block;
  max-height: 100%;
}

.schedule-feature-section .schedule-feature .schedule-feature-image {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 100px;
}

.schedule-feature-section .schedule-feature .schedule-feature-list {
  display: flex;
  gap: 32px;
}

.schedule-feature-section .schedule-feature .header-box {
  margin-bottom: 0;
}

.schedule-feature-item {
  padding: 20px;
  border: 1px solid #e1e4e7;
  border-radius: 10px;
}

.schedule-feature-item .item-icon {
  background-color: var(--grey-bg-color);
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.schedule-feature-item .item-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.schedule-feature-item .item-desc {
  width: 90%;
}

.schedule-feature-section .schedule-feature .schedule-feature-image img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}

/* Services page */
.what-we-offer-section .what-we-offer-list {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.what-we-offer-section .what-we-offer-list .what-we-offer-item {
  text-align: center;
}

.what-we-offer-section .what-we-offer-list .what-we-offer-item div,
.icon-grey-bg-circle {
  background-color: var(--grey-bg-color);
  padding: 12px;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 22px;
}

.what-we-offer-section .what-we-offer-list .what-we-offer-item h3 {
  font-size: var(--text-large);
  margin-bottom: 18px;
}

.what-we-offer-section .what-we-offer-list .what-we-offer-item p {
  max-width: 345px;
  margin-bottom: 12px;
}

/* Company Page */
.company-section {
  background: none;
}

.company-section .company-hero .company-content .company-scroll-down span {
  color: var(--dark-grey-color);
  font-size: var(--text-normal);
  font-weight: bold;
  padding-right: 8px;
}

.company-section .company-hero .company-content {
  width: 70%;
}

.company-intro-section .company-intro .company-intro-header {
  margin-bottom: 0;
}

.company-intro-section
  .company-intro
  .company-intro-header
  .company-intro-heading {
  text-align: left;
}

.company-intro-section
  .company-intro
  .company-intro-header
  .company-intro-desc {
  text-align: left;
  max-width: 100%;
  font-weight: normal;
}

.unique-solution .unique-solution-item .box-content h2 {
  margin-bottom: 40px;
  max-width: 80%;
  line-height: 50px;
}

/* Contact page */
.contact-section .contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
}

.contact-section .contact .contact-infor .contact-heading {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-section .contact .contact-infor .contact-desc {
  font-size: 20px;
  margin-bottom: 40px;
}

.contact-section .contact .contact-infor .contact-title {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 16px;
}

.contact-section .contact .contact-infor .contact-sub-desc {
  margin-bottom: 40px;
  display: block;
}

.contact-section .contact .contact-form {
  background-color: #e1e4e7;
  border-radius: 16px;
  padding: 32px;
}

.contact-section .contact .contact-form .contact-field {
  margin-bottom: 24px;
}

.contact-section .contact .contact-form .contact-field .contact-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 14px;
  display: block;
}

.contact-section .contact .contact-form .contact-field .contact-label span {
  color: red;
}

.contact-section .contact .contact-form .contact-field .contact-label .example {
  color: var(--grey-text);
  font-size: 14px;
}

.contact-section .contact .contact-form .contact-field .contact-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px;
  border-radius: 4px;
}

.contact-section .contact .contact-form .contact-field-2-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-section .contact .contact-form .contact-field .contact-label-desc {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 14px;
  display: block;
}

.contact-section .contact .contact-form .contact-field .contact-check-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}

.contact-section
  .contact
  .contact-form
  .contact-field
  .contact-check-list
  .contact-checkbox
  div {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-section
  .contact
  .contact-form
  .contact-field
  .contact-check-list
  .contact-checkbox
  input {
  width: 32px;
  height: 32px;
}

.contact-section
  .contact
  .contact-form
  .contact-field
  .contact-check-list
  .contact-checkbox
  label {
  font-size: var(--text-medium);
  font-weight: normal;
  padding-left: 10px;
  display: inline-block;
  border-radius: 4px;
}

.contact-section .contact .contact-form .contact-btn {
  margin: 0;
  border: none;
  outline: none;
  width: 100%;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.2s;
}

.contact-section .contact .contact-form .contact-btn:hover {
  background-color: var(--bg-color);
}

/* Event page */
.event-section {
  margin-top: -20px;
}

.event-section .event-hero .event-content .event-scroll-down {
  display: flex;
  align-items: center;
}

.event-section .event-hero .event-content {
  width: 70%;
}

.event-section .event-hero .event-content .event-desc {
  margin-bottom: 32px;
}

.event-section .event-hero .event-content .event-scroll-down span {
  color: var(--dark-grey-color);
  font-size: var(--text-normal);
  font-weight: bold;
  padding-right: 8px;
}

.event-list {
  max-width: 1080px;
  margin: 0 auto;
}

.event-list-section .event-list .event-item {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  padding: 32px;
  border-radius: 32px;
  margin-bottom: 32px;
  gap: 24px;
}

.event-list-section .event-list .event-item:last-child {
  margin-bottom: 0px;
}

.event-list-section .event-list .event-item .event-item-image {
  width: 50%;
}
.event-list-section .event-list .event-item .event-item-content {
  width: 50%;
}

.event-list-section .event-list .event-item .event-item-content .time {
  font-size: var(--text-medium);
  font-weight: bold;
  margin-bottom: 4px;
}

.event-list-section .event-list .event-item .event-item-content .location {
  font-size: var(--text-normal);
  color: #b3b3b3;
}

.event-list-section .event-list .event-item .event-item-content .title {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: bold;
}

.event-list-section .event-list .event-item .event-item-content .desc {
  margin-bottom: 24px;
}

.event-list-section .event-list .event-item .event-item-content .btn-join {
  display: flex;
  align-items: center;
  font-size: var(--text-normal);
  font-weight: bold;
  color: var(--dark-grey-color);
  column-gap: 8px;
}

/* Consulting Page */
.consulting-section {
  /*background: none;*/
}

.consulting-features
  .consulting-list
  .consulting-item
  .item-content
  .item-desc {
  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  overflow: unset;
  max-height: 100%;
  gap: 80px;
}

.consulting-features .box-flex-layout {
  align-items: start;
}

/* Hosting Page */
.page-section .page-hero .page-content {
  width: 80%;
}

.page-section .page-hero .page-image {
  width: 70%;
}

.page-section .page-hero .page-content .page-desc {
  max-width: 80%;
}

/* Cloud page */
.cloud-page-section {
  background: none;
}

.cloud-page-content-section .cloud-page-box .cloud-page-offer {
  margin-bottom: 28px;
}

.cloud-page-content-section .cloud-page-box .cloud-page-offer .h2-heading {
  text-align: left;
}

.cloud-page-content-section .cloud-page-box .cloud-page-text {
  column-count: 2;
  column-gap: 42px;
  font-size: 19px;
  line-height: 33px;
}

.cloud-page-content-section
  .cloud-page-box
  .cloud-page-text
  .cloud-page-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.cloud-page-content-section
  .cloud-page-box
  .cloud-page-text
  .cloud-page-features
  .cloud-page-item
  .item-desc {
  min-height: 96px;
  width: 100%;
}

/* Time Clock Page */
.time-clock-section {
  background: none;
}
.time-clock-section .time-clock-hero .time-clock-content .time-clock-desc {
  width: 80%;
}

/* Product Page */
.product-page-content-section .product-page-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
}

.product-page-content-section .product-page-box .product-page-offer {
  margin-bottom: 0;
}
.product-page-content-section
  .product-page-box
  .product-page-offer
  .h2-heading {
  text-align: left;
}
.product-page-content-section
  .product-page-box
  .product-page-offer
  .header-box-desc {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.product-page-content-section .product-page-box .product-page-item .item-desc {
  width: 100%;
  height: 96px;
}

.product-page-content-section
  .product-page-box
  .product-page-item
  .product-page-btn {
  display: block;
  margin-top: 16px;
}

/* Report Page */
.report-section .report-content {
  display: flex;
  gap: 28px;
}

.report-section .header-box .report-heading {
  text-align: center;
  margin-bottom: 24px;
}

.report-section .report-content .report-item .report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-section .report-content .report-item {
  width: 50%;
}

.report-section .report-content .report-item .text-check {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.report-section .report-content .report-item .text-check span {
  font-weight: bold;
  display: block;
}

.report-section .report-content .report-item .report-text {
  margin-bottom: 12px;
}

.analytics-mode .analytics-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.analytics-mode .analytics-list .analytics-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
}

.analytics-mode .analytics-list .analytics-item .item-title,
.analytics-mode .analytics-list .analytics-item .item-desc {
  width: 100%;
  text-align: center;
}

.analytics-mode .analytics-list .analytics-item .item-title {
  height: 60px;
  letter-spacing: 0.2px;
}

/* System Configuration and Testing Page */
.box-section .how-it-help {
  align-items: flex-start;
}

.how-it-help-section .how-it-help .box-image img {
  object-fit: contain;
  width: unset;
}

.how-it-help-section .how-it-help-desc {
  margin-top: 34px;
  margin-bottom: 24px;
}

.check-list .check-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.check-list .check-item:last-child {
  margin-bottom: 0;
}

.check-list .check-item span {
  padding-left: 8px;
}

.cta-section .system-config-btn {
  display: block !important;
}

/* Change Management */
.main-benefits .main-benefits-wrapper {
  grid-template-columns: 0.7fr 0.7fr 1fr;
}

.main-benefits .main-benefits-wrapper .item-content {
  column-count: 1;
}

.main-benefits .main-benefits-wrapper .item-content.item-content-mb {
  margin-bottom: 14px;
}

.main-benefits .main-benefits-wrapper .check-list .check-item span {
  color: #002346;
  font-weight: bold;
  font-size: var(--text-medium);
  line-height: 25px;
  padding-left: 16px;
}

.important-note-section .box-content .important-note-title {
  margin-bottom: 26px;
}

/* Customer Support */
.customer-support-section .customer-support-hero .customer-support-image {
  width: 40%;
}

/* System Health Monitoring page */
.system-health-section {
  background: none;
}

.system-health-section .system-health {
  display: block;
}

.system-health-section
  .system-health
  .system-health-content
  .system-health-heading {
  text-align: center;
  margin-bottom: 34px;
}

.system-health-section
  .system-health
  .system-health-content
  .system-health-desc {
  column-count: 2;
  column-gap: 28px;
  margin-bottom: 58px;
}

.system-health-section
  .system-health
  .system-health-content
  .system-health-image {
  margin: 0 auto;
  width: 90%;
}

.system-health-section
  .system-health
  .system-health-content
  .system-health-image
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Web Timecards */
.online-time-section .online-time .online-time-header .online-time-desc {
  column-count: 2;
  column-gap: 16px;
  max-width: 100%;
  text-align: left;
  font-weight: normal;
  margin-bottom: 50px;
}

.online-time-section .online-time .online-time-header .online-time-image {
  text-align: center;
}

.online-time-section .online-time .online-time-header .online-time-image img {
  width: 70%;
  height: 70%;
}

.included-features .box-flex-layout {
  align-items: flex-start;
}

.included-features .box-flex-layout .included-list {
  width: 50%;
}

.included-features .included-list .included-item .item-content .item-desc {
  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  overflow: unset;
  max-height: 100%;
}

/* Crew Sheet Page */
.public-sector-data-section
  .public-sector-data
  .public-sector-data-header
  .public-sector-data-desc {
  column-count: 2;
  column-gap: 16px;
  max-width: 100%;
  text-align: left;
  font-weight: normal;
  margin-bottom: 50px;
}

.public-sector-data-section
  .public-sector-data
  .public-sector-data-header
  .public-sector-data-image {
  text-align: center;
}

.public-sector-data-section
  .public-sector-data
  .public-sector-data-header
  .public-sector-data-image
  img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.crew-sheet-how-it-work .how-it-work-list {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.crew-sheet-how-it-work .how-it-work-list .analytics-item .item-title {
  height: auto;
}

/* Advanced Rules Pages */
.advanced-rules-section {
  background: none;
}

.advanced-rules-section .advanced-rules {
  display: block;
  text-align: center;
}

.advanced-rules-section
  .advanced-rules
  .advanced-rules-content
  .advanced-rules-desc {
  max-width: 100%;
}

.advanced-rules-features-section .advanced-rules-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.advanced-rules-features-section
  .advanced-rules-features
  .advanced-rules-features-content {
  width: 40%;
}

.advanced-rules-features-section
  .advanced-rules-features
  .advanced-rules-features-list {
  width: 45%;
}

.advanced-rules-features-section
  .advanced-rules-features
  .advanced-rules-features-content
  .about-heading {
  margin-bottom: 24px;
}

.advanced-rules-features-section
  .advanced-rules-features
  .advanced-rules-features-content
  .about-desc {
  margin-bottom: 40px;
}

.advanced-rules-features-section
  .advanced-rules-features
  .advanced-rules-features-content
  img {
  object-fit: cover;
  height: 100%;
}

.advanced-rules-features-list
  .advanced-rules-features-item
  .item-content
  .item-desc {
  max-height: 100%;
  display: block;
  font-size: var(--text-normal);
}

/* Activity-based cost accounting Page */
.activity-based-section {
  background: none;
}

.activity-based-section .activity-based {
  display: block;
  text-align: center;
}

.activity-based-section
  .activity-based
  .activity-based-content
  .activity-based-desc {
  max-width: 100%;
}

.box-section .box-flex-layout .box-content .h3-heading {
  margin-bottom: 16px;
  font-size: 24px;
}

.activity-based-features .activity-based-features-item {
  gap: 68px;
  margin-bottom: 64px;
}

.activity-based-features .activity-based-features-item:last-child {
  margin-bottom: 0;
}

/* Mobile Application Page */
.mobile-apps-section {
  background: none;
}

.mobile-apps-section .mobile-apps .mobile-apps-content {
  width: 50%;
}

.mobile-apps-section .mobile-apps .mobile-apps-image {
  width: 50%;
}

.smart-mobile-timekeeping .smart-mobile-list {
  grid-template-columns: 1fr 1fr;
}

.smart-mobile-timekeeping .smart-mobile-list .analytics-item .item-title {
  height: auto;
}

.mobile-crew-sheet .mobile-crew-sheet-features-item {
  gap: 68px;
}

.mobile-crew-sheet .mobile-crew-sheet-features-item:not(:last-child) {
  margin-bottom: 64px;
}

/* Workforce Analytics Page */
.workforce-analytics-section {
  background: none;
}

.workforce-analytics-section .workforce-analytics .workforce-analytics-content {
  text-align: center;
}

.workforce-analytics-section
  .workforce-analytics
  .workforce-analytics-content
  .workforce-analytics-desc {
  max-width: 100%;
}

.workforce-analytics-section
  .workforce-analytics
  .workforce-analytics-content
  .workforce-analytics-sub-desc {
  column-count: 2;
  text-align: left;
  margin-bottom: 40px;
}

.workforce-features .workforce-features-list {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 16px;
}

.workforce-features .workforce-features-list .analytics-item {
  text-align: center;
}

.workforce-features .workforce-features-list .analytics-item .item-desc {
  width: 100%;
}

/* Workforce Notifications Page */
.workforce-notifications-section
  .workforce-notifications-hero
  .workforce-notifications-content {
  width: 55%;
}

.workforce-notifications-section
  .workforce-notifications-hero
  .workforce-notifications-image {
  width: 45%;
}

.workforce-notifications-section
  .workforce-notifications-hero
  .workforce-notifications-content
  .workforce-notifications-heading {
  width: 80%;
}

.sms-section .sms-header .sms-heading {
  text-align: left;
}

.sms-section .sms-header .sms-desc {
  max-width: 100%;
  text-align: left;
  font-weight: normal;
}

.interactive-voice-section .interactive-voice {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
}

.interactive-voice-section
  .interactive-voice
  .interactive-voice-content
  .about-heading {
  margin-bottom: 10px;
}

.interactive-voice-section
  .interactive-voice
  .interactive-voice-content
  .interactive-voice-image {
  margin-top: 30px;
  text-align: center;
}

.interactive-voice-list .interactive-voice-item .item-content .item-desc {
  max-height: 100%;
  display: block;
}

/* Advanced Hiring Rules Page */
.advanced-hiring-section .advanced-hiring-hero .advanced-hiring-content {
  width: 55%;
}

.advanced-hiring-section .advanced-hiring-hero .advanced-hiring-image {
  width: 45%;
}

/* Employment */
.job-opening-section .job-title {
  margin-bottom: 24px;
  font-size: var(--text-large);
}

.job-opening-section .job-position.job-position-grey-bg {
  background-color: #e1e4e7;
}

.job-opening-section .job-position {
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e1e4e7;
  gap: 50px;
}

.job-opening-section .job-position:not(:last-child) {
  margin-bottom: 24px;
}

.job-opening-section .job-position span,
.job-opening-section .job-position a {
  font-weight: bold;
  font-size: var(--text-medium);
}

@media (max-width: 1200px) {
  /* Nav component */
  .menu {
    width: 80%;
    margin-right: auto;
  }

  /* Footer */
  .footer {
    text-align: center;
  }

  .footer p {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    margin-top: 20px;
  }

  /* Homepage */
  .section-fold .fold .fold-text .fold-desc-list,
  .section-fold.section-fold-3 .fold.fold-3 .fold-text .fold-desc-list,
  .section-fold.section-fold-4 .fold.fold-4 .fold-text .fold-desc-list {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .pd-60 {
    padding: 40px 0;
  }

  /* Hero Layout */
  .hero-section .hero .hero-content .hero-heading {
    font-size: 46px;
  }

  .hero-section .hero .hero-content .hero-desc {
    max-width: 100%;
  }

  .h2-heading {
    font-size: 34px;
  }

  .hero-section {
    background: none;
  }

  .hero-section .hero {
    flex-direction: column-reverse;
    margin-top: 16px;
  }

  .hero-section .hero .hero-image {
    width: 70%;
    text-align: center;
  }

  .hero-section .hero .hero-content {
    width: 100%;
    margin-top: 42px;
  }

  /* Header box layout */
  .header-box .header-box-desc {
    max-width: 100%;
  }

  .header-box {
    margin-bottom: 42px;
  }

  /* 50/50 layout */
  .two-column .column-item .column-content .column-title {
    font-size: 32px;
  }

  .two-column .column-item {
    flex-direction: column;
    gap: 0;
  }

  .two-column .column-item .column-image {
    width: 100%;
    text-align: center;
  }

  .two-column .column-item .column-image img {
    width: 60%;
    height: 100%;
  }

  .two-column .column-item:not(:last-child) {
    margin-bottom: 42px;
  }

  .two-column .column-item .column-content {
    width: 100%;
    margin-top: 40px;
  }

  .two-column .column-item.column-item-reverse {
    flex-direction: column;
  }

  /* Box layout */
  .box-section .box-flex-layout {
    flex-direction: column;
  }

  .box-section .box-flex-layout .box-image {
    width: 60%;
    margin: 0 auto;
  }

  .box-section .box-flex-layout .box-content {
    width: 100%;
  }

  .box-section .box-flex-layout.reverse {
    flex-direction: column;
  }

  /* 3 Column Layout */
  .three-column .three-column-wrapper {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .three-column .three-column-wrapper .item-content-image img {
    width: 80%;
    display: inline-block;
    margin: 0 auto;
  }

  /* Nav component */
  .menu {
    width: 100%;
    margin-right: auto;
  }

  /* Homepage */
  .section-fold-1 .fold-1 {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .section-fold-1 .fold-1 .fold-1-text {
    width: 100%;
  }

  .section-fold .fold {
    flex-direction: column;
    gap: 16px;
  }

  .section-fold .fold .fold-img img {
    width: 100%;
  }

  .section-fold .fold .fold-text {
    width: 100%;
  }

  .section-fold.section-fold-3 .fold.fold-3 {
    flex-direction: column;
  }

  /* Workforce Automation */
  .product-section .product-hero .product-content {
    width: 100%;
  }
  .product-section .product-hero .product-content .product-heading,
  .product-section .product-hero .product-content .product-desc {
    max-width: 100%;
  }

  .mobile-app-section .mobile-app {
    flex-direction: column-reverse;
  }

  .mobile-app-section .mobile-app .mobile-app-content,
  .mobile-app-section .mobile-app .mobile-app-image {
    width: 100%;
  }

  .mobile-app-section .mobile-app .mobile-app-content {
    margin: 42px 0 60px;
  }

  .mobile-app-section .mobile-app .mobile-app-content h3 {
    font-size: 34px;
  }

  .mobile-app-section .mobile-app .mobile-app-content p {
    max-width: 100%;
  }

  .mobile-app-section .mobile-app .mobile-app-image {
    text-align: center;
  }

  .mobile-app-section .mobile-app .mobile-app-image img {
    width: 60%;
  }

  /* 24x7 Dynamic Shifting Scheduling Page */
  .schedule-section .schedule-hero .schedule-image {
    width: 70%;
  }

  .schedule-section .schedule-hero .schedule-content {
    width: 100%;
  }

  .schedule-section .schedule-hero .schedule-content .schedule-heading,
  .schedule-section .schedule-hero .schedule-content .schedule-desc {
    max-width: 100%;
  }

  .schedule-about-section .schedule-about .about-image img {
    width: 70%;
    height: 100%;
    object-fit: contain;
  }

  .schedule-about-section .schedule-about .about-desc {
    column-count: 1;
    max-width: 100%;
  }

  .schedule-interface-section .schedule-interface {
    flex-direction: column;
  }

  .schedule-interface-section .schedule-interface .schedule-interface-content {
    width: 100%;
    margin-right: 0;
  }

  .schedule-interface-section .schedule-interface .schedule-interface-list {
    width: 100%;
  }

  .schedule-feature-section .schedule-feature .schedule-feature-image {
    margin: 60px 0;
  }

  /* Services Page */
  .what-we-offer-section .what-we-offer-list {
    flex-direction: column;
  }

  .what-we-offer-section .what-we-offer-list .what-we-offer-item p {
    margin: 0 auto;
    margin-bottom: 12px;
    max-width: 500px;
  }

  .what-we-offer-section
    .what-we-offer-list
    .what-we-offer-item:not(:last-child) {
    margin-bottom: 40px;
  }

  /* Company Page */
  .company-section .company-hero .company-content .company-desc {
    width: 100%;
    margin-bottom: 20px;
  }

  .unique-solution .unique-solution-item .box-content h2 {
    max-width: 100%;
    margin-bottom: 24px;
  }

  /* Contact page */
  .contact-section .contact {
    grid-template-columns: auto;
    grid-template-rows: auto 1fr;
    gap: 32px;
  }

  .contact-section .contact .contact-infor .contact-heading {
    font-size: 46px;
  }

  .contact-section .contact .contact-infor .contact-title {
    font-size: 24px;
  }

  /* Event page */
  .event-section .event-hero .event-content {
    width: 100%;
  }

  .event-section .event-hero .event-content .event-desc {
    margin-bottom: 24px;
  }

  /* Software as a service page */
  .software-section .software-hero .software-content .software-desc {
    width: 100%;
    max-width: 100%;
  }

  /* Cloud Page */
  .cloud-page-content-section .cloud-page-box .cloud-page-text {
    column-count: 1;
  }

  /* Hosting Page */
  .page-section .page-hero .page-content {
    width: 100%;
  }

  .page-section .page-hero .page-content .page-desc {
    max-width: 100%;
  }

  /* Time Clock Page */
  .time-clock-section .time-clock-hero .time-clock-content .time-clock-desc {
    width: 100%;
    max-width: 100%;
  }

  /* Project management pages */
  .project-management-section
    .project-management-hero
    .project-management-content {
    width: 100%;
  }

  /* Customer Support */
  .customer-support-section .customer-support-hero .customer-support-image {
    width: 45%;
  }

  .project-management-section.pd-60,
  .time-clock-section.pd-60 {
    padding-bottom: 10px;
  }

  /* Product Page */
  .product-page-content-section .product-page-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 24px;
  }

  .product-page-content-section
    .product-page-box
    .product-page-item
    .item-desc {
    height: auto;
  }

  /* Report page */
  .report-section .header-box .report-heading {
    font-size: 46px;
  }

  .report-section .report-content {
    flex-direction: column;
  }

  .report-section .report-content .report-item {
    width: 100%;
  }

  .analytics-mode .analytics-list {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 24px;
  }

  .cta-section .cta .cta-heading {
    font-size: 34px;
  }

  /* Change Management */
  .main-benefits .main-benefits-wrapper {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 24px;
  }

  .main-benefits .main-benefits-wrapper .item-content-image p {
    margin-bottom: 0;
  }

  /* System Configuration and Testing Page */
  .how-it-work .how-it-work-wrapper .item-content-image {
    align-items: center;
  }

  .how-it-work .how-it-work-wrapper .item-content-image .image {
    width: 50%;
  }

  /* Report Page */
  .analytics-mode .analytics-list .analytics-item .item-title {
    height: auto;
  }

  /* System Health Monitoring Page */
  .system-health-section
    .system-health
    .system-health-content
    .system-health-desc {
    column-count: 1;
    margin-bottom: 40px;
  }

  .system-health-section
    .system-health
    .system-health-content
    .system-health-image {
    width: 100%;
  }

  /* Web Timecards */
  .online-time-section .online-time .online-time-header .online-time-desc {
    column-count: 1;
  }

  .included-features .box-flex-layout .included-list {
    width: 100%;
  }

  /* Crew Sheet Page */
  .public-sector-data-section
    .public-sector-data
    .public-sector-data-header
    .public-sector-data-desc {
    column-count: 1;
  }

  /* Advanced Rules */
  .advanced-rules-features-section .advanced-rules-features {
    flex-direction: column;
  }

  .advanced-rules-features-section
    .advanced-rules-features
    .advanced-rules-features-content {
    width: 100%;
  }

  .advanced-rules-features-section
    .advanced-rules-features
    .advanced-rules-features-list {
    width: 100%;
  }

  .advanced-rules-features-section
    .advanced-rules-features
    .advanced-rules-features-content
    img {
    width: 100%;
    height: 800px;
  }

  /* Activity-based cost accounting */
  .activity-based-features .activity-based-features-item {
    gap: 40px;
  }

  /* Mobile Application Page */
  .mobile-apps-section .mobile-apps .mobile-apps-content {
    width: 100%;
    margin-top: 0;
  }

  .mobile-apps-section .mobile-apps .mobile-apps-image {
    width: 80%;
  }

  .mobile-apps-section .mobile-apps .mobile-apps-content .mobile-apps-desc {
    max-width: 100%;
  }

  .mobile-crew-sheet .mobile-crew-sheet-features-item {
    gap: 40px;
  }

  /* Workforce Analytics Page */
  .workforce-analytics-section
    .workforce-analytics
    .workforce-analytics-content
    .workforce-analytics-sub-desc {
    column-count: 1;
  }

  .workforce-features .workforce-features-list {
    grid-template-columns: auto;
    grid-template-rows: 1fr 1fr;
  }

  /* Workforce Notifications Page */
  .workforce-notifications-section
    .workforce-notifications-hero
    .workforce-notifications-content {
    width: 100%;
  }

  .workforce-notifications-section
    .workforce-notifications-hero
    .workforce-notifications-image {
    width: 70%;
  }

  .workforce-notifications-section
    .workforce-notifications-hero
    .workforce-notifications-content
    .workforce-notifications-heading,
  .workforce-notifications-section
    .workforce-notifications-hero
    .workforce-notifications-content
    .workforce-notifications-desc {
    width: 100%;
    max-width: 100%;
  }

  .interactive-voice-section .interactive-voice {
    grid-template-columns: auto;
    grid-template-rows: auto 1fr;
  }

  /* Advanced Hiring Rules Page */
  .advanced-hiring-section .advanced-hiring-hero .advanced-hiring-content {
    width: 100%;
  }

  .advanced-hiring-section .advanced-hiring-hero .advanced-hiring-image {
    width: 80%;
  }

  .advanced-hiring-section
    .advanced-hiring-hero
    .advanced-hiring-content
    .advanced-hiring-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Box  layout */
  .box-section .para-2-column {
    column-count: 1;
  }

  /* Three column layout */
  .three-column .three-column-wrapper .item-content {
    column-count: 1;
  }

  /* Nav component */
  .nav-section {
    padding: 40px 0;
    padding-top: 120px;
  }

  .nav-mobile {
    display: block;
  }
  
  .nav-web {
	  display: none;
  }

  .nav-section .nav {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 0;
    align-items: stretch;
  }

  .nav-section .nav .nav-logo {
    text-align: center;
  }

  .nav-section .nav .nav-buttons {
    background-color: var(--primary-color);
    padding: 0 8px;
    text-align: right;
    display: none;
  }

  .nav-section .nav-buttons .btn.btn-primary,
  .nav-section .nav-buttons .btn.btn-secondary {
    padding: 18px 0;
    margin: 0 8px;
    background-color: var(--primary-color);
    min-width: 0;
  }

  .nav::after {
    bottom: -30px;
  }

  .menu {
    display: none;
    width: 100%;
  }

  /* Homepage */
  .section-fold-1 .fold-1 .fold-1-text h1 {
    font-size: 32px;
    line-height: 44px;
  }

  /* 24x7 Dynamic Shifting Scheduling Page */
  .schedule-feature-section .schedule-feature .schedule-feature-list {
    flex-direction: column;
  }

  .schedule-feature-item .item-desc {
    width: 100%;
  }

  /* Event page */
  .event-list-section .event-list .event-item {
    flex-direction: column;
  }

  .event-list-section .event-list .event-item .event-item-image,
  .event-list-section .event-list .event-item .event-item-content {
    width: 100%;
  }

  .event-list-section .event-list .event-item .event-item-image {
    text-align: center;
  }

  .event-list-section .event-list .event-item .event-item-content .title {
    font-size: 24px;
  }

  /* Cloud */
  .cloud-page-content-section
    .cloud-page-box
    .cloud-page-text
    .cloud-page-features {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .cloud-page-content-section
    .cloud-page-box
    .cloud-page-text
    .cloud-page-features
    .cloud-page-item
    .item-desc {
    margin-bottom: 24px;
    min-height: auto;
  }
}

@media (max-width: 577px) {
  /* Hero Layout */
  .hero-section {
    margin-top: 0;
  }

  .hero-section .hero .hero-image {
    width: 100%;
  }

  .hero-btn.btn.btn-primary {
    width: 100%;
  }

  /* 50/50 layout */
  .two-column .column-item .column-image img {
    width: 100%;
  }

  /* Box layout */
  .box-section .box-flex-layout .box-image {
    width: 100%;
  }

  /* Three column layout */
  .three-column .three-column-wrapper .item-content-image img {
    width: 100%;
  }

  /* Nav component */
  .nav-logo img {
    width: 220px;
  }

  /* CTA component */
  .cta-section .cta .cta-btn {
    justify-content: space-between;
    width: 175px;
  }

  .cta-section .cta .cta-group {
    flex-direction: column;
    gap: 16px;
  }

  /* Homepage */
  .section-fold-1 .fold-1 .fold-1-text h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .section-fold .fold .fold-text .fold-desc-list {
    padding-left: 40px;
  }

  .section-fold .fold .fold-text .fold-heading {
    font-size: 30px;
  }

  /* Workforce Automation */
  .mobile-app-section .mobile-app .mobile-app-image img {
    width: 100%;
  }

  /* 24x7 Dynamic Shifting Scheduling Page */
  .schedule-section .schedule-hero .schedule-image {
    width: 100%;
  }

  .schedule-about-section .schedule-about .about-image img {
    width: 100%;
  }

  .schedule-feature-section .schedule-feature .schedule-feature-image img {
    width: 100%;
  }

  /* Contact page */
  .contact-section .contact .contact-form .contact-field-2-column {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .contact-section .contact .contact-form .contact-field .contact-check-list {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 0;
  }

  /* Event page */
  .event-list-section .event-list .event-item .event-item-content .title {
    font-size: 22px;
  }

  .cta-section .cta {
    padding: 32px;
  }
  .cta-section .cta .cta-heading {
    font-size: 28px;
  }
  /* System Configuration and testing */
  .how-it-work .how-it-work-wrapper .item-content-image .image {
    width: 100%;
  }

  /* Hosting Page */
  .page-section .page-hero .page-image {
    width: 100%;
  }

  /* Advanced Rules Page */
  .advanced-rules-section .advanced-rules .advanced-rules-content {
    margin-top: 0;
  }

  .advanced-rules-section .advanced-rules {
    margin-top: 0;
  }

  /* Activity-based cost accounting page */
  .activity-based-section .activity-based .activity-based-content {
    margin-top: 0;
  }

  .activity-based-section .activity-based {
    margin-top: 0;
  }
  

}


  		.bouncingDownArrowsDiv {
			/*	
			margin-right: -50px;
			
			background-color: orange;
			*/	
			top: 4px;
			
			height: 30px;
			position: relative;
			width: 250px;
			
			
		}

		@keyframes bouncing {
			0% {bottom: 0;}
			50% {bottom: 10px;}
			100% {bottom: 0;}
		}
		


		.bouncingDownArrows {
			animation: bouncing 1s infinite ease-in-out;
			height: 25px;
			margin-left: -20px;
			
			/*
			margin-left: 10px;
			bottom: 0;
			display: block;	
			
			width: 25px;			
			left: 50%;
			*/
			
			position: absolute;
			
		}