*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* background-color: #000; */
  /* color: #000 !important; */
}
.section-1{
  background-color: #000;
  color: #fff !important;
  margin-top: -70px !important;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  
} */

.home {
  height: 100vh;
  position: relative;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.544);
  z-index: 2;
}

.home-content {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  color: yellow;
  text-align: start;
}
.typewriter {
  position: relative;
  display: inline-block;
}

.typewriter::after {
  content: '|';
  position: absolute;
  right: -15px;
  animation: blink 0.7s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}
.flicker {
  animation: textFlicker 5s  infinite;
}

@keyframes textFlicker {

  0%,
  19.999%,
  22%,
  62.999%,
  64%,
  97.999%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px yellow, 0 0 20px yellow, 0 0 30px yellow;
  }

  20%,
  21.999%,
  63%,
  63.999%,
  98%,
  99.999% {
    opacity: 0.6;
    text-shadow: none;
  }
}

@media (max-width: 480px) {
  .home-content {
    padding-top: 150px !important;
  }
}

h1 {
  font-family: Playfair Display, serif;
  font-size: clamp(55px, 5vw, 50px);
  line-height: 1.1;
}

.home p {
  font-size: clamp(15px, 4vw, 30px);
  margin-top: 10px;
  color: #c5ca34 !important;
}

.hero-vedio {
  height: 50px;
  width: 100px;
}

 .home-content button {
   padding: 1rem 2rem;
   font-size: 1.2rem;
   background: transparent;
   color: yellow;
   border: 2px solid yellow;
   cursor: pointer;
   transition: all 0.4s ease;
   opacity: 0;
   transform: translateY(30px);
   animation: fadeUpIn 1s ease forwards 1s;
   position: relative;
   overflow: hidden;
   z-index: 1;
 }

 .home-content button:before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: yellow;
   transition: all 0.4s ease;
   z-index: -1;
 }

 .home-content button:hover {
   color: #000;
 }

 .home-content button:hover:before {
   left: 0;
 }
    @keyframes fadeUpIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
  
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.second-container {
  position: relative;
  overflow: hidden;
}

.parallax-container {
  text-align: center;
  color: var(--color, white);
  /* Fallback color */
  margin: 0 50px;
  /* Margin on left and right */
  height: 80vh;
  /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  border-radius: 1%;
  align-items: center;
  justify-content: center;
  background-image: url("../Images/team_photo.jpg");
  background-size: cover;
  /* Ensure the image covers the container */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Prevents repeating */
  background-attachment: fixed;
  /* Parallax effect */
}

/* For medium screens */
@media (max-width: 768px) {
  .parallax-container {
    margin: 0 20px;
    /* Reduce margins on smaller screens */
    height: 60vh;
    /* Adjust height for smaller screens */
    border-radius: 20%;
    background-attachment: scroll;
    /* Change to scroll for mobile */
    background-size: contain;
    /* Change to contain for better visibility */
  }
}

/* For small screens */
@media (max-width: 480px) {
  .parallax-container {
    margin: 0 10px;
    /* Further reduce margins on mobile */
    height: 28vh;
    /* Further reduce height */
    border-radius: 5%;
    background-attachment: scroll;
    /* Change to scroll for mobile */
    background-size: contain;
    /* Change to contain for better visibility */
  }

  .parallax-container h1 {
    font-size: 1.5em;
    /* Smaller font size for mobile */
  }

  .parallax-container p {
    font-size: 1em;
    /* Smaller font size for mobile */
  }
}

.section-title {
  text-align: center;
  padding-bottom: 5px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: yellow;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: yellow;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

@media (max-width: 480px) {
  .team .member {
    flex-direction: column;
    gap: 20px;
    align-items: center !important;
  }

  .team .member .member-info {
    padding-left: 0px !important;
  }
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 10%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: orange;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: orange;
}



.team .member .social a+a {
  margin-left: 8px;
}

/* Faq */
.faq__question {
  padding-right: 20px;
}


/********************** our clients */


/* .slider-img {
    animation: scroll 5s linear infinite;
  }
  
  .slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
  }
  
  .slider {
    background-color: whitesmoke;
    padding: 2em 1em;
  }
  
  @keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translatex(-1000%)}
  } */
.slider-img {
  width: 100px;
  /* Set fixed width */
  height: 100px;
  /* Set fixed height */
  object-fit: contain;
  /* Ensures logos are resized properly */
}

.slide-track {
  display: flex;
  gap: 3em;
  width: calc(100px * 30);
  /* Set this to match the total number of logos */
  animation: scroll 30s linear infinite;
  /* Slower animation to fit all logos */
}

.bg-work {
  background-color: whitesmoke;
  padding: 2em 1em;
  overflow: hidden;
  /* Hide any overflow */
}

.slider {
  background-color: whitesmoke;
  padding: 2em 1em;
  overflow: hidden;
  /* Hide any overflow */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100px * 30));
    /* Moves by the width of all logos */
  }
}








.contact-container {
  position: relative;
  /* width: 100%; */
  /* min-height: 100vh; */
  padding: 4rem;
  /* background-color: #fafafa; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .contact-container {
    padding: 1.5rem;
  }
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px #302f2f;
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #8d8888;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #fff);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #fff;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #090909;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fff;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #ffff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.formButton {
  padding: 0.6rem 1.3rem;
  background-color: #f3eded;
  border: 2px solid #fff;
  font-size: 0.95rem;
  color: #0e0e0d;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.formButton:hover {
  background-color: transparent;
  color: #080808;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #0e0e0d;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #090909;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #e9ee9e;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}


/* Scoped to the #navbar or a specific parent to avoid conflicts elsewhere */
#navbar .nav-item.dropdown .dropdown-menu {
  background-color: #1a1a1a;
  padding: 10px;
  border: none;
  width: 340px;
}

/* Unordered list inside dropdown */
#navbar .nav-item.dropdown .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Default link style */
#navbar .nav-item.dropdown .dropdown-menu a.dropdown-item {
  color: white;
  padding: 10px;
  display: block;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hover effect */
#navbar .nav-item.dropdown .dropdown-menu a.dropdown-item:hover {
  background-color: yellow;
  color: black;
  font-weight: 500;
}

/* .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #464643, #aaaaa8);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
   */
.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .formButton {
    padding: 0.45rem 1.2rem;
  }
}

.services .box {
  background-color: #12141c;
  overflow: hidden;
  transition: .3s ease;
}

.services .box i {
  color: orange;
  transition: inherit;
  transition-delay: 0s
}

.services h4 {
  color: #fff;
  transition: inherit;
  transition-delay: .05s;
}

.services p {
  color: #dfdfdf;
  transition: inherit;
  transition-delay: .1s;
}

.readmore {
  color: #fff;
  overflow: hidden;
  display: inline-block;
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  position: relative;
  padding-right: 2rem;
  text-decoration: none;
}

/* .readmore:before {
	animation: ts-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: #e8f718;
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: 0;
} */
/* .readmore span {
	position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}
.box:hover .readmore span {
    transform: translateX(0%);
}
.box:hover .readmore:before {
	animation: ts-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
} */
/* .box:hover i,
.box:hover h4,
.box:hover p {
    transform: translateY(-0.625rem);
} */
@keyframes ts-link-arrow-effect-animation-out {
  0% {
    transform-origin: right center;
    transform: scaleX(.2);
  }

  70% {
    transform-origin: right center;
  }

  71% {
    transform-origin: left center;
    transform: scaleX(1);
  }

  100% {
    transform-origin: left center;
    transform: scaleX(.2);
  }
}

@keyframes ts-link-arrow-effect-animation-in {
  0% {
    transform-origin: left center;
    transform: scaleX(.2);
  }

  70% {
    transform-origin: left center;
    transform: scaleX(1);
  }

  71% {
    transform-origin: right center;
  }

  100% {
    transform-origin: right center;
    transform: scaleX(.2);
  }
}



.work-container {
  overflow-x: auto;
  display: flex;
  width: 90%;
  scroll-behavior: smooth;
  margin: auto;
}

/* hide the scrollbar and retain it's functionality */
.work-container::-webkit-scrollbar {
  display: none;
}

.work-box {
  height: 220px;
  width: 233px;
  background: red;
  flex-shrink: 0;
  margin-right: 4px;
}


/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 20px;
  color: green;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  margin-top: 78px;
}

/* Position the "next button" to the right */
.next {
  right: 5%;
  border-radius: 3px 0 0 3px;
  margin-right: 5.5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}




.gallery {
  background: #EEE;
}

.gallery-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  counter-increment: gallery-cell;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.faq-body {

  display: flex;

  justify-content: center;

  align-items: center;

  font-family: "Kumbh Sans", sans-serif;

  font-size: 0.85rem;

  /* background: linear-gradient(180deg, hsl(273, 75%, 75%), hsl(240, 73%, 65%)); */

}

.faq-card {

  position: relative;

  max-width: 21rem;

  width: 21rem;

  margin-top: 8rem;

  margin-bottom: 5rem;

  padding: 2em;

  padding-top: 10em;

  border-radius: 2em;

  color: hsl(238, 29%, 16%);

  background-color: white;

  box-shadow: 5px 5px 30px rgba(0 0 0/ 0.3);

  transition: transform 200ms ease-in;

}





.faq__content {

  width: 100%;

}



.faq__title {

  margin-bottom: 1em;

  text-align: center;

  font-size: 2rem;

}



.faq__item {

  width: 100%;

  margin-bottom: 1.5em;

  border-bottom: 1px solid hsl(240, 5%, 91%);

}



.faq__question {

  cursor: pointer;

  position: relative;

  margin-bottom: 1em;

  font-size: 0.9rem;

  font-weight: 400;

}





.faq__answer {

  display: none;

  padding-bottom: 1.5em;

  color: hsl(237, 12%, 33%);

  line-height: 1.5em;

}



.arrow-icon {

  display: inline-block;

  position: absolute;

  top: 35%;

  right: 0;

  transform: rotate(0deg);

  transition: transform 300ms ease;

}



.img-bg {

  position: absolute;

  top: 0;

  left: 65px;

  width: 200px;

}



.img-woman {

  position: absolute;

  top: -85px;

  left: 65px;

  width: 200px;

}



/* attribution styling */



.attribution {

  font-size: 1rem;

  position: absolute;

  top: 0;

  color: var(---Very-dark-blue);

  opacity: 0.75;

}



.attribution a {

  color: white;

  text-decoration: underline;

}



.attribution a:hover {

  color: rgba(255 255 255/0.5);

}



/* media queries */



@media (min-width: 900px) {

  body {

    align-items: center;

    min-height: 100vh;

  }



  .faq-card {

    display: flex;

    justify-items: center;

    max-width: 60rem;

    width: 60rem;

    margin: 0;

    padding: 0;

  }



  .faq__content {

    order: 2;

    width: 45%;

    padding: 5em;

  }



  .faq__title {

    text-align: left;

  }



  .imgs__container {

    width: 50%;

    overflow: hidden;

    position: relative;

    border-radius: 2em 0 0 2em;

  }



  .img-bg {

    position: absolute;

    top: 120px;

    left: -100px;

    transform: scale(400%);

  }



  .img-woman {

    position: absolute;

    top: 170px;

    left: 70px;

    transform: scale(220%);

  }



  .img-box {

    position: absolute;

    top: 190px;

    left: -90px;

    transition: transform 1s ease-in;

  }



  body:hover .img-box,

  body:focus .img-box {

    animation: up-and-down 1.25s linear infinite alternate;

  }



  @keyframes up-and-down {

    0% {

      transform: translateY(0%);

    }



    100% {

      transform: translateY(-20%);

    }

  }

}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: yellow !important;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: #fff;
  font-weight: 600;
  padding-bottom: 18px;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #c3d80a;
}

.btn-style-one {
  background: linear-gradient(135deg, yellow 0%, yellow 100%);
  color: black;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(227, 247, 74, 0.4);
  transition: all 0.3s ease;
  margin-top: 30px !important;
  text-decoration: none;
  /* margin-top: 20px !important; */
  /* margin-top: 20px; */
}

.btn-style-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 247, 74, 0.4);
}

.about-section {
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

@media (max-width: 1200px) {
  .about-section .content-column .inner-column {
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  .about-section .content-column .inner-column {
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 100px;
  }
}

.about-section .text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}

.about-section .list-style-one {
  margin-bottom: 45px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-left: 80px;
  padding-bottom: 0px;
}

.about-section .image-column .inner-column .author-desc {
  position: absolute;
  bottom: 16px;
  z-index: 1;
  background: yellow;
  padding: 10px 15px;
  left: 96px;
  width: calc(100% - 152px);
  border-radius: 50px;
}

.about-section .image-column .inner-column .author-desc h2 {
  font-size: 21px;
  letter-spacing: 1px;
  text-align: center;
  color: #000;
  margin: 0;
}

.about-section .image-column .inner-column .author-desc span {
  font-size: 16px;
  letter-spacing: 6px;
  text-align: center;
  color: #000;
  display: block;
  font-weight: 400;
}

@media (max-width: 576px) {
  .about-section .image-column .inner-column .author-desc span {
    letter-spacing: 2px;
  }
}

.about-section .image-column .inner-column:before {
  content: '';
  position: absolute;
  width: calc(50% + 80px);
  height: calc(100% + 160px);
  top: -80px;
  left: -3px;
  background: transparent;
  z-index: 0;
  border: 44px solid yellow;
}

.about-section .image-column .image-1 {
  position: relative;
}

.about-section .image-column .image-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  border-radius: 46px;
}

@media (max-width: 576px) {
  .about-section .image-column .image-1 img {
    width: 100%;
  }
}

.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
  background-color: #191e34;
  color: #fff
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.owl-prev,
.owl-next {
  width: 45px;
  height: 45px;
  background-color: #fff !important;
  border-radius: 50%;
}

/* option gallery */
.desktop_7 * {
  font-family: Nunito, sans-serif;
}

.desktop_7 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.desktop_7 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.desktop_7 .responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
}

.desktop_7 .responsive-container-block.Container {
  max-width: 980px;
  flex-direction: column;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.desktop_7 .text-blk.headingText {
  font-size: 36px;
  line-height: 50px;
  font-weight: 900;
}

.desktop_7 .text-blk.active {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #03a9f4;
}

.desktop_7 .text-blk.list {
  font-size: 20px;
  line-height: 34px;
  cursor: pointer;
}

.desktop_7 .text-blk.all {
  margin-right: 20px;
  margin-left: 0px;
}

.desktop_7 .text-blk.list {
  margin-left: 0px;
  margin-right: 20px;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.desktop_7 .text-blk.list.active {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.desktop_7 .squareImg {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 225px;
  height: 225px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.desktop_7 .responsive-container-block.imageContainer {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.desktop_7 .responsive-container-block.optionsContainer {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  min-height: auto;
}

.desktop_7 .project {
  display: inline-block;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.desktop_7 button {
  cursor: pointer;
}

.desktop_7 img {
  cursor: pointer;
}

.desktop_7 img:hover {
  transform: scale(1.02);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
}

.desktop_7 .hdImg {
  display: none;
}

.desktop_7 .btn-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.desktop_7 .project:hover .btn-box {
  display: block;
}

.desktop_7 .imageContainer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.desktop_7 .project {
  position: relative;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.desktop_7 .overlay {
  position: fixed;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(71, 69, 69, 0.7);
  height: 100%;
  width: 100%;
  max-height: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: none;
}

.desktop_7 .overlay-inner {
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  opacity: 1;
  width: fit-content;
  max-width: 50%;
  max-height: 85%;
}

.desktop_7 .close {
  position: absolute;
  top: 3px;
  right: 10px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  color: #474545;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: initial;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.desktop_7 .overlay-inner .hdImgs {
  width: fit-content;
  height: calc(85% - 55px);
  display: flex;
}

.desktop_7 .overlay-inner img {
  max-height: 100%;
  max-width: 100%;
  transform: none;
}

.desktop_7 .squareImg.one {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.two {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.three {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.four {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.five {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

@media (max-width: 1024px) {
  .desktop_7 .Container {
    width: 690px;
  }

  .desktop_7 .squareImg {
    width: 170px;
    height: 170px;
  }

  .desktop_7 .squareImg.one {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.two {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.three {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.four {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.five {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .overlay-inner {
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    width: 80%;
  }

  .desktop_7 .close {
    font-size: 14px;
    top: 2px;
    right: 5px;
  }

  .desktop_7 .overlay {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .desktop_7 .squareImg {
    width: 225px;
    height: 225px;
  }

  .desktop_7 .responsive-container-block.Container {
    max-width: 450px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    max-width: 380px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.headingText {
    text-align: center;
  }

  .desktop_7 .text-blk.list {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    margin-top: 0px;
    margin-right: 14.4219px;
    margin-bottom: 10px;
    margin-left: 14.4219px;
  }

  .desktop_7 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 500px) {
  .desktop_7 .text-blk.list.all.active {
    font-size: 14px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 15px;
    line-height: 34px;
  }

  .desktop_7 .text-blk.list {
    font-size: 14px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    min-height: auto;
  }

  .desktop_7 .responsive-container-block.imageContainer {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    max-width: 330px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    font-size: 17px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list {
    font-size: 17px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .squareImg {
    width: 100%;
    height: 25%;
  }

  .desktop_7 .project {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    width: 100%;
    height: 25%;
  }

  .desktop_7 .overlay-inner {
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    padding-top: 25px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    width: 100%;
  }

  .desktop_7 .overlay {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .overlay-inner hdImgs {
    width: 90%;
  }
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

.clients-section {
  margin-top: 50px;
}

.clients {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.clients-border>li {
  position: relative;
}

.clients li {
  height: 100px;
  margin: 0 41px;
  width: 100px;
  display: inline-block;
  cursor: pointer;
}

.clients>li img {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.clients li img {
  max-width: 90%;
  -webkit-transition: all .35s ease-in-out;
  -o-transition: .35s all ease-in-out;
  transition: all .35s ease-in-out;
}

.clients-border>li:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid #eeeeee;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #eeeeee;
  top: 0;
}

/* Mobile devices */
@media (max-width: 576px) {
  .clients {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    padding: 0 15px !important;
  }

  .clients li {
    width: 45% !important;
    height: auto !important;
    margin: 10px 0 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .clients li img {
    max-width: 100% !important;
    position: static !important;
    transform: none !important;
    top: 0 !important;
  }

  /* Remove the diamond background on mobile */
  .clients-border>li:after {
    display: none !important;
  }
   .client-logo-img {
      background-color: yellow;
      padding: 10px;
      border-radius: 5%;
    }
}

.category-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 0%;
  border: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.card-something {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-title {
  color: yellow;
  font-size: 2rem;
  font-weight: 80;
  letter-spacing: 7px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 30px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
}

.gallery-img {
  cursor: pointer;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
}
.social-bar {
  position: fixed;
  top: 55%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  border-top: 1px solid yellow;
  border-bottom: 1px solid yellow;
}

.social-bar .line {
  width: 2px;
  height: 20px;
  background-color: #fff;
  margin: 5px 0;
}

.social-bar a {
  display: block;
  padding: 12px;
  color: yellowgreen !important;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .social-bar {
    display: none;
  }
}

 @media (max-width: 768px) {
   .logo-img {
     width: 75px !important ;
     height: auto !important;
   }
   .header-section1{
    margin-top: -50px !important;
   }
 }


 .navbar-toggler {
   padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
   font-size: var(--bs-navbar-toggler-font-size);
   line-height: 1;
   color: var(--bs-navbar-color);
   background-color: yellow;
   border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
   border-radius: var(--bs-navbar-toggler-border-radius);
   transition: var(--bs-navbar-toggler-transition);
 }