* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
.form-group {
  margin-top: 1rem;
}

.heading-title {
  text-align: center;
  padding-bottom: 10px;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.breaker {
  margin-top: 3rem;
}
.motto {
  width: 100%;
  height: auto;
  background-color: #131418e0;
  color: white;
  text-align: center;
}
.center-piece {
  width: 85%;
  padding: 15px;
}
/* !back to top  */
:root {
  --prgc-main: hsl(155, 100%, 32%);
  --prgc-arrow: #00a15e;
  --prgc-arrow2: rgb(128, 128, 128);
  --prgc-line: rgb(128 128 128 / 30%);
}
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 80px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--prgc-line);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "🡡";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--prgc-main);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  content: "🡡";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  opacity: 0;
  background-image: linear-gradient(
    298deg,
    var(--prgc-arrow),
    var(--prgc-arrow2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--prgc-main);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
/* !back to top End  */

/* !cv submit button  */

.btn__text {
  font: bold;
  color: white;
  transition: all 0.2s;
}

/* !cv submit button End */
.banner {
  background-image: url("/images/header.jpeg");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: table;
}
.vacancies-banner {
  background-image: url("/images/front.jpeg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-banner {
  background-image: url("/images/door.jpeg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-banner {
  background-image: url("/images/rabusinesscard.jpg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.application-banner {
  background-image: url("/images/document.jpeg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.litigation-banner {
  background-image: url("/images/books.jpg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.conveyance-banner {
  background-image: url("/images/property.jpg");
  height: 100vh;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.submit-deck {
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.submit-deck h2 {
  margin-bottom: 2rem;
}

/* | Navigation */
nav {
  height: 4.5rem;
  width: 100vw;
  transition: background-color 0.5s ease;
  display: flex;
  position: fixed;
  z-index: 10;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

li a {
  color: #fff;
}

li:hover,
li:focus-within {
  cursor: pointer;
}

li:focus-within a {
  outline: none;
}

ul li ul {
  text-align: center;
  background: #131418;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
  display: none;
}
ul li ul li {
  padding-top: 10px;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width: 100%;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  width: 88vw;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}
.desktop-link li a {
  list-style: none;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  margin: 0 0.7vw;
}

.nav-links li {
  position: relative;
}

.nav-links li a:hover::before {
  width: 80%;
}

.nav-link {
  margin: 0 0.7rem;
  position: relative;
  /* justify-content: space-between; */
}

.nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger {
  display: none;
}

.scrolling-active {
  background-color: #131418;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
/* | Navigation End*/

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

a {
  text-decoration: none;
}

.overlay {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  position: absolute;
  top: 0;
}
.overlay2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  /* position: absolute; */
  top: 0;
}

.content {
  width: 60%;
  margin: 160px auto 0;
  text-align: center;
  color: #fff;
}

.content h1 {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 200;
  line-height: 40px;
  font-size: 50px;
}
.content .other {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 300;
  line-height: 40px;
  font-size: 60px;
}
.content .other span {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 300;
  line-height: 40px;
  font-size: 60px;
  color: #00a15e;
}
.content h2 {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 200;
  line-height: 40px;
  font-size: 30px;
}

.standard {
  width: 100px;
  padding: 10px 10px;
  text-align: center;
  margin: 0 10px;
  border-radius: 25px;
  border: 1px solid #00a15e;
  background: #00a15e;
  color: #fff;
  cursor: pointer;
  transition: background 0.5s;
}
.standard2 {
  width: 100px;
  padding: 10px 10px;
  text-align: center;
  margin: 0 10px;
  border-radius: 25px;
  border: 1px solid #00a15e;
  background: #00a15e;
  color: black;
  cursor: pointer;
  transition: background 0.5s;
}
.intro-btn {
  width: 100px;
  padding: 10px 45px;
  text-align: center;
  margin-top: 30px;
  border-radius: 5px;
  font-weight: bold;
  background: #00a15e;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.intro-btn:hover {
  background: rgb(254, 114, 80);
  background: linear-gradient(
    0deg,
    rgba(254, 114, 80, 1) 20%,
    rgba(247, 149, 124, 1) 63%
  );
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.336);
}

.standard:hover {
  border: 1px solid #fff;
  background: transparent;
}
.standard2:hover {
  border: 1px solid #fff;
  /* background: transparent; */
  color: black;
}
.intro-btn2 {
  border: 1px solid #fff;
  background: transparent;
}
.intro-btn2:hover {
  border: 1px solid #00a15e;
  background: #00a15e;
}

.content a {
  text-decoration: none;
}
.serviceDeck a {
  text-decoration: none;
}

/* | intro deck */
.intro-deck h2 {
  text-align: center;
  margin-bottom: 4%;
  font-size: 30px;
}
.intro-deck {
  padding-top: 5%;
  padding-bottom: 5%;
}

/* | intro deck End */

li a.desktop-link {
  display: none;
}
li a.desktop-link:hover {
  background-color: rgba(0, 0, 0, 0.726);
}

input[type="checkbox"] {
  display: none;
}
.nav-links label {
  color: white;
}
.nav-links label ul li {
  color: white;
}

/* | Navigation End*/

.logo-bg img {
  width: 200px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.logo-sm img {
  width: 60px;
  height: auto;
  margin: 12px;
}
/*Styling logo*/
.logo {
  padding: 1vh 1vw;
  text-align: center;
}

/* | intro deck */
.intro-deck h2 {
  text-align: center;
  margin-bottom: 4%;
  font-size: 30px;
}
.intro-deck {
  padding-top: 10%;
  padding-bottom: 5%;
}
.practice-container {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.law-service {
  max-width: 300px;
}
.law-service2 {
  max-width: 90%;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.law-service img {
  height: 100px;
  margin: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.law-service .law-info {
  padding: 5px;
  text-align: center;
}
.law-service .law-info h4 {
  margin-top: 10px;
  margin-bottom: 15px;
}
.law-service .law-info ul {
  /* text-align: left; */
  margin-top: 10px;
  margin-left: 5px;
}
/* | intro deck End */

/* | conveyancing deck */
.conveyancing {
  width: 100%;
  padding: 5%;
}
.conveyancing-description {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}
.conveyancing-img {
  width: 50%;
}
.conveyancing-info {
  font-size: 19px;
  width: 50%;
}
.conveyance {
  list-style-type: disc;
}

.conveyance ul li {
  list-style: disc;
  margin-left: 20px;
  font-size: 18px;
}
.conveyencing-list {
  padding: 10px;
  width: 50%;
}
.conveyancing-img .convey {
  width: 90%;
  margin: 5px;
}
.conveyancing-info h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* | conveyancing deck End */

/* ! Service Page */
.services-intro h2 {
  text-align: center;
  margin-bottom: 2%;
  font-size: 35px;
}
.services-intro {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.service-container {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* background-color: aqua; */
}

.service-item,
.switch-1,
.switch-2 {
  width: 50%;
}
.service-item img {
  width: 100%;
}
.notarial {
  margin: 20px;
  font-size: 22px;
  line-height: 30px;
}
.notarial ul li {
  line-height: 28px;
}
.notarial h4 {
  margin-bottom: 2%;
}
.border-line {
  width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid #00a15e;
}

.service-switch {
  margin-top: 5em;
  margin-bottom: 5em;
}
.switch-1 {
  float: right;
  padding-left: 30px;
}
.switch-2 img {
  width: 98%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* float: left; */
}
/* ! Service Page End*/

/* ! vacancie Page */
.vacancy-deck {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.collapsible {
  border: 1px solid rgba(128, 128, 128, 0.089);
  background-color: rgba(85, 85, 85, 0);
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;

  text-align: left;
  outline: none;
  font-size: 15px;
}

.active,
.collapsible:hover {
  background-color: rgba(85, 85, 85, 0.075);
}

.dropContent ul {
  margin-bottom: 10px;
}
.dropContent ul li {
  font-weight: 200;
  list-style: disc;
}
.dropContent span {
  color: black;
  font-weight: bold;
}

.apply h2,
.dropContent p,
.dropContent h3,
.dropContent h4 {
  margin-bottom: 15px;
}
.ref span {
  color: rgb(184, 184, 184);
}
.dropContent {
  padding: 30px 18px;
  display: none;
  overflow: hidden;
  text-align: left;
  background-color: #f1f1f100;
}
.apply {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sub-container {
  width: 100%;
  height: auto;
  padding: 20px;
  color: white;
}
.text-heading {
  font-size: x-large;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: black;
}
.submit-body {
  background-color: rgb(48, 47, 47);
}
.cv-submit {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ! vacancie Page End*/

/* ! 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: #00b2b0;
  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: #009579;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1.5rem;
}
button[id="submit"]:active {
  position: relative;
  padding: 8px 16px;
  background: #01c29e;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}

.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;
}
/* ! contact Page End*/
/* ! About Page */
.about-container {
  padding-top: 4rem;
}
.about-container h2 {
  text-align: center;
  padding-bottom: 10px;
}
.border-line3 {
  border-bottom: 1px solid #00a15e;
  width: 150px;
  margin-bottom: 4rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.border-line4 {
  border-bottom: 1px solid #00a15e;
  width: 150px;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.about-wrapper {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-evenly;
  padding-bottom: 4rem;
}
.company-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.company-image {
  width: 45%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.company-info {
  width: 45%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1em;
}

.vma-item h3 {
  text-align: center;
  margin-bottom: 15px;
}
.vma-item {
  width: 30%;
}

.meet-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.meet-wrapper h2 {
  text-align: center;
}
.meet-wrapper h4 {
  text-align: center;
  color: grey;
  margin-top: 5px;
  margin-bottom: 3rem;
  font-size: 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}

.employee {
  min-width: 250px;
  width: 45%;
  padding: 20px;
}

.employee-info {
  min-width: 250px;
  width: 50%;
  padding: 20px;
}

.specialties {
  padding: 5px;
  justify-content: space-evenly;
}

.specialties ul li {
  list-style: disc;
  margin-left: 20px;
}
.specialties h3 {
  margin-bottom: 5px;
  text-align: center;
}
.specialties-list {
  width: 40%;
  padding: 15px;
}

.employee-info ul li {
  list-style: disc;
}
.vacancy-deck ul li {
  list-style: disc;
  margin-left: 20px;
}
.employee-image {
  width: 100%;
  border-radius: 20% 15% 20% 85%;
}
.employee h2 {
  font-size: 25px;
  text-align: left;
}
.employee p {
  font-size: 18px;
}
.news-container {
  background-image: url("https://scontent-jnb1-1.xx.fbcdn.net/v/t39.30808-6/fr/cp0/e15/q65/243127612_104501028667526_7674605774185228209_n.jpg?_nc_cat=105&ccb=1-5&_nc_sid=0be424&efg=eyJpIjoidCJ9&_nc_eui2=AeFdEgCRoTqaabdFmzjEK37N2Xsp8CFVD_3ZeynwIVUP_f3RnBrRyhnTgwI097_JqSM&_nc_ohc=yORxDIVtROIAX-LlcH8&_nc_ht=scontent-jnb1-1.xx&oh=3643eeef5170469fe5d9942a3587bb34&oe=6156F0CC");
}
.news-letter h2 {
  margin-bottom: 2%;
}
.news-letter {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 5%;
  padding-bottom: 5%;
  font-size: 25px;
  color: white;
  text-shadow: 0.5px 1px 4px black;
}
.sub-input {
  width: 50%;
}
/* ! About Page End*/
/* ! Litigation Page */
.info-top {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: center;
}
/* ! Litigation Page End*/

/* | Footer */
.footer {
  width: 100%;
  padding: 20px;
  background: #131418;
  color: #f2f5f7;
  text-align: center;
}
.social-wrapper {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.border-line2 {
  width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #00a15e;
}
.social-deck {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
  justify-content: space-around;
}
.social-icon {
  height: 60px;
  filter: grayscale(100%);
}
.social-icon:hover {
  height: 60px;
  filter: grayscale(00%);
  cursor: pointer;
}
.footer a {
  text-decoration: none;
  color: rgb(141, 141, 141);
  margin-bottom: 2%;
}
.footer a:hover {
  text-decoration: none;
  color: whitesmoke;
  margin-bottom: 2%;
}
.footer-container {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
}
.developer {
  font-size: small;
}
.footer-col {
  color: white;
  width: 33.333%;
  text-align: center;
}
.footer-col h4 {
  margin-bottom: 5px;
}

ul li {
  text-decoration: none;
  list-style: none;
  line-height: 22px;
}
/* | Footer End*/
.result-container {
  background-image: url("https://scontent-jnb1-1.xx.fbcdn.net/v/t39.30808-6/fr/cp0/e15/q65/243121164_104422882008674_4604228356694126874_n.jpg?_nc_cat=108&ccb=1-5&_nc_sid=0be424&efg=eyJpIjoidCJ9&_nc_eui2=AeF2CiL4BGhf5q29SHt1Pyv_DlXZJfl3broOVdkl-XduukBOcApANsQBU8xTmnBHBG8&_nc_ohc=QckXcvPq1NoAX9_zGlJ&_nc_ht=scontent-jnb1-1.xx&oh=3fdd7e8f3a131a191b4db035fb078e64&oe=6157C26B");
  height: 100vh;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8px;
  border-radius: 4px;
}
.result-page {
  background-color: rgba(12, 12, 12, 0.856);
  color: white;
  text-align: center;
  width: 50%;
  height: 70vh;
  display: block;
  margin-top: 10%;
  margin-right: auto;
  margin-left: auto;
}

.result-page h1 {
  padding-top: 10%;
  padding-bottom: 10%;
}
.result-page button {
  margin-top: 10%;
  padding: 10px 5px;
  border-radius: 2px;
  border: none;
}

.alert {
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #79c879;
  color: white;
  margin-bottom: 10px;
  display: none;
}
/*Styling for small screens*/
@media screen and (max-width: 800px) {
  .result-page {
    background-color: rgba(12, 12, 12, 0.856);
    color: white;
    text-align: center;
    width: 90%;
    height: 70vh;
    display: block;
    margin-top: 5%;
    margin-right: auto;
    margin-left: auto;
    padding: 5px;
    border-radius: 4px;
  }
  .content h1 {
    font-size: 25px;
  }
  .content h1 span {
    color: #00a15e;
    font-size: 25px;
  }
  nav {
    position: fixed;
    z-index: 3;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }
  .nav-links {
    position: fixed;
    background: #131418;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  li.fade {
    opacity: 1;
  }
  .content {
    width: 95%;
  }

  .practice-container {
    width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .practice-row {
    margin: 0;
  }
  .law-service {
    /* background-color: aqua; */
    max-width: 350px;
    padding: 10px;
    margin-bottom: 20px;
  }
  .conveyancing-img {
    width: 95%;
  }
  .conveyancing-info {
    font-size: 20px;
    width: 95%;
  }

  .sub-container {
    width: 100%;
    height: auto;
    padding: 5px;
    color: white;
  }
  .cv-submit {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /* | Navigation */
  .content .other {
    width: 80%;
    margin: 20px auto 100px;
    font-weight: 300;
    line-height: 40px;
    font-size: 45px;
  }
  .content .other span {
    width: 80%;
    margin: 20px auto 100px;
    font-weight: 300;
    line-height: 40px;
    font-size: 45px;
    color: #00a15e;
  }
  nav {
    position: fixed;
    z-index: 3;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }
  .nav-links {
    position: fixed;
    background: #131418;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  li.fade {
    opacity: 1;
  }

  li a.desktop-link {
    display: none;
    list-style: none;
  }

  nav ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  nav #show-features:checked ~ ul,
  nav #show-services:checked ~ ul,
  nav #show-items:checked ~ ul {
    max-height: 100vh;
    /*   list-style: none; */
  }

  nav input[type="checkbox"] {
    display: none;
  }

  wrapper #show-menu:checked ~ .menu-icon i::before {
    content: "";
  }

  .nav-links label {
    color: white;
  }

  .vma-item {
    width: 90%;
  }

  /* | Navigation End*/
  .footer-col {
    color: white;
    width: 95%;
  }

  .service-item,
  .switch-1,
  .switch-2 {
    width: 100%;
  }
  .service-container {
    width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* background-color: aqua; */
  }

  .notarial h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .contact-wrapper .form-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #ffff;
  }
  .contact-wrapper .map {
    width: 100%;
    height: 250px;
  }
  .map h3 {
    text-align: center;
    margin-bottom: 30px;
  }
  .container h3 {
    margin-top: 100px;
    margin-bottom: 30px;
  }
  .social-wrapper {
    width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .company-image {
    width: 95%;
  }
  .company-info {
    width: 95%;
  }

  /* ! About Page */
  .employee {
    min-width: 250px;
    width: 90%;
    padding: 10px;
  }
  .employee-info {
    min-width: 250px;
    width: 90%;
    padding: 10px;
  }
  .specialties-list {
    width: 90%;
    padding: 10px;
  }
  /* ! About Page End*/
  /* ! Litigation Info */
  .litigation-info {
    width: 90%;
    padding: 10px;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .info-top h2 {
    margin-bottom: 10px;
  }

  .litigation-info ul li {
    list-style: disc;
    margin-left: 5px;
  }

  /* ! Litigation Info End*/

  /* ! Conveyancing Page */
  .conveyancing-description {
    width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }

  .conveyencing-list {
    width: 90%;
    padding: 10px;
  }
  .conveyencing-list ul li {
    width: 90%;
    margin-bottom: 5px;
  }
  /* ! Conveyancing Page End*/

  .progress-wrap:hover::after {
    opacity: 0;
  }
  .progress-wrap::before {
    position: absolute;
    content: "🡡";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    opacity: 0;
    background-image: linear-gradient(
      298deg,
      var(--prgc-arrow),
      var(--prgc-arrow2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
}
