* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ca412c;
  --gray: rgba(155, 155, 155, 0.396);
  --border-radius: 4px;
  --lightgray: rgba(234, 234, 234, 0.873);
}

body {
  /* font-family: "Courier New", Courier, monospace; */
}
ul {
  list-style-type: none;
}
address,
dl,
fieldset,
figure,
ol,
p,
pre,
ul {
  margin: 0;
}
ol,
ul {
  padding-left: 0;
}
img {
  object-fit: cover;
}
a,
a:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.h-200 {
  height: 200px;
}
.bold {
  font-weight: bold;
}
.page-banner {
  padding: 20px;
  height: 35vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-banner a,
.page-banner div {
  color: white;
}
.page-banner h1 {
  color: white;
  font-weight: 500;
  margin-top: 0;
}
/* navbar start */
.header__nav-desktop {
  display: flex;
}

.header__nav-mobile {
  display: none;
}

.nav__link {
  transition: 0.3s ease;
}
.nav__link:hover,
.nav__link-active {
  color: var(--primary);
}

.nav__link-active {
  position: relative;
}
.nav__link-active:after {
  position: absolute;
  bottom: -50%;
  content: "";
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  background-color: var(--primary);
}
/* navbar end */

/* home page start */
@media screen and (min-width: 600px) {
  .home__slider-container,
  .home__slider-container ul,
  .home__slider-container li,
  .home__slider-container .uk-panel {
    height: 60vh;
  }
}
.home__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.home__steps .home__step:first-child {
  padding-left: 30px;
}
.home__steps .home__step {
  border: 1px solid rgb(238 238 238);
  padding: 18px 10px 18px 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
}
.home__steps .home__step::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid var(--lightgray);
  display: inline-block;
  right: -50px;
}
.home__steps .home__step:last-child::after {
  padding-left: 30px;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 43px solid transparent;
  border-bottom: 43px solid transparent;
  border-left: 43px solid transparent;
  display: inline-block;
  right: -43px;
}

.icon-primary {
  color: var(--primary);
}
/* home end */

/* about start */
.about__company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.about__company img {
  /* max-width: 500px; */
  border-radius: 4px;
}
.about__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__values span {
  color: var(--primary);
  margin-right: 10px;
}
/* about end */

/* services start */
.service-card-horizontal {
  display: flex;
  align-items: center;
  border: 1px solid var(--lightgray);
  height: 200px;
  width: 100%;
  margin-bottom: 50px;
  overflow: hidden;
}
.service-card-horizontal > div:nth-child(1) {
  width: 30%;
}
.service-card-horizontal > div:nth-child(2) {
  width: 60%;
  padding-left: 5%;
}
.service-card-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}
.contact__map,
.contact__map iframe {
  width: 100%;
}

footer {
  border-top: 1px solid rgba(238, 238, 238, 0.69);
}
