body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

header {
  display: flex;
  border: 1px #949291;
  height: 60px;
  background-color: #fff;
  padding: 5px 0px;
  line-height: 50px;
  font-weight: 700;
  font-style: normal;
  align-items: center;
  justify-content: space-between;
}
header h1.scan {
  font-size: 2rem;
}
header .phone {
  background-color: #fff;
  font-size: 1.5em;
  padding: 10px;
}

.main-container {
  display: flex;
}
.main-container .content {
  position: relative;
  background-image: url("../abg-hensome2.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
}

nav {
  width: 20%;
}

.services {
  display: flex;
  height: 60%;
  justify-content: center;
  color: #fff;
  background: var(--bg-gradient);
}
.services .card {
  width: 30%;
  margin: 20px;
  border: #555 solid 1px;
}
.services .card .main-card {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
}
.services .card .main-card h2 {
  font-size: 1.2rem;
}
.services .card .main-card ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.services .card .main-card ul li {
  padding: 10px;
  display: block;
}
.services .card .main-card ul li span {
  padding: 0 0 0 5px;
}
.services .card .main-card p {
  align-self: center;
}
.services .card .main-card button {
  width: 150px;
  background-color: #069b26;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.footer {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 200px;
  border: 1px solid #555;
  background-color: #f1f1f1;
}
nav ul li {
  border-bottom: 1px solid #555;
  text-align: center;
}
nav ul li:last-child {
  border-bottom: none;
}
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 10px;
}
nav ul li a:hover {
  background-color: #555;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}

.motto {
  color: #555;
  font-weight: 700;
  font-size: 1.5em;
  position: absolute;
  margin: 260px 100px;
  padding: 10px;
  width: 300px;
}

:root {
  --bg-gradient: radial-gradient(circle at 74.11507924397786% 94.03727213541667%, #cec041 0%, 17.5%, rgba(34,35,35,0) 35%), radial-gradient(circle at 58.97912343343099% 66.87540690104167%, rgba(181, 129, 45, 0.61) 0%, 14.7%, rgba(22,87,217,0) 30%), radial-gradient(circle at 0.5939420064290365% 57.086690266927086%, rgba(223, 215, 126, 0.38) 0%, 7.9799999999999995%, rgba(22,87,217,0) 14%), radial-gradient(circle at 13.200607299804688% 9.217885335286459%, rgba(162,56,255,0.24) 0%, 16.5%, rgba(162,56,255,0) 55%), radial-gradient(circle at 100% 37.314453125%, rgba(186, 169, 83, 0.51) 0%, 9.36%, rgba(22,87,217,0) 18%), radial-gradient(circle at 78.61783345540364% 57.83340454101562%, rgba(162,56,255,0.65) 0%, 17.5%, rgba(162,56,255,0) 35%), radial-gradient(circle at 1.8846766153971355% 94.78581746419272%, #222323 0%, 8.6%, rgba(34,35,35,0) 20%), radial-gradient(circle at 48.9013671875% 49.521484375%, #000000 0%, 100%, rgba(0,0,0,0) 100%);
}

@media (max-width: 414px) {
  body {
    font-size: 10px;
  }
  .main-container {
    flex-direction: column;
  }
  .motto {
    margin: 180px 0px;
  }
  .footer {
    font-size: 0.5rem;
  }
}
@media (max-width: 414px) {
  .services {
    flex-direction: column;
  }
  .services .card {
    width: 90%;
    margin: 10x auto;
    padding: 5px;
  }
  .services .card .main-card h2 {
    font-size: 0.8rem;
  }
  .services .card .main-card button {
    width: 100px;
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */