
.services {
  margin-top: 1rem;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: aliceblue;
}

.services .service {
  -webkit-box-shadow: inset 0 0 22px 1px #242424;
  box-shadow: inset 0 0 22px 1px #242424;
  min-width: 430px;
  height: 35vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.services .service .shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.587)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.587));
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 0px 0px 90px 0px;
}

.services .service .overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.services .service .overlay:hover {
  /* -webkit-transform: translate(0px, -50px);
  transform: translate(0px, -50px);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  scale: 1.1; */
}


.services .service .overlay a {
  background: radial-gradient(#fff4dad7 10%, #ffb300);
  color: black;
  font-family: 'Bree Serif',
    serif;
  /* font-weight: 700; */
  -webkit-box-shadow: inset 0px 0px 7px 1px #535353;
  box-shadow: inset 0px 0px 7px 1px #535353;
  border-radius: 3px;
  letter-spacing: 2px;
  text-underline-offset: 3px;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  transition: 0.3s all ease-in-out;
}

.services .service .overlay a::after {

  background: #000000;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;

  height: 5px;
}

.services .service .overlay a:hover {
  text-decoration: none;
  scale: 1.1;
  transition: 0.3s all ease-in-out;

}

.services .service .overlay a:hover:after {

  transform: scaleX(1);
  transform-origin: bottom left;
}

.services .service .overlay span {
  font-size: 2.2rem;
}

.services .service:nth-child(1) {
  background-image: url(../Images/machines/used_equipment.jpg);
  background-position: bottom;
}

.services .service:nth-child(2) {
  background-image: url(../Images/machines/machine_4.webp);
}

.services .service:nth-child(3) {
  background-image: url(../Images/machines/machine_3.jpg);
}

.services .service:nth-child(4) {
  background-image: url(../Images/machines/electrical_services_1.jpg);
  background-position: top;
}

.services .service:nth-child(5) {
  background-image: url(../Images/machines/mechinacial_services.webp);
}

.footer {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: -webkit-gradient(linear, left top, left bottom, from(#392200), color-stop(70%, black));
  background: linear-gradient(#392200, black 70%);
}

.footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0rem;
  margin: 0;
  -webkit-box-shadow: inset 0px 0px 1px 5px white;
  box-shadow: inset 0px 0px 1px 5px white;
}

.footer .logo img {
  width: 10%;
  height: 10%;
}

.footer .logo div {
  color: white;
  white-space: nowrap;
  letter-spacing: .1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.footer h2 {
  color: white;
}

.footer .navLinks {
  margin: 2rem 0 0rem 0rem;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}

@media only screen and (max-width: 860px) {
  .footer .navLinks {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer .navLinks .explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer .navLinks .explore h2 {
  position: relative;
}

.footer .navLinks .explore h2::after {

  background: #ffa600;
  content: "";
  width: 100%;
  position: absolute;
  top: -5px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;

  height: 3px;
}

.footer .navLinks .explore h2:hover:after {

  transform: scaleX(1);
  transform-origin: bottom left;
}



.footer .navLinks .explore {
  height: 60%;
  font-family: 'Bree Serif',
    serif;
  letter-spacing: 3px;
}

.footer .navLinks .explore .exploreLinks .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

.footer .navLinks .explore .exploreLinks .link {
  padding: 1rem 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.footer .navLinks .explore .exploreLinks .link a {
  font-size: calc(.5rem + .8vw);

  color: #ffc861;
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
}

.footer .navLinks .explore .exploreLinks .link a::after {

  background: #ffa600;
  content: "";
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;

  height: 3px;
}

.footer .navLinks .explore .exploreLinks .link a:hover {
  color: white;
}

.footer .navLinks .explore .exploreLinks .link a:hover:after {

  transform: scaleX(1);
  transform-origin: bottom left;
}

@media only screen and (max-width: 860px) {
  .footer .navLinks .explore .exploreLinks .link a {
    font-size: calc(.5rem + 3vw);
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem 0rem;
  }
}

.footer .navLinks .explore .social {
  margin-top: 2rem;
}

.footer .navLinks .explore .social .link {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.footer .navLinks .explore .social .link a {
  /* background: white; */
  padding: 1rem;
  border-radius: 10%;
}


.footer .navLinks .explore .social .link a i {
  color: #166fe5;
  font-size: calc(.5rem + 4vw);

  transition: 0.2s all ease-in-out;
}

@media only screen and (max-width: 860px) {
  .footer .navLinks .explore .social .link a i {
    font-size: calc(1.5rem + 5vw);
  }
}

.footer .navLinks .explore .social .link a i:hover,
.footer .navLinks .explore .social .link a i:active {
  color: #fff;
  transition: 0.1s all ease-in;
}

@media only screen and (max-width: 860px) {
  .footer .navLinks .app__footer-form {
    margin: auto;
    width: 70%;
  }
}

.footer .navLinks .app__footer-form div {
  width: 100%;
  margin: 0.75rem 0;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .navLinks .app__footer-form div:hover {
  -webkit-box-shadow: 0 0 25px var(--primary-color);
  box-shadow: 0 0 25px var(--primary-color);
}

.footer .navLinks .app__footer-form .button-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.footer .navLinks .app__footer-form .button-footer button:hover {
  background-color: #009cc7;
  transition: 0.3s all ease-in-out;
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*# sourceMappingURL=halfPage.css.map */