/* @font-face {
  font-family: 'Visual Hollow Script';
  font-weight: lighter;
  src: url('/fonts/Visual Hollow Script.ttf');
} */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
}
.circle {
  background-color: rgba(0, 255, 255, 0.137);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  justify-content: center;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
}
.circle img{
  width: 70px;
}

.breaker{
  margin-bottom: 4rem;
  
}
h1 {
  font-weight: 100;
  font-size: 4em;
  margin-top: 0.47em;
  margin-bottom: 0.37em;
}

h2 {
  font-weight: bold;
  font-size: 2em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}

h3 {
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
}
h4 {
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  font-weight: bold;
}
h5 {
  font-weight: bold;
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
h6 {
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  font-weight: bold;
}

.col-2 p,
p {
  color: #343a40;
}

/*Styling logo*/
.logo {
  height: 120px;
  /* padding: 1vh 1vw; */
  text-align: center;
  color: white;
}
.logo img {
  display: block;
  margin: 5px;
  height: 50px;
  width: auto;
}

/***********************************************/
/* | Universal Code */
/***********************************************/
.container100 {
  width: 100%;
}
.container90 {
  width: 90%;
}
.container90 p {
  font-size: 18px;
    color: #343a40;
}
.container80 {
  width: 80%;
}
.container70 {
  width: 70%;
}
.container60 {
  width: 60%;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.centered1 {
  display: grid;
  justify-content: center;
}
.centered2 {
  display: block;
  justify-items: center;
}

.column-2 {
  width: 45%;
}
.column-2 p {
  font-size: 18px;
}
.column-2 ul {
  color: #343a40;
  margin: 15px 0px 15px 15px;
  font-size: 16px;
}
.column-2 ul li {
  margin: 0px 0px 7px 15px;
  font-size: 16px;
}
.column-2 img {
  width: 100%;
}
.col-4 {
  margin-top: 2rem;
  width: 25%;
  padding: 5px;
}
.resolve .col-3 {
  width: 30%;
  padding: 35px;
}
.provider .col-4 {
  margin-top: 2rem;
  width: 25%;
  padding: 3px;
}

.hov-btn {
  margin-top: 18px;
  background-color: var(--cyan);
  border-radius: 15px;
  width: 70px;
  padding: 7px;
  color: white;
  display: flex;
  flex-wrap: nowrap;
  transition: 0.3s all ease-in-out;
}
.hov-btn:hover {
  width: 180px;
}
.hov-hide {
  display: none;
}
.hov-btn:hover span {
  display: block;
}

.centered-text {
  text-align: center;
}
.sub-heading {
  font-size: 28px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.justify {
  justify-content: space-evenly;
}
.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}
.up-down-1rem {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.up-down-2rem {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.up-down-3rem {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.up-down-4rem {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.devider {
  margin-top: 3rem;
}
.title-devider {
  margin-top: 1rem;
}
.title-bottom-border {
  width: 150px;
  margin-top: 4px;
  border-bottom: 2px solid cornflowerblue;
}
.background {
  width: 100%;
  height: 100vh;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.486);
  height: 100%;
}
.mid-section {
  width: 100%;
  padding: 20px;
  max-width: 1550px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.developer {
  text-align: center;
  color: #343a40;
}
.developer a {
  text-decoration: none;
  color: #343a40;
}
.developer a:hover {
  color: rgb(226, 0, 0);
}
.first-section {
  color: white;
  text-align: center;
  padding: 9% 0px 0px 0px;
}
.first-section2 {
  color: white;
  text-align: center;
  padding: 5% 0px 0px 0px;
}
.first-section p {
  font-size: 25px;
  margin-top: 5px;
}
.first-section2 h1 {
  color: white;
  text-align: center;
  padding: 200px 0px 0px 0px;
}
.first-section2 p {
  font-size: 25px;
  margin-top: 10px;
}
.col-1 p {
  font-size: 20px;
  margin-top: 5px;
}
.container80 p {
  color: #343a40;
}
.actions {
  width: 350px;
  margin: 50px 0 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.actions a {
  text-decoration: none;
}

.action-button1,
.action-button2 {
  text-align: center;
  color: aliceblue;
  border: aliceblue 1px solid;
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
  justify-content: space-between;
}
.action-button1:hover,
.action-button2:hover {
  background: rgba(210, 70, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(210, 70, 0, 0) 0%,
    rgba(242, 242, 241, 0.534) 100%
  );
  border: rgba(240, 248, 255, 0.541) 1px solid;
}
/* !! scroll */
section {
  width: 100%;
  height: 100%;
}
section::after {
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 80%;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.demoshow {
  margin-top: 90px;
}

.demoshow a {
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.demoshow a:hover {
  opacity: 0.5;
}

#section03 a {
  padding-top: 60px;
}
#section03 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 1px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
}
#section03 a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: ease-in-out 2s;
  box-sizing: border-box;
}
#section03 a span::before {
  position: absolute;
  transition: ease-in-out 1s;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb03 3s infinite;
  animation: sdb03 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* !! scroll End */
/***********************************************/
/***********************************************/
/* heros */
/***********************************************/
/* index */
.index {
  background-image: url('/img/johannesburg.jpg');
}

.about {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1484&q=80');
}

.aarto {
  background-image: url('https://lowvelder.co.za/wp-content/uploads/sites/44/2019/12/sec-341.jpg');
}

.fines {
  background-image: url('https://krugersdorpnews.co.za/wp-content/uploads/sites/2/2020/08/Traffic-3.jpg');
}

.services {
  background-image: url('https://mybroadband.co.za/news/wp-content/uploads/2020/06/Car-vehicle-licence-disc-Western-Cape-government-Jennifer-Solomons-places-sticker-on-windscreen.jpg');
}

.contact {
  background-image: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2071&q=80');
}
/***********************************************/
/***********************************************/
/* footer */
footer {
  background-color: rgb(243, 243, 243);
}
footer .icon {
  width: 50px;
  margin-bottom: -20px;
}
footer .icon2 {
  width: 30px;
  margin-bottom: -10px;
}
footer h4 {
  text-align: left;
}
footer .col-4 {
  width: 22%;
  padding: 2px;
  background-color: #28a74600;
}
footer ul li {
  /* margin: 10px; */
  padding: 2px;
  list-style: none;
}
footer ul li a {
  text-decoration: none;
  color: #8a8989;
}
footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/***********************************************/
/***********************************************/
/* fines page */
/***********************************************/
.card-row {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 2px 2px 4px 0.5px #343a406e;
  border-radius: 10px;
}
.card-row .column-2 {
  width: 50%;
}
.card-row .column-2 ul li {
  font-size: 16px;
  margin-left: 20px;
}
.card-row h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.card-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}

/***********************************************/
/***********************************************/
/* About Us Page */
/***********************************************/
.why-us li {
  line-height: 28px;
}
/***********************************************/
/***********************************************/
/* Service Page */
/***********************************************/
.herd {
  width: 200px;
  border-bottom: 2px solid red;
}
.type-card {
  width: 250px;
  margin: 10px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #4b4b4b17;
  box-shadow: 1px 2px 2px #4b4b4b93;
  transition: all 0.2s ease-in-out;
}
.type-card:hover {
  background-color: red;
  color: white;
  transition: all 0.2s ease-in-out;
}
.type-card:hover p {
  color: white;
}
.type-card p {
  font-size: 15px;
}

/***********************************************/
/***********************************************/
/* contact-form */
/***********************************************/

/* ! Contact Page */
.contact-container h2 {
  text-align: center;
  margin-top: 4rem;
}
.contact-wrapper {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
}
.form-container {
  padding: 15px;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  background-color: #ffff;
}
.map {
  padding: 15px;
  width: 50%;
}
.company-map {
  width: 100%;
  height: 100%;
}

form {
  width: 70%;
  padding: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-container .single-form {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}
.form-container .single-form input,
.form-container .single-form textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 0.11px solid grey;
  border-radius: 4px;
}

.form-container .single-form input:focus + label,
.form-container .single-form input:valid + label,
.form-container .single-form textarea:focus + label,
.form-container .single-form textarea:valid + label {
  color: var(--prgc-main);
  font-size: 0.9rem;
  font-weight: bold;
  top: -10px;
}

.form-container .single-form input:focus + label:after,
.form-container .single-form input:valid + label:after,
.form-container .single-form textarea:focus + label:after,
.form-container .single-form textarea:valid + label:after {
  content: ':';
}
.form-container .single-form textarea {
  height: 120px;
}

.form-container label {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #777;
  font-size: 0.9rem;
  background: #fff;
  transition: ease-in-out 0.2s;
}

button[id='submit'] {
  position: relative;
  padding: 8px 16px;
  background: var(--cyan);
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1.5rem;
}
button[id='submit']:active {
  position: relative;
  padding: 8px 16px;
  background: red;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}
.btn__text {
  font: bold;
  color: white;
  transition: all 0.2s;
}
.file-upload {
  background-color: F5F5F5;
  border: 0.11px solid rgb(161, 161, 161);
  border-radius: 4px;
  margin: -0.5px;
  width: 100%;
  color: black;
}
.form-control {
  color: black;
  width: 100%;
  border: 0.11px solid grey;
}

.alert {
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--red);
  color: white;
  margin-bottom: 10px;
  display: none;
}
/* ! contact Page End*/
/***********************************************/
/***********************************************/
/* aarto page */
/***********************************************/
.aarto-card {
  width: 45%;
  max-width: 400px;
  margin: 10px;
  box-shadow: 1px 2px 8px 1px #4b4b4b36;
  border-radius: 10px 10px 10px 10px;
}

.aarto-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.aarto-card .bottom {
  padding: 20px;
  width: 100%;
  height: 50%;
}
.aarto-card .bottom,
.aarto-card .bottom ul,
.aarto-card .bottom p {
  color: grey;
}
.aarto-card .bottom ul {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 18px;
}
.aarto-card .bottom ul li {
  line-height: 22px;
  margin-left: 18px;
}
/***********************************************/
/***********************************************/
/* Responsive styling */
/***********************************************/
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*='col-'] {
    width: 100%;
  }
  [class*='column-'] {
    width: 100%;
  }
  .card-row {
    display: flex;
    flex-wrap: wrap;
  }
  .resolve .col-3 {
    width: 100%;
    padding: 5px;
    margin-top: 4rem;
  }
  .column-2 img {
    margin-top: 10px;
  }
  .provider .col-4 {
    margin-top: 2rem;
    width: 100%;
    padding: 2px;
  }
  .container90 {
    width: 100%;
  }
  .container90 p {
    font-size: 22px;
  }
  .container80 {
    width: 100%;
  }
  .container70 {
    width: 100%;
  }
  .container60 {
    width: 100%;
  }
  footer .col-4 {
    text-align: center;
    width: 100%;
    padding: 2px;
    background-color: #28a74600;
  }
  footer {
    padding: 10px;
  }
  footer .col-4 h4 {
    text-align: center;
  }
  .card-row .column-2 {
    width: 100%;
    margin-top: 5px;
  }
  .card-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 0px 10px 10px;
  }
  .card-row {
    margin-top: 20px;
  }
}
