:root {
  --main-color: #bf1e2e;
}

/* BASIC SETUP */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
}

a,
a:hover,
a:active,
a:focus,
a:visited,
a:link {
  text-decoration: none;
  outline: none;
}

/*********************************************************************/
/* SCROLL TO TOP */
#btnScrollToTop {
  display: none;
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: var(--main-color);
  color: white;
  z-index: 80;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .25);
  cursor: pointer;
}

.material-icons {
  font-size: 25px;
  line-height: 1.3;
}

/*********************************************************************/
/* BUTTONS */

.button:link,
.button:visited {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 300;
  border-radius: 3px;
  border: 1px solid var(--main-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.button-full:link,
.button-full:visited {
  font-weight: 800;
  font-size: 2rem;
  background-color: var(--main-color);
  color: #fff;
}
.button-ghost:link,
.button-ghost:visited {
  color: #fff;
}
.button:hover,
.button:active {
  background-color: white;
  border-color: var(--main-color);
  color: var(--main-color);
}

/*********************************************************************/
/* REUSABLE CODE */

.section-padding {
  padding: 100px 0;
}
.separator {
  width: 250px;
  height: 2px;
  background: var(--main-color);
  margin: 30px auto 50px auto;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
  color: black;
  letter-spacing: -2px;
  font-weight: bold;
  font-size: 5rem;
  padding: 10px 20px;
}

/*********************************************************************/
/* HERO */

#hero-slider .slide1 {
  height: 100vh;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0) 100%
    ),
    url(../img/free/steel-shelf-4074061_1920.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#hero-slider .h100 {
  height: 100vh;
}

.hero-info {
  margin-top: 0;
}

.subTitle1 {
  letter-spacing: -2px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 7rem;
  color: white;
  text-transform: uppercase;
}

.subTitle2 {
  letter-spacing: 0px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-weight: bold;
  font-size: 5rem;
  color: var(--main-color);
}

.cta {
  margin-top: 40px;
}

/*********************************************************************/
/* COMPANY */

.section-about {
  background-color: white;
}

.about-p {
  font-size: 1.7rem;
}

/*********************************************************************/
/* CHOOSE */

.choose {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url(../img/free/forklift-835340_1920.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.choose-p {
  font-size: 1.7rem;
  color: white!important;
}

/*********************************************************************/
/* SERVICES */

.section-services {
  background-color: white;
}

.services-list {
  list-style: none; /* Remove default bullets */
  font-size: 1.6rem;
}

.services-list li::before {
  content: "\25A0";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--main-color); /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.2em; /* Also needed for space (tweak if needed) */
  margin-left: 0em; /* Also needed for space (tweak if needed) */
}

.section-services .card-title {
  color: var(--main-color);
  font-weight:bold;
}

.section-services .card-subtitle {
  font-weight:bold;
}

.section-services .card img {
  height:50%;
  object-fit:cover;
}

/*********************************************************************/
/* OUR WORK */
.our-work {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.9)
    ),
    url(../img/free/ikea-2714998_1920.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.our-work h5 {
  background-color: var(--main-color);
  color:white;
  font-size:1.5rem
}

/*********************************************************************/
/* CONTACT */
.contact {
  background-color: rgb(236, 236, 236);
}
.contact .section-heading, .contact span h4 a {
  color: var(--main-color);
}
.contact h3 {
  color:black;
  font-weight:bold;
}
.contact i {
  color: var(--main-color);
  font-size:4rem;
}

/*********************************************************************/
/* FOOTER */

.footer {
  padding: 4rem 2rem;
  background-color: #333;
}

.footer__list {
  margin: 0;
}

.footer__item {
  display: inline-block;
  list-style-type: none;
}

.footer__item:not(:last-child) {
  margin-right: 2rem;
}

.footer__copyright {
  font-size: 1.5rem;
  color: #aaa;
}

.footer__link {
  display: inline-block;
  font-size: 1.5rem;
  color: #aaa;
  transition: all 0.2s;
}

.footer__link:hover {
  color: var(--main-color);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: scale(1.3) rotate(5deg);
}

.footer__copyright {
  margin: 0;
}
