@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


:root {
  --primarycolor: #DFA51C;
  --secondary-color: #FFC94A;
  --bgColor: #fefefe;
  --black: #1C1D20;
  --black-100: #f7f8f8;
  --black-600: #5c616d;
  --black-500: #727885;
  --black-300: #B7BAC2;
  --black-200: #D9DADE;
  --black-800: #41454b;
  --black-900: #393b41;
  --white: #fff;

  --figtree: "Figtree", sans-serif;
}

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS Reset */

body,
html {
  font-family: var(--figtree);
  background-color: var(--bgColor);
  color: var(--black);
  overflow-x: hidden;
}


/* Hide scrollbar for all browsers */
body {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}


h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left !important;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-500);
  line-height: 1.6;
  text-align: justify;
  padding-bottom: 1rem;
}

a {
  cursor: pointer;
  text-decoration: none;
}

@media only screen and (min-width: 1px) and (max-width: 991px) {
  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  h1 {
    font-size: 2.5rem;
  }

}

.header {
  padding: 0px 5%;
  background-color: var(--bgColor);
  height: 15vh;
  min-height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header .navbar .container-fluid {
  padding-right: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.navbar {
  width: 100%;

  li {
    padding: 10px;
  }

  li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black-600);
  }
}

.nav-item {
  display: flex;
  align-items: center;
}

.container-fluid {
  padding-left: 5%;
  padding-right: 5%;
}

.navbar .container-fluid {
  padding-left: 0;
}

.navbar-light .navbar-nav .nav-link.active {
  font-weight: 500;
  color: var(--black);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--black);
  /* font-weight: 500; */
}

.navbar-nav .nav-link {
  padding-right: 8px;
}

.navbar-brand img {
  height: 60px;
}

.fa-solid {
  font-size: 1.5rem;
}

.fa-circle {
  font-size: 6px;
  color: var(--secondary-color);
  /* padding-bottom: 14px; */
  padding-left: 2px;
}

.navbar-toggler {
  padding: 0;
}

.CTA {
  height: 44px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
  .left-menu {
    visibility: hidden;
    height: 0px;
    width: 0px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
  .header {
    height: auto;
  }
}

.navbar-nav {
  height: auto;
}

.modal-header {
  border: 0px;
}

.modal-content {
  background-color: var(--black);
  color: var(--white);
}

.btn-close {
  color: #B7BAC2;
  background-color: transparent !important;
}

.modal-body img {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.modal-body p,
h4,
h6 {
  text-align: center;
  margin: 10px 0;
}

.modal-body div a {
  text-decoration: none;
  color: var(--white);
}

.hero {
  margin: 0 5%;
  position: relative;
  z-index: 1;
  height: 100vh;
}

.hero-content {
  padding: 0;
  height: 100vh;
  width: 100%;
}

.hero .hero-content h1 {
  color: var(--white);
  padding-left: 60px;
  padding-top: 20vh;
  line-height: 1.3;
  width: 80%;
}

.stat-box {
  background-color: var(--bgColor);
  width: auto;
}

.stat {
  p {
    width: 100%;
    text-align: left;
  }
}

.about {
  background-color: var(--bgColor);
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.btn-primary {
  background-color: transparent;
  border: 1px solid var(--primarycolor);
  color: var(--primarycolor);
  border-radius: 0px;
  transition: 0.3s;
  margin-top: 10px;
  min-width: 140px;
  min-height: 44px;
  font-weight: 500;

}

.btn-primary:hover {
  background-color: var(--primarycolor);
  color: var(--bgColor);
  border: 1px solid var(--primarycolor);
}

.btn-primary:focus,
.btn-primary.focus {
  background-color: var(--secondary-color);
  box-shadow: none;
  border-radius: 1px solid var(--primarycolor);
}

.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  background-color: var(--secondary-color);
  box-shadow: none;
  border-radius: 1px solid var(--primarycolor);
}

.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem var(--secondary-color);
}

.title {
  width: fit-content;
  margin-bottom: 1rem;

  h4 {
    text-align: left;
  }
}

hr {
  color: var(--secondary-color);
  height: 1px;
  opacity: 1;
  margin: 0;
}

.about-right div img {
  object-fit: cover;
  width: 100%;
}

@media only screen and (min-width: 1px) and (max-width: 991px) {
  .about-right div {
    padding-left: 0;
  }


}

/* scroll Start */
@media (min-width: 576px) {
  .about .about-section {
    display: flex;
    flex-direction: row-reverse;
  }
}

:root {
  --marquee-width: 80vw;
  --marquee-height: 100%;
  /* --marquee-elements: 12; */
  /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  /* width: var(--marquee-width); */
  height: var(--marquee-height);
  /* background-color: #111; */
  /* color: #eee; */
  overflow: hidden;
  position: relative;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4);
  /* 5rem; */
  white-space: nowrap;
  margin: 0 10px;
}

.marquee-content li img {
  width: auto;
  height: auto;
  /* border: 2px solid #eee; */
}

@media (max-width: 991px) {
  html {
    font-size: 12px;
  }

  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 4.5;
  }

  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 12px;
  }

  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }

  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

/* scroll end */
.clients h6 {
  color: var(--black-600);
  text-align: center !important;
}

.parallax-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /*  this is where the magic happens:  */
  background-attachment: fixed;

  background-image: url(assets/images/parallex/hero-image.png);
  background-position: center;
  background-size: cover;
  /* color: var(--color); */
  row-gap: 4rem;
}

.parallax-container2 {
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  padding: 80px 0;
  background-image: url(assets/images/parallex/services-bg-img.jpg);
  gap: 1.6em;
}

.service-card {
  background-color: transparent;
  border: 0px;
  padding: 20px;
}

.service-card-left {
  padding: 0;
}


.card-top {
  display: grid;
}

.card-top h6 {
  font-weight: 600;
  color: var(--white);
}

.card-top img {
  height: 48px;
  width: auto;
}

.card-top p {
  color: var(--black-300);
}

.services .title {
  color: var(--white);
}

.services .row,
.projects .row {
  padding: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.card-bottom h3 {
  font-weight: 900;
  color: var(--black);
  text-align: right;
  text-shadow:
    -1px -1px 0 var(--black-600),
    1px -1px 0 var(--black-600),
    -1px 1px 0 var(--black-600),
    1px 1px 0 var(--black-600);
  padding-top: 10px;
}

.projects {
  padding-top: 80px;
  padding-bottom: 20px;
}
.blog-cards{

  img {
    height: 240px;
    width: 100%;
    object-fit: cover;
  }

  .title {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  a{
    text-decoration: none;
    color: var(--black);
  }
  a:hover{
    color: var(--primarycolor);
  }

  p{
    font-size: 0.875rem;
  }
}
.blog-card-points{
  padding: 1rem 10% 1rem 10%;

  h4{
    text-align: left;
    font-weight: 600;
  }
}
.project-card {
  padding: 0 10px 10px;

  h6 {
    color: var(--black);
    width: 100%;
  }

  img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .title {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.project-content {
  overflow-x: auto;
}

.footer {
  background-color: #000;
  color: var(--white);
  padding-top: 40px;

}

.social-icon a {
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black-300);
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  font-size: 1rem;
}

.social-icon a:hover {
  background-color: var(--bgColor);
}

.fab {
  color: var(--black);
}

.footer p {
  margin: 10px 0;
  font-size: 0.875rem;
  color: var(--black-300);
}

.footer hr {
  color: var(--black-900);
  margin: 0;
}

.footer li a {
  color: var(--black-300);
  font-size: 0.875rem;
  padding: 10px 0;
}

.footer li a:hover {
  color: var(--bgColor);
}

@media only screen and (min-width: 1px) and (max-width: 991px) {
  .footer .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

    p {
      text-align: center;
    }
  }
}


.footer .footer-1 {
  margin-bottom: 1rem;

  .fa-circle {
    padding-bottom: 14px;
  }


  .menu {
    margin: 10px 0;
  }

  p {
    margin: 0;
  }

  .addr {
    margin-top: 10px;
  }

}


@media only screen and (min-width: 1px) and (max-width: 767px) {
  .footer-1 {
    padding-right: 0 !important;
    width: 100%;
  }

  .about .about-left {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 576px) {
  .footer-bottom div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;

  }
}

.footer p span {
  font-weight: 600;
  color: var(--bgColor);
}

.footer {
  .main p {
    margin: 20px 0;
  }

  img {
    height: 48px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
  }
}

.footer ul li {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid var(--black-900);
  padding-top: 10px;
  padding-bottom: 10px;


  ul {
    margin: 0;
  }

  p {
    margin-bottom: 0;
  }
}

.parallax-container3 {
  min-height: 400px;
  padding-top: 15vh;
}

.services-hero {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(assets/images/parallex/hero-image.png);
  background-size: cover;
  padding-top: 120px;
}
.services-hero-content{
  max-width: 70%;
  p{
    color: var(--white);
    text-align: center;
    text-decoration: underline;
    font-weight: 400;
  }
  h1{
    text-align: center;
  }
}

.service-box {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;

  h4 {
    font-weight: 600;
  }
}

.service-img-right {
  padding: 0;
  height: 50vh;
}

.service-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1px) and (max-width: 991px) {
  .service-card-left {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .service-img-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .services-hero-content{
    max-width: 90%;
  }
}

.white {
  background-color: var(--black-100);
}

.projects-hero {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(assets/images/parallex/hero-image.png);
  background-size: cover;
  padding-top: 120px;
}

.projects-page {
  padding: 40px 5% 20px;

  .project-content {
    padding: 0;
  }
}

.projects-page .project-card {
  padding: 0 10px 10px;
  margin: 0;
}

@media only screen and (min-width: 1px) and (max-width: 575px) {
  .parallax-container {
    min-height: 85vh;
  }

  .hero {
    height: 85vh;
  }

  .hero-content {
    height: 85vh;
  }

  .social-icon a {
    height: 36px;
    width: 36px;
    font-size: 1.5rem;
  }
}

.about .stat-box h3 {
  font-size: 2rem;
  color: var(--primarycolor);
  font-weight: 800;
  margin-top: 10px;
}

.why {
  color: var(--white);
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;

}

.choose {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.choose-card {
  border: 1px solid var(--black-600);
  padding: 30px;

  img {
    height: 40px;
    margin-bottom: 20px;
  }

  h6 {
    margin: 0;
  }
}


/* Cursor */

.cursor-dot {
  width: 12px;
  height: 12px;
  background-color: #FFC94A;
}

.cursor-outline {
  width: 48px;
  height: 48px;
  border: 1px solid var(--secondary-color);
  /* background-color: #FFC94A50; */
}

.cursor-inline {
  width: 30px;
  height: 30px;
  /* border: 1px solid var(--secondary-color); */
  background-color: #FFC94A50;
}

.cursor-dot,
.cursor-outline,
.cursor-inline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
}

/* cursor end */

.clients-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.client-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  /* This ensures each card takes at least 150px but can grow */
  max-width: 150px;
  /* Optional: Constrains the maximum width of each card */
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  /* This ensures the image doesn't have any extra margin/padding */
}

.contact-btn {
  margin: 0;
  height: 44px;
  color: var(--black);
  border-color: var(--black);
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: var(--black);
  color: var(--bgColor);
  border-color: var(--black);
}

.contact-btn:focus,
.contact-btn.focus {
  background-color: var(--black);
  box-shadow: none;
  border-radius: 1px solid var(--black);
}

.contact-btn:active,
.contact-btn.active,
.show>.contact-btn.dropdown-toggle {
  background-color: var(--black);
  box-shadow: none;
  border-radius: 1px solid var(--black);
}

.contact-btn:active:focus,
.contact-btn.active:focus,
.show>.contact-btn.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem var(--black);
}

.contact-hero {
  padding-top: 200px;
  padding-bottom: 80px;

  h6 {
    color: var(--black);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  h1 {
    color: var(--black);
    font-weight: 700;
    font-size: 3.5rem;
  }

  .about {
    padding-bottom: 0;
  }

  .about-left {
    h6 {
      letter-spacing: 0px;
      font-size: 1rem;
    }

    a {
      color: #177EBF;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    a:hover {
      color: #8acaef;
    }
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .contact-hero {
    padding-top: 14 0px;
    padding-bottom: 60px;

    h1 {
      font-size: 4rem;
    }
  }
}

@media only screen and (min-width: 1px) and (max-width: 576px) {
  .contact-hero {
    padding-top: 140px;
    padding-bottom: 40px;

    h1 {
      font-size: 3rem;
    }
  }
}

.contact-container {
  height: 480px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.address-card {
  position: relative;
  top: -480px;
  background-color: #8acaef;
  z-index: 10;
  margin-left: 5%;
  padding: 60px 40px 20px;
  height: 480px;
  width: 40%;
  color: var(--black);

  .logo-black {
    padding-bottom: 30px;
  }

  .logo-black img {
    height: 36px;
  }

  a {
    color: var(--black);
    text-decoration: none;
  }

  h5 {
    padding-bottom: 10px;
  }
}

.contact-info {

  h4 {
    text-align: left;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .social-icon a {
    background-color: var(--black);
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .fab {
    color: #8acaef;
  }
}

@media only screen and (min-width: 1px) and (max-width: 670px) {
  .address-card {
    position: static;
    width: auto;
    margin: 0 5%;
    height: auto;
  }

  .contact-container {
    height: auto;
  }

  .form-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--black-600);
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  outline: none;
  transition: 0.3s;
  border-radius: 0;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=file] {
  width: 100%;
  border: 1px solid var(--black-600);
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 6px;
  resize: vertical;
  outline: none;
  transition: 0.3s;
  border-radius: 0;
}

.contact-form {
  padding-top: 80px;
  padding-bottom: 80px;
}

.form-container {
  border: 1px solid var(--black-600);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  transition: 0.3s;
}

.form-container:hover {
  box-shadow: 16px 16px 0px 0 var(--black);

}

.submit {
  background-color: var(--primarycolor);
  color: var(--white);
}

.input-field:focus {
  box-shadow: 8px 8px 0px 0 var(--black);
}

.contact-area {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

@media only screen and (min-width: 1px) and (max-width: 670px) {
  .form-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.jobs {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--black);
  color: var(--white);
}

.jobs-card {
  border: 1px solid var(--black-600);
  padding: 30px;
  color: var(--white);

  h5 {
    font-weight: 700;
    margin: 0;
  }

  h6 {
    margin: 0;
    font-weight: 400;
  }

  p {
    margin: 4px 0;
    color: var(--black-300);
  }
}
.jobs-card:hover{
  box-shadow: 0px 0px 10px 0 #ffffff30;
}
.job-text {
  p {
    color: var(--black-200);
    font-size: 1rem;
    text-align: center;
  }

  a {
    text-decoration: none;
    color: var(--primarycolor);
  }
}

.navbar-brand .logo {
  height: 1.75rem;
}
.backlink{
  text-decoration: none;
  color: var(--primarycolor);
}
.rot{
  font-weight: 600;
  padding-bottom: 1rem;
}
strong{
  font-weight:600   
}
.blog-card{
  h3{
    font-size: 1.8rem;
    font-weight: 600;
  }
  h4{
    font-weight: 600;
    text-align: left;
  }
}
.blog-img{
  height: auto;
  width: auto;
  object-fit: cover;
  padding-bottom: 1rem;
}
.blog-box{
  padding-top: 50px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 1px) and (max-width: 576px) {
  .blog-img{
    height: auto;
    width: 100%;
    object-fit: cover;
  }
}
.keypoints{
  padding-left: 5%;

  li{
    list-style:disc;
  }

  p{
    padding-bottom: 0.5rem;
  }

  strong{
    color: var(--black);
  }
}
.job-description{
  margin: 4rem 4rem;
  padding: 0 4rem;
  h5{
    text-align: start;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  h4{
    text-align: start;
    font-weight: 700;
    margin: 0;
  }
  p{
    padding: 0;
  }
  .description{
    margin-bottom: 1.5rem;
  }
  ul{
    padding: 0.5rem 0 0 2rem;

  }
  li{
    color: var(--black-500);
    margin-bottom: 0.5rem;
    list-style:disc;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1px) and (max-width: 991px) {
  .job-description{
    margin: 1rem;
    padding: 1rem;
  }}
