@font-face {
  font-family: Nomark;
  src: url('/fonts/Nomark.otf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
body {
  overflow-x: hidden;
}
.form-group {
  margin-top: 1rem;
}

.centered {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.centered-text {
  text-align: center;
}

.breaker {
  margin-top: 3rem;
}

/* !back to top  */
:root {
  --prgc-main: hwb(155 0% 36%);
  --prgc-arrow: var(--dark);
  --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  */

.background {
  height: 95vh;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner {
  background-image: url('/img/home.jpg');
}
.about {
  background-image: url('https://images.pexels.com/photos/8853502/pexels-photo-8853502.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}
.contact {
  background-image: url('https://images.pexels.com/photos/6720530/pexels-photo-6720530.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.services {
  background-image: url('https://images.pexels.com/photos/6720526/pexels-photo-6720526.jpeg');
}

/* | 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: var(--light);
  /* 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;
  width: 350px;
}

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: 99vw;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}
.nav-links li a {
  color: var(--light);
  text-decoration: none;
  margin: 0 0.7vw;
}

.nav-links li {
  position: relative;
  width: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.nav-links li a:hover::before {
  width: 80%;
}

.nav-links label {
  color: var(--light);
}
.nav-links label ul li {
  color: var(--light);
}

.desktop-link li a {
  list-style: none;
}

.nav-link {
  margin: 0 0.7rem;
  position: relative;
}

.nav-link::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.scrolling-active .nav-link::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  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: var(--dark);
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger {
  display: none;
}

.scrolling-active .nav-link {
  color: var(--dark);
}

.scrolling-active {
  background-color: var(--light);
  color: var(--dark);
  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: 95vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

a {
  text-decoration: none;
}

.overlay {
  width: 100%;
  height: 95vh;
  background: linear-gradient(#2e2e2ea8, rgba(0, 0, 0, 0.664));
  /* background: linear-gradient(#00000083, rgba(0, 0, 0, 0.664)); */
  position: absolute;
  top: 0;
}

.content {
  width: 60%;
  margin: 120px auto 0;
  text-align: center;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.ft {
  font-family: 'Nomark';
  color: var(--light);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.lead {
  /* font-size: 1.25rem; */
  font-weight: 300;
}
.lead2 {
  /* font-size: 1.25rem; */
  font-weight: 400;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-6 {
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1.1;
}
.content .other {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 300;
  line-height: 40px;
  font-size: 60px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.content .other span {
  width: 80%;
  margin: 20px auto 100px;
  font-weight: 300;
  line-height: 40px;
  font-size: 60px;
  color: var(--light);
}
.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;

  background: var(--blue);
  color: white;
  cursor: pointer;
  transition: background 0.5s;
}

.standard2 {
  width: 100px;
  padding: 10px 10px;
  text-align: center;
  margin: 0 10px;
  border-radius: 25px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: white;
  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: var(--dark);
  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 var(--blue);
  background: var(--blue);
  color: var(--light);
}
.standard2:hover {
  border: 1px solid #daa520;
  /* background: transparent; */
  color: whitesmoke;
}
.intro-btn2 {
  border: 1px solid var(--blue);
  background: transparent;
}
.intro-btn2:hover {
  border: 1px solid var(--blue);
  background: var(--blue);
}

.content a {
  text-decoration: none;
}

li a.desktop-link {
  display: none;
}
li a.desktop-link:hover {
  background-color: rgba(0, 0, 0, 0.726);
}

input[type='checkbox'] {
  display: none;
}

/* | Navigation End*/

.logo-bg img {
  width: 450px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.logo-tp {
  width: 250px;
  height: auto;
  margin: 12px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/*Styling logo*/
.logo {
  width: 200px;
  padding: 5px;
}
.logo img {
  width: 150px;
  margin: 10px;
  padding: 5px;
}

.up-down-3rem {
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.up-down-6rem {
  width: 100%;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.container90 {
  width: 90%;
}

.col-2 {
  width: 50%;
  padding: 20px;
}
.col-3 {
  width: 30%;
}

.col-4 {
  width: 20%;
}

.col-2 img {
  width: 100%;
}
.col-2 .back-layer {
  width: 100%;
  background-color: var(--light);
}

/* styledBG */
.left-side {
  width: 50%;
  height: 390px;
  max-width: 350px;
  min-width: 250px;
  background-color: var(--dark);
  /* background-color: #36454f; */
  border-radius: 8px;
}

.right {
  width: 50%;
  height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -170px;
  padding: 10px;
}

.side-text {
  font-size: 65px;
  white-space: nowrap;
  margin: 300px 200px 0px 50px;
  transform: rotate(-90deg);
  color: var(--blue);
  font-family: 'Nomark';
  font-weight: 800;
}
.home-side-text {
  font-size: 50px;
  white-space: nowrap;
  margin: 315px 180px 0px 50px;
  transform: rotate(-90deg);
  color: var(--blue);
  font-family: 'Nomark';
  font-weight: 800;
}
.right img {
  height: auto;
  min-width: 300px;
  box-shadow: 3px 5px 8px rgba(87, 87, 87, 0.685);
}
.intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
} /* ************************ */
.left2 {
  width: 80%;
  height: 360px;
  max-width: 350px;
  min-width: 250px;
  /* background-color: #36454f8e; */
  background-color: var(--dark);
  border-radius: 8px;
}

.right2 {
  width: 95%;
  height: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -320px;
  padding: 10px;
}
.about-side-text {
  color: var(--blue);
  font-size: 48px;
  white-space: nowrap;
  margin: 210px 260px 0px -20px;
  transform: rotate(-90deg);
  text-shadow: 0px 2px 8px #0c0d0f;
  color: var(--blue);
  font-family: 'Nomark';
  font-weight: 800;
}
.personal-side-text {
  color: white;
  font-size: 48px;
  white-space: nowrap;
  text-shadow: 0px 1px 6px #1314188a;
  margin: 338px 180px 0px 50px;
  transform: rotate(-90deg);
  color: var(--blue);
  font-family: 'Nomark';
  font-weight: 800;
}
.side-text2 {
  font-size: 44px;
  white-space: nowrap;
  margin: 25px 265px 0px -15px;
  transform: rotate(-90deg);
  text-shadow: 0px 1px 6px #131418;
  color: var(--blue);
  font-family: 'Nomark';
  font-weight: 800;
}
.right2 img {
  height: auto;
  min-width: 300px;
  box-shadow: 3px 5px 8px rgba(87, 87, 87, 0.685);
}
.intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* styledBG */
/* ****************** */
.title-border {
  width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--dark);
}
.border-line {
  width: 100px;

  margin-top: 2em;
  margin-bottom: 2em;
  border-bottom: 2px solid var(--dark);
}

/* !home Page*/
.m-icon {
  font-size: 20px;
  margin: 5px;
  color: #ffffff;
}
.icon {
  font-size: 40px;
  margin: 20px;
  color: #36454f;
}

.sub-heading {
  color: var(--dark);
  font-weight: 500;
}
/* !home Page End*/

/* ! vacancie Page */

/* ! 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: 100%;
  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 select,
.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 .double-form select,
.form-container .double-form option {
  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(--dark);
  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;
}
input[id='submit'],
button[id='submit'] {
  position: relative;
  padding: 10px 16px;
  background: var(--dark);
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  margin-top: 1.5rem;
}
input[id='submit']:active,
button[id='submit']:active {
  background: var(--dark);
  border-radius: 2px;
}

.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 */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}
.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*/

/* | Footer */
footer {
  width: 100%;
  padding: 30px 10px 20px 10px;
  background-color: var(--light);
  color: var(--dark);
}
.social-wrapper {
  width: 100%;
}

.social-deck {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8em;
  justify-content: space-evenly;
}
.social-icon {
  height: 40px;
  width: 40px;
  filter: grayscale(100%);
}
.social-icon:hover {
  height: 42px;
  filter: grayscale(00%);
  cursor: pointer;
}
footer a {
  text-decoration: none;
  color: rgb(110, 110, 110);
  margin-bottom: 2%;
}
footer a:hover {
  text-decoration: none;
  color: rgb(15, 15, 15);
  margin-bottom: 2%;
}
.developer {
  font-size: small;
}

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) {
  .col-2,
  .col-3,
  .col-4 {
    width: 100%;
    padding: 3px;
    margin-bottom: 2rem;
  }
  .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: var(--dark);
    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: #1e4366;
    /* 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;
  }

  .law-service {
    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: var(--dark);
  }
  .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: var(--dark);
  }
  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: #1e4366;
    /* 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: var(--light);
  }

  .vma-item {
    width: 90%;
  }

  /* | Navigation End*/
  .footer-col {
    color: var(--dark);
    width: 95%;
  }

  .service-item,
  .switch-1,
  .switch-2 {
    width: 100%;
  }
  .service-container {
    width: 95%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .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;
  }
}
@media (min-width: 250px) {
  .container {
    max-width: 340px;
  }

  .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-4 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .display-6 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .display-4 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .display-6 {
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.1;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.icon-con {
  font-size: 25px;
  color: var(--dark);
  padding: 15px;
}

.project-card {
  width: 100%;
}
