@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

/*******************************************************************************
Variable
*******************************************************************************/

:root {
  /* Color */
  --clr-primary: #a00020;
  --clr-primary-dark: #8b001c;
  --clr-secondary: #222222;
  --clr-neutral-100: #f2f2f2;
  --clr-neutral-200: #eeeeee;
  --clr-neutral-300: #c4c4c4;
  --clr-neutral-500: #4d4d4d;
  --clr-white: #ffffff;

  /* Font */
  --heading-1: 5.6rem;
  --heading-2: 4rem;
  --heading-3: 2.4rem;
  --heading-4: 1.8rem;
  --heading-5: 2.4rem;
  --heading-6: 1.8rem;
  --heading-small: 1.4rem;

  --fs-navigation: 1.8rem;
  --fs-base: 1.6rem;
  --fs-second: 1.4rem;
  --fs-small: 1.2rem;

  --font-color: #666666;

  --fw-100: 100;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  --line-height-base: 1.5;
  --line-height-heading: 1.2;

  --drop-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/*******************************************************************************
    Base
*******************************************************************************/

*,
::before,
::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  --font-size: 62.5%;
  font-size: var(--font-size);
}

body {
  font-family: "Roboto", sans-serif;
  font-size: var(--fs-base);
  font-weight: var(--fw-400);
  line-height: var(--line-height-base);
  color: var(--font-color);
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: var(--clr-secondary);
}

.container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wider {
  max-width: 170rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

p {
  margin-bottom: 0;
}

.section {
  padding: 10rem 0;
}

.padding-res {
  padding: 5rem;
}

.padding-y-res {
  padding: 5rem 0;
}

.padding-x-res {
  padding: 0 5rem;
}

.margin-res {
  margin: 5rem;
}

.margin-y-res {
  margin: 5rem 0;
}

.margin-x-res {
  margin: 0 5rem;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.small-title {
  color: var(--clr-primary);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: var(--clr-secondary);
  transition: 0.3s ease-in;
}

a:hover {
  color: var(--clr-primary);
}

li {
  list-style: none;
}

.bg-base {
  background-color: var(--clr-primary);
}

.bg-secondary {
  background-color: var(--clr-secondary);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500);
}

.bg-white {
  background-color: var(--clr-white);
}

.clr-neutral-300 {
  color: var(--clr-neutral-300);
}

.clr-neutral-100 {
  color: var(--clr-neutral-100);
}

.clr-primary {
  color: var(--clr-primary);
}

.clr-secondary {
  color: var(--clr-secondary);
}

.clr-white {
  color: var(--clr-white);
}

.rect-3 {
  height: 3rem;
  width: 3rem;
}

.shadow-hover {
  box-shadow: none;
  transition: 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: var(--drop-shadow);
}

.info-element {
  margin-left: 4rem;
}

.search {
  height: 6rem;
  width: 6rem;
  cursor: pointer;
}

.title-divider {
  width: 60px;
  height: 4px;
  background-color: var(--clr-primary);
  display: inline-block;
}

.inner-small {
  width: 60%;
}

.bg-img-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn-big {
  padding: 1rem 3rem;
  font-size: var(--fs-base);
  color: var(--clr-white);
  border-radius: 0;
  font-weight: var(--fw-500);
  transition: 0.3s ease;
}

.btn-big:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

.btn-big-outline {
  background: transparent;
  border: 1px solid var(--clr-secondary);
  padding: 1rem 3rem;
  border-radius: 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-500);
  color: var(--clr-secondary);
  transition: 0.3s ease;
}

.btn-big-outline:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}

.page-cover {
  padding: 10rem 0;
}

.pointer {
  cursor: pointer;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  background: var(--clr-primary);
}

.py-media-md {
  margin: 0;
}
/*******************************************************************************
    Typography
*******************************************************************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-secondary);
  font-weight: var(--fw-500);
  line-height: var(--line-height-heading);
}

h1 {
  font-size: var(--heading-1);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

h4 {
  font-size: var(--heading-4);
}

h5 {
  font-size: var(--heading-5);
}

h6 {
  font-size: var(--heading-6);
}

.fs-small {
  font-size: var(--fs-small);
  line-height: 1.5;
}

.fs-second {
  font-size: var(--fs-second);
  line-height: 1.3;
}

.fw-500 {
  font-weight: var(--fw-500);
}

.fw-600 {
  font-weight: var(--fw-600);
}

.fw-700 {
  font-weight: var(--fw-700);
}

.title-py {
  padding: 2.2rem 0;
}

.img-element {
  position: relative;
  z-index: 2;
}

.img-element::before {
  content: "";
  background-color: var(--clr-neutral-100);
  position: absolute;
  top: 90px;
  right: 50px;
  left: -35px;
  bottom: -35px;
  z-index: -1;
}

.img-element__content {
  width: 100%;
  object-fit: cover;
}

.scale-wrapper {
  overflow: hidden;
  cursor: pointer;
}

.scale-positive {
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.scale-wrapper:hover .scale-positive {
  transform: scale(1.1);
  filter: grayscale(0);
}

/*******************************************************************************
    Header Top
*******************************************************************************/
.header-top {
  background-color: var(--clr-secondary);
  color: var(--clr-neutral-100);
}

.header-top p {
  margin-bottom: 0;
}

.header-top a {
  color: var(--clr-white);
  font-size: 2rem;
}

.header-top a:hover {
  color: var(--clr-neutral-300);
}

.header-top__item-group span {
  font-size: var(--fs-base);
  font-weight: var(--fw-600);
}

/*******************************************************************************
    Header
*******************************************************************************/

.header a {
  font-weight: var(--fw-500);
}

.header__logo {
  width: 20rem;
}

.header__nav-item {
  position: relative;
  padding: 1rem 2rem;
  font-size: var(--fs-navigation);
}

.header__sub-nav {
  position: absolute;
  left: 0;
  z-index: 5;
}

.header__sub-nav--item {
  padding: 1rem 3rem;
}
.header li > ul {
  display: none;
}

.header li:hover > ul {
  display: block;
}

/*******************************************************************************
    Sidebar
*******************************************************************************/

/*
#sidebar ul li a {
    color: var(--clr-neutral-500);
    font-size: 1.6rem;
}

.sidebar-menu-tab {
    margin-right: 2rem;
}

#sidebar .sidebar-header {
    background-color: var(--clr-secondary);
}

.sidebar-header .logo {
    width: 50%;
}

#sidebar #dismiss {
    background-color: #222222;
    color: #fff;
}
  
#sidebar .sidebar-header {
    background-color: var(--clr-neutral-100);
}
  
#sidebar ul li:not(:last-child) {
    border-bottom: 1px solid #e3e5e6;
}
  
#sidebar .drop-box {
    position: relative;
}
  
#sidebar .drop-box button {
    position: absolute;
    right: 2rem;
    top: 0%;
    bottom: 0;
}
  
#sidebar .dropdown {
    display: none;
}
  
#sidebar .dropdown__item {
    list-style: none;
    font-size: 1rem;
}
  
#sidebar .dropdown a {
    background-color: transparent;
    font-size: 1.6rem !important;
    display: inline-block;
}
  
#sidebar-active {
    display: block;
}
  
.sidebar-menu-tab div {
    width: 3rem;
}
  
.overlay.active {
    background-color: #000;
    opacity: .8;
}
  
.sidebar-menu-tab {
    color: #fff;
}
*/

/*******************************************************************************
    Slider
*******************************************************************************/

.slider__item {
  position: relative;
  z-index: 1;
}

.slider__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slider h1 {
  color: var(--clr-white);
}

.slider__content {
  width: 70%;
  color: var(--clr-neutral-100);
  position: relative;
  z-index: 3;
}

.slider-client__logo {
  -webkit-filter: none;
  filter: none;
  max-height: 100px;
}

.slider-client__logo:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*******************************************************************************
    Section About
*******************************************************************************/

.about-img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

/*******************************************************************************
    Cards
*******************************************************************************/

.card-placeholder {
  margin-top: 8rem;
}

.card-info__img {
  width: 100%;
  padding-bottom: 63%; /*75%;*/
}

.card-info__img:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}

.card-info__img--medium {
  width: 100%;
  padding-bottom: 60%;
}

.card-info__text {
  padding: 8%;
}

.card-info__bottom {
  margin: 0 8%;
  padding: 2rem 0;
  border-top: 2px solid var(--clr-neutral-200);
}

.card-info__bottom a {
  color: var(--clr-primary);
}

.card-info__bottom i {
  transition: 0.3s ease;
  cursor: pointer;
}

.card-info__bottom:hover i {
  transform: translateX(1rem);
}

.card-small {
  padding: 4rem 3rem;
  cursor: pointer;
}

/*******************************************************************************
    Forms
*******************************************************************************/

.form-wrapper {
  padding: 5rem;
}

.select-custom {
  border: 1px solid var(--clr-neutral-300);
  border-radius: 0;
  background-color: var(--clr-neutral-100);
  padding: 1.2rem;
  font-size: 16px;
  color: #666;
}

.select-custom:focus {
  border-color: var(--clr-neutral-300);
  box-shadow: 0 0 0 0.025rem rgba(0, 0, 0, 0.6);
}

.ui-state-default {
  background-color: var(--clr-primary);
}

.input-custom,
.input-contact {
  border-radius: 0;
  background-color: var(--clr-neutral-100);
  padding: 1.2rem;
  font-size: 16px;
  color: #666;
  width: 100%;
}

.input-custom {
  border: 1px solid var(--clr-neutral-300);
}

.input-contact {
  border: none;
}

.input-custom:focus {
  border-color: var(--clr-neutral-300);
  box-shadow: 0 0 0 0.025rem rgba(0, 0, 0, 0.6);
  background-color: var(--clr-neutral-100);
}

.form-help-block {
  color: var(--clr-primary);
  font-size: 1.2rem;
  font-weight: 500;
}

.alert-error {
  background-color: var(--clr-primary);
  padding: 1rem;
  color: white;
}

.input-group-text {
  font-size: 24px;
  background-color: #c00;
  color: #fff;
  border: 1px solid #c00;
  border-radius: 0;
  padding: 0 15px;
}

[type="text"]::-webkit-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]::-webkit-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="text"]:-moz-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]:-moz-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="text"]::-moz-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]::-moz-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="text"]:-ms-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]:-ms-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="text"]::-ms-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]::-ms-input-placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="text"]::placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

[type="email"]::placeholder {
  color: var(--clr-neutral-500);
  opacity: 0.5;
}

/*******************************************************************************
    Navigation
*******************************************************************************/
.navigation {
  background-color: var(--clr-white);
  display: flex;
  align-items: center;
}

.navigation a:hover {
  color: var(--clr-primary);
}

.navigation__list {
  padding: 0;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation__list-item {
  font-weight: 600;
  list-style: none;
  padding: 3rem 2rem;
  position: relative;
  cursor: pointer;
  font-size: 18px;
}

.navigation__list-item span {
  font-weight: 500;
}

.navigation__dropdown {
  position: relative;
}

.navigation__dropdown-list {
  list-style: none;
  color: #222222;
  font-size: 16px;
  width: 22rem;
  position: absolute;
  top: 8.7rem;
  left: 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.navigation__dropdown-list a {
  color: #222222;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.navigation__dropdown-list a:hover {
  color: #fff;
}

.navigation__dropdown-list-item {
  padding: 1rem 2rem;
  text-transform: none;
  background-color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.navigation__dropdown-list-item:not(:last-child) {
  border-bottom: 1px solid #e3e5e6;
}

.navigation__dropdown-list-item:hover {
  background-color: var(--clr-primary);
}

.navigation__dropdown:hover .navigation__dropdown-list {
  display: block;
  -webkit-animation: hover;
  animation: hover;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  z-index: 100;
}

.nav-scroll {
  background-color: #fff;
  position: fixed;
  top: -100rem;
  left: 0;
  right: 0;
  -webkit-transition: top 0.6s;
  transition: top 0.6s;
  z-index: 100;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-scroll__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-scroll__box .nav-scroll__logo {
  max-width: 10rem;
}

.nav-scroll__box .navigation {
  background-color: transparent;
}

.nav-scroll__box .navigation a {
  color: #222222;
}

.nav-scroll__box .navigation a:hover {
  color: #343e47;
}

.nav-scroll__box .navigation__list {
  font-size: 1.4rem;
}

.link-active {
  color: var(--clr-primary) !important;
}

.link-active a span {
  color: var(--clr-primary) !important;
}

.pagination-link {
  position: relative;
  display: block;
  padding: 0.9rem 0.9rem;
  font-weight: 600;
  margin-left: -1px;
  line-height: 1.25;
  color: #222222 !important;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-right: 5px;
  border-radius: 0px !important;
  min-width: 40px;
  text-align: center;
  /*-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;*/
}
.pagination-item.disabled .pagination-link {
  color: #868e96;
  pointer-events: none;
  cursor: auto;
  background-color: #ceffce;
  border-color: #718393;
}
.pagination-item.active .pagination-link {
  z-index: 1;
  color: #fff !important;
  background-color: #a60f2e;
  border-color: #a60f2e;
}
.pagination-link:focus,
.pagination-link:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: #a60f2e;
  border-color: #a60f2e;
}

/*******************************************************************************
    Menu
*******************************************************************************/

/* Menu */
#main-nav .menu-fallback {
  position: relative;
  text-decoration: underline;
  display: inline-block;
  height: 50px;
  line-height: 50px;
}
#main-nav {
  display: block;
}
#main-nav ul {
  margin: 0;
}
#main-nav ul li {
  position: relative;
  list-style: none;
  padding-top: 0;
  padding-bottom: 0;
}
#main-nav > ul > li {
  float: left;
  padding: 3rem 2rem;
}
#main-nav > ul > li > a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: var(--clr-secondary);
}
#main-nav > ul > li > a:hover,
#main-nav > ul > li.current-menu-item > a {
  color: var(--clr-primary) !important;
  transition: unset;
}
#main-nav > ul > li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
#main-nav > ul > li.menu-item-has-children > a:after {
  font-weight: normal;
  font: var(--fa-font-solid);
  content: "\f107";
  position: absolute;
  right: 0;
  top: 6px;
}

/* Sub Menu */
#main-nav .sub-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  background-color: #252525;
  position: absolute;
  left: 0;
  top: 100%;
  width: 24rem;
  transform: translateY(-5px);
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-animation: hover;
  animation: hover;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
#main-nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  background-color: #222;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  -webkit-animation: hover-right;
  animation: hover-right;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
#main-nav .sub-menu .sub-menu .sub-menu {
  background-color: #151515;
}
#main-nav .sub-menu li a {
  padding: 1rem 2rem !important;
  color: #333;
  background-color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}
#main-nav .sub-menu li:first-child > a {
  border: 0;
}
#main-nav .sub-menu li a:hover {
  color: #fff;
  background-color: var(--clr-primary);
}
#main-nav li:hover > .sub-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#main-nav .sub-menu li.menu-item-has-children > a:after {
  right: 20px;
  line-height: normal;
  font-weight: normal;
  font: var(--fa-font-solid);
  content: "\f105";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*******************************************************************************
    Error
*******************************************************************************/
.error__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.error__title {
  font-size: 12rem;
  font-weight: 600;
  line-height: 1;
}

/*******************************************************************************
    Modal
*******************************************************************************/

.modal-content {
  border: 0;
  border-radius: 0;
}

.modal-header {
  padding: 1.4rem 2rem !important;
}

.modal-title {
  font-size: 1.8rem !important;
  text-transform: uppercase !important;
  color: #444;
}

.modal-body {
  padding: 1.4rem 2rem !important;
}

.btn-modal {
  display: inline-block;
  font-size: 1.4rem !important;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  background-color: #f0f1f1 !important;
  color: #555 !important;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.btn-modal:hover {
  background-color: #e7e7e7 !important;
}

/*******************************************************************************
    Footer
*******************************************************************************/

.footer {
  padding: 6rem 0 2rem 0;
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-size: 1.5rem;
}

.footer__logo {
  height: 7rem;
}

.footer a {
  color: var(--clr-neutral-300);
}

.footer a:hover {
  color: var(--clr-white);
}

.footer ul li {
  padding: 3px 0;
}

.footer .footer__group-icons i {
  padding-right: 3rem;
  font-size: 2rem;
}

.footer__copyright {
  border-top: 1px solid var(--clr-neutral-500);
  margin-top: 2rem;
  padding-top: 2rem;
}

/*******************************************************************************
    forklift
*******************************************************************************/
.forklift-inquire .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--clr-white);
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  font-size: 16px;
  font-weight: var(--fw-500);
  transition: 0.3s ease;
  border-radius: 0;
}

.forklift-inquire .nav-link {
  padding: 1rem 3rem;
  margin-right: 15px;
  font-size: var(--fs-base);
  color: #666;
  text-transform: uppercase;
  border-radius: 0 !important;
  text-decoration: none;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.forklift-inquire .nav-link:hover {
  color: var(--clr-primary);
  border-radius: 0 !important;
}

.forklift-inquire .input-group-append {
  cursor: pointer;
}

.forklift-inquire .input-group-text {
  font-size: 24px;
  background-color: var(--clr-primary) !important;
  color: #fff;
  border: 1px solid var(--clr-primary) !important;
  padding: 5px 15px;
}

/* datepicker */
.datepicker.dropdown-menu {
  list-style: none;
  color: #333;
  font-size: 16px !important;
  line-height: 20px;
}

.datepicker td,
.datepicker th {
  width: 25px;
  height: 25px;
}

.datepicker table tr td.active {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #c00, #c00) !important;
}

/* splide */
.splide--nav > .splide__track > .splide__list > .splide__slide {
  cursor: pointer;
  background-color: #dddddd;
  /*border: 1px solid #DDDDDD;*/
  padding: 3px;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  background-color: #ccc;
  border: none;
  border: 1px solid #dddddd;
  padding: 5px;
}

#main-carousel .splide__slide img {
  width: 100%;
  height: auto;
}

.img-element-forlift {
  position: relative;
  z-index: 2;
}

.img-element-forlift::before {
  content: "";
  background-color: var(--clr-neutral-100);
  position: absolute;
  bottom: 90px;
  left: 50px;
  right: -35px;
  top: -35px;
  /*bottom: 90px;
    left: 50px;
    right : -35px;
    top : -35px;*/
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .img-element-forlift::before {
    left: -50px;
    right: 35px;
  }
}

.img-element-forlift__content {
  width: 100%;
  object-fit: cover;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide {
  margin: 0 auto;
}

.splide__arrow {
  background: #fff;
  border-radius: 0;
}

.splide .thumbnails {
  display: flex;
  margin: 1rem auto 0;
  /*padding: 0;*/
  justify-content: center;
}

.splide .thumbnail {
  /*width: 70px;
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
    opacity: 0.6;*/
  opacity: 1;
}

.splide .thumbnail.is-active {
  opacity: 0.6;
}

.splide .thumbnail img {
  width: 100%;
  height: auto;
}

/*******************************************************************************
    Animations
*******************************************************************************/

@keyframes hover {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes hover-right {
  0% {
    opacity: 0;
    /* transform: translateX(-1rem) */
    left: 90%;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
    /* transform: translate(0) */
    left: 100%;
  }
}

/*******************************************************************************
    Media Query
*******************************************************************************/

@media screen and (max-width: 1600px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

@media screen and (max-width: 1200px) {
  html {
    --font-size: 56.25%;
  }

  .header {
    padding: 1rem 0;
  }

  .section {
    padding: 7rem 0;
  }

  h2 {
    --heading-2: 4.4rem;
  }

  h3 {
    --heading-3: 3.8rem;
  }

  .card-small {
    padding-left: 0;
  }

  .navigation {
    display: none;
  }

  .nav-scroll {
    display: none;
  }

  .title-py {
    padding: 1.8rem 0;
  }

  .padding-res {
    padding: 3rem;
  }

  .padding-y-res {
    padding: 3rem 0;
  }

  .padding-x-res {
    padding: 0 3rem;
  }

  .margin-res {
    margin: 3rem;
  }

  .margin-y-res {
    margin: 3rem 0;
  }

  .margin-x-res {
    margin: 0 3rem;
  }

  .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .page-cover {
    padding: 3rem 0;
  }
}

@media screen and (max-width: 992px) {
  .inner-small {
    width: 100%;
  }

  .section {
    padding: 5rem 0;
  }

  .about-img {
    width: 100%;
    padding-bottom: 50%;
  }

  h1 {
    --heading-1: 4.2rem;
  }

  h2 {
    --heading-2: 3.2rem;
  }

  h3 {
    --heading-3: 3rem;
  }

  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .card-placeholder {
    margin-top: 4rem;
  }

  .title-py {
    padding: 1.4rem 0;
  }

  .img-element {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    --heading-1: 3.8rem;
  }

  .slider__content {
    width: 100%;
  }

  .title-py {
    padding: 1rem 0;
  }

  .img-element-forlift::before {
    content: "";
    background-color: var(--clr-neutral-100);
    position: absolute;
    bottom: 90px;
    left: -50px;
    right: 35px;
    top: -35px;
  }
}

@media screen and (max-width: 600px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-wrapper {
    padding: 3rem;
  }

  .padding-res {
    padding: 1rem;
  }

  .padding-y-res {
    padding: 1rem 0;
  }

  .padding-x-res {
    padding: 0 1rem;
  }

  .margin-res {
    margin: 1rem;
  }

  .margin-y-res {
    margin: 1rem 0;
  }

  .margin-x-res {
    margin: 0 1rem;
  }
}
