@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --pColor: #a58b6c;
  --sColor: #0c1e21;
  --blue: #0161d2;
  --navy-blue: #1c1853;
  --light-nb: #e1e6fe;
  --grey-bg: #fafafa;
  --paraGrey: #898989;
  --dGrey: #3C3C3C;
  --white: #ffffff;
  --black: #000000;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}

p,
span, a, li {
  font-family: "Montserrat", serif;
  font-size: 14px;
  margin-bottom: 0px;
  color: var(--dGrey);
  line-height: 1.5;
  font-weight: 500;
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
label,
::placeholder {
  font-family: "Fira Sans", serif;
  font-weight: 500;
  text-decoration: none;
  cursor: default;
}

a,
button {
  font-family: "Montserrat", serif;
  text-decoration: none;
  cursor: pointer;
}

.p-0 {
  padding: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-0 {
  padding-left: 0px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-120 {
  padding-top: 120px !important;
}

.m-0 {
  margin: 0px;
}

.mt-5 {
  margin-top: -5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mtn-20 {
  margin-top: -20px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
    margin-bottom: 30px;
}

.w-50 {
  width: 25% !important;
}

.p-rel {
  position: relative;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.white-bg {
  background-color: var(--white);
}

.white {
    color: var(--white);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.heading {
  font-size: 34px;
  margin: 20px 0px;
  font-weight: 500;
  color: var(--sColor);
  animation: slideInLeft 1s ease-out;
}

.pa-card-heading {
    color: var(--pColor);
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sub-heading {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--sColor);
  position: relative;
  padding-bottom: 10px;
  animation: scaleUp 1.2s ease-out;
}

.hr-line {
  padding-left: 120px;
  position: relative;
}

.hr-line::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--pColor);
}

.common-btn {
  background-color: var(--sColor);
  color: var(--white);
  padding: 10px 30px;
  text-decoration: none;
  transition: background-color 1s ease, color 1s ease, border 1s ease;
  font-weight: 500;
  border-radius: unset;
  border: unset;
}

.common-btn:hover {
    background-color: var(--white);
    color: var(--sColor);
    border: 1px solid var(--pColor);
}

#content-wrapper {
  display: none;
}

#content-wrapper.show {
  display: block;
}

/* Popup styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  padding: 20px;
  width: 70%;
  max-width: 90%;
  padding: 70px;
  background-color: var(--white);
}

.popup-content p {
  margin-bottom: 10px;
  color: var(--sColor);
}

.buttons {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 20px;
}

.agree {
  border: unset;
}

/* navbar  */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  position: sticky;
  background-color: var(--white);
  top: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a img {
  width: auto;
  height: 60px;
  margin-right: 10px;
}

.logo span {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.nav-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  flex: 1;
  margin-bottom: 0px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--sColor);
  font-weight: 500;
}

.navbar .pcolor{
  /*color: var(--sColor);*/
  /*cursor: default;*/
  /*font-size: 1rem;*/
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Submenu styles */
.nav-links .has-submenu {
  position: relative;
}

.nav-links .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 10;
  min-width: 270px;
}

.nav-links .submenu li {
  padding: 5px 20px;
}

.nav-links .submenu li a {
  color: var(--pColor);
  text-decoration: none;
  font-size: 14px;
  display: block;
}

.nav-links .submenu li a:hover {
  background-color: var(--lightGrey);
  color: var(--sColor);
}

.nav-links .has-submenu:hover .submenu {
  display: block;
}

/* banner  */
.banner {
  background-image: url("../media/images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.banner-logo img {
  height: 100px;
  width: auto;
}

.banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1rem;
}

.banner-logo::before,
.banner-logo::after {
  content: "";
  height: 1px;
  background-color: var(--white);
  width: 20%;
  margin-top: 70px;
}

.banner-logo::before {
  margin-right: 1rem;
}

.banner-logo::after {
  margin-left: 1rem;
}

.banner-head h1 {
  font-size: 80px;
  color: var(--pColor);
  padding: 10px 50px;
}

.banner-sub-head p {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 30px;
}

/* about us  */
.team-head {
    padding-left: unset;
}

.about-us {
  position: relative;
  padding-top: 100px;
}

.abt-content {
  padding-left: 45px;
}

.abt-card {
  padding: 40px 20px;
}

.abt-card-head {
  padding-right: 10%;
}

.head-sequence h6 {
  font-size: 80px;
  font-weight: 400;
  color: var(--pColor);
  opacity: 20%;
}

.btn-row {
  padding-top: 50px;
}

.sec-btn {
  border: 1px solid var(--pColor);
  background-color: transparent;
  color: var(--sColor);
}

.team-head::before {
  left: 44%;
  transform: translate(-50%, -50%);
}

.hidden {
    display: none !important;
}

#more-content {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#more-content p {
    padding-bottom: 10px;
    text-decoration: underline;
}

#more-content p a {
  font-weight: 500;  
}

.rm-btn {
    margin-top: 20px;
}

.founder-content-wrapper {
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}

.modal-content {
    border-radius: unset;
}

.modal-body {
    padding: 30px 50px;
}

.modal-body p {
    padding-bottom: 20px;
}

.modal-body ul li {
    color: var(--paraGrey);
    font-family: "Montserrat", serif;
    font-size: 14px;
}

/* practice area  */
.practice-area {
  background-color: var(--grey-bg);
  margin-top: 50px;
}

.pa-img img {
  height: auto;
  width: 100%;
}

.pa-content {
  padding: 10%;
}

.pa-card {
  padding-bottom: 20px;
}

.pa-icon-head-wrapper {
  column-gap: 10px;
  padding-bottom: 10px;
}

.pa-icon img {
  height: 50px;
  width: auto;
}

/* videos section  */

.head-col {
  height: 100px;
  position: relative;
}

.custom-head {
}

.custom-head::before {
}

.custom-head .sub-heading {
  padding-bottom: 0px;
}

.video-item {
  height: auto;
  width: 100%;
  position: relative;
}

.video-item {
}

.play-button {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
}
.thumbnail-overlay{
  cursor: pointer;
}
.thumbnail-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.video-item:hover img {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(165, 139, 108, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(165, 139, 108, 0);
  }
}

.video-thumbnail {
  width: 100%;
  height: auto;
}

.video-content {
  padding: 10px;
}

/*.modal {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.7);*/
    display: none; /* Initially hidden */
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 1000;*/
/*}*/

/*.modal-content {*/
/*    background-color: #000;*/
/*    padding: 20px;*/
/*    border-radius: 10px;*/
/*    text-align: center;*/
/*    position: relative;*/
/*}*/

/*.close-button {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 10px;*/
/*    font-size: 30px;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*}*/


.modal-video {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 80vh;
  width: 100%;
  /*color: var(--bs-modal-color);*/
  /*pointer-events: auto;*/
  background-color: #0000007a;
  background-clip: padding-box;
  border-radius: unset;
  border: unset;
  align-content: center;
  align-items: center;
  justify-content: center;
}

#modalVideo {
  height: auto;
  width: 70%;
}

.close-button {
  position: absolute;
  right: 20px;
  font-size: 50px;
  top: 0%;
  color: var(--white);
}

/* Print Media */
.img-thumbnail {
  height: 250px;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--pColor);
  transition: 0.3s;
  object-fit: cover;
  object-position: top center;
}

.img-thumbnail:hover {
  border-color: var(--grey-bg);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

.slides {
  display: none;
  text-align: center;
}

.slides img {
  height: fit-content;
  width: fit-content;
  max-height: 80vh;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: white;
  font-size: 20px;
  user-select: none;
  background: transparent;
  border: unset;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
/* Print Media */

.printmedia {
  background-color: var(--grey-bg);
}

/* legal team  */
/* Styling the attorney card */
.attorney-card {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sColor);
}

/* Image container */
.attorney-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.attorney-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.attorney-card:hover .attorney-img img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--sColor);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  padding: 20px;
  cursor: pointer;
}

.overlay-content {
  color: var(--white);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay-content p {
  margin: 0;
  font-size: 0.9rem;
  padding: 0 10px;
  line-height: 1.5;
  color: var(--white);
  text-align: justify;
}

.attorney-card:hover .overlay {
  left: 0;
}

.attorney-card:hover .overlay-content {
  opacity: 1;
  transform: translateX(0);
}

.abt-attorney {
  padding: 20px;
  text-align: center;
}

.abt-attorney h3 {
  margin: 0;
  font-size: 20px;
}

.abt-attorney p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: var(--pColor);
}

/* form area  */
.form-container {
  background-color: var(--pColor);
}

.form-left h2 {
  color: var(--white);
}

.form-control {
  padding: 10px 30px;
  border-radius: unset;
  margin: 5px;
  border: unset;
}

.submit-button {
  background-color: var(--sColor);
  color: var(--white);
  border: unset;
}

/* contact info area  */
.contact-info {
  background-color: var(--sColor);
}

.contact-info-wrapper {
  border-left: 1px solid var(--white);
  padding: 10px 20px;
}

.contact-info-wrapper p {
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 10px;
}

.address {
  text-transform: unset !important;
}

.contact-info-wrapper a,
.address {
  color: var(--pColor) !important;
  font-size: 14px;
  padding-bottom: unset !important;
}

.address-card {
  padding: 0px 20px;
}

/* copyright  */
.copyright {
  padding: 10px 0px;
}

.copyright p,
.copyright p span,
.copyright p a {
  color: var(--sColor);
  text-decoration: none;
}

/* ---------- About Us Page ------------- */
.abt-banner {
  background-image: url("../media/images/about-us-bg-alp.png");
  height: 70vh;
}
.abt-sec {
  margin-left: unset !important;
  padding-top: unset !important;
}

.abt-org {
  padding-left: 9% !important;
}

.abt-pg-sec {
  height: unset;
}

.sBgColor {
  background-color: var(--sColor);
  padding-bottom: 50px;
}

/* cta section  */
.cta {
  background-color: var(--grey-bg);
}

/* our journey section  */
.oj-img img {
  height: auto;
  width: 100%;
}

.oj-content {
  /* background-color: var(--grey-bg); */
  padding: 8% 10%;
}

/* practice area  */
.pac-col {
  border-right: 1px solid #ced2d3;
  padding: 50px 20px;
}

.pac-icon img {
  height: 70px;
  width: 70px;
}

.pac-head {
  padding-top: 20px;
}

.pac-head h3 {
    font-size: 24px;
    margin: 20px 0px;
    font-weight: 300;
}

/* founder  */
.founder-head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.aboutpage .founder-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 80%;
}

.founder-section {
  margin-top: 50px;
  background-color: var(--grey-bg);
}

.fs-abt-pg {
  margin-top: unset;
}

.abt-team-head {
  background-color: var(--sColor);
}

.abt-team-sh {
  color: var(--white);
}

.team-main-head {
  color: var(--pColor);
  margin: unset;
}

.abt-team-container::before {
  content: unset;
}

.founder-img img {
  height: auto;
  width: 100%;
}

.founder-content {
  height: 100%;
}

.abt-founder {
}
.aboutpage.founder-section {
}
.abt-pointers {
  /* padding-top: 10%;
  padding-left: 27%; */
}

.abt-pointers ol li {
  color: var(--pColor);
}

.abt-pointers p {
  color: var(--sColor);
}

/* history  */
.history-abt-pg {
  background-color: var(--grey-bg);
}
/* c to c  */
.commitment-to-clients {
  background-color: var(--grey-bg);
  padding-bottom: unset;
}

.ctoc-card {
  background: white;
  text-align: center;
  border: 1px solid #ced2d3;
  padding: 10%;
  border-radius: 5px;
  height: 100%;
}

.cc-card-icon img {
  height: 70px;
  width: auto;
}

.cc-card-heading,
.cc-card-content {
  padding-top: 20px;
}

.cc-card-heading h3 {
  font-size: 18px;
}

.mediacoverage.videos-wrapper {
  background-color: var(--grey-bg);
}

.mediacoverage.videos-wrapper.bgw {
  background-color: white;
}

.mediacoverage.printmedia {
  background-color: var(--grey-bg);
}

#more-content ul a {
    color: var(--dGrey);
}

/* contact page  */
.contact-form-area {
  margin-top: 50px;
}

.ci-card {
  height: 350px;
}

.cc-card-content ul {
  text-align: left;
  padding-left: unset;
  color: var(--pColor);
}

.cc-card-content ul li {
  list-style: none;
}

.cc-card-content p a,
.cc-card-content a {
  text-decoration: none;
  color: var(--pColor);
}

.form-img-wrapper img {
  height: auto;
  width: 100%;
}

.pColorBg {
  background-color: var(--pColor);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-form-container {
  padding: 10%;
}

.form-pg-heading p {
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 10px;
}

.form-pg-heading h2,
.form-area p {
  color: var(--white);
}

.contact-pg-form .form-group .form-control {
  background-color: #968066;
  border-bottom: 0.5px solid var(--white);
  margin-bottom: 10px;
}

.contact-pg-form .form-group .form-control::placeholder {
  color: var(--white);
}

.form-area button {
  width: fit-content;
  padding: 10px 100px;
}

.form-img-wrapper img {
    height: 85vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* digital media  */
.digi-media {
  background-image: url("../media/images/digi-media.png");
}

/* print media  */
.print-media {
  background-image: url("../media/images/print-media.png");
}

/* Thumbnail container to position elements properly */
.thumbnail-container *{
    cursor: pointer;
}
.thumbnail-container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

/* Default styles for the thumbnail image */
.img-thumbnail {
  display: block;
  width: 100%;
}

/* Magnifying lens image (hidden by default) */
.mag-lens {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.hover-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 30, 33, 0);
  border-radius: 8px;
  transition: background 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.thumbnail-container:hover .mag-lens {
  opacity: 1;
}

.thumbnail-container:hover .hover-overlay {
  background: rgba(12, 30, 33, 0.8);
}

@media (max-width: 767px) {
  html {
    overflow-x: hidden;
  }

  .heading {
    font-size: 28px;
    margin: 10px 0px;
  }
  
  .sub-heading {
      font-size: 14px;
  }

  .navbar {
    padding: 10px 15px;
    position: fixed;
    top: 0;
    background-color: var(--white);
  }

  .logo a img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    margin-bottom: 5px;
  }

  .nav-container {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: none;
    flex-direction: column;
    padding: 40px;
  }

  .quote-btn-container {
    margin-top: 30px;
  }

  .nav-container.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: unset;
  }

  .nav-links li {
    margin: 10px 0;
    width: 100%;
  }

  .nav-links .submenu {
    min-width: 220px;
    right: 0;
    left: auto;
  }

  .quote-item {
    margin-top: 10px;
    width: 100%;
  }

  /* banner  */
  .banner {
      height: 70vh;
      margin-top: 70px;
  }
  
  .banner-head h1 {
    font-size: 45px;
    padding: 10px 20px;
  }

  .banner-logo img {
    height: 80px;
    width: auto;
  }

  .banner-logo::before,
  .banner-logo::after {
    margin-top: 70px;
  }

  .banner-sub-head p {
    font-size: 20px;
  }

  .hr-line::before {
    top: 20%;
    left: -65px;
    width: 50px;
  }

  .abt-content {
    position: absolute;
    left: 20%;
  }

  .about-alp {
    padding-top: unset;
  }

  .abt-card {
    margin-bottom: 20px;
  }

  /* practice areas  */
  .practice-area {
      margin-top: unset;
  }
  
  .pa-card {
    padding-bottom: unset;
  }

  .pa-content {
    padding: 5%;
    margin-top: 20px;
  }

  .pa-content .content {
    padding-bottom: 40px;
  }

  /* media  */
  .head-col {
    padding-top: unset;
  }

  .heading-sec {
    padding-bottom: 0px;
  }

  .hr-line p {
    padding-bottom: unset;
  }

  .video-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    cursor: pointer;
  }
  
  .printmedia .container {
      padding-top: 0px !important;
      padding-bottom: 0px !important;
  }
  
  .img-thumbnail {
    height: 130px;
  }
  
  /*.img-thumbnail {*/
  /*  margin-bottom: 20px;*/
  /*}*/

  /* legal-team  */
  .legal-team {
    padding-top: unset;
  }

  .last-att-col {
    display: flex;
    justify-content: center;
  }

  .last-att {
    width: 45%;
  }

  .last-mem {
    order: 2;
  }

  .founder-section {
    padding-bottom: 30px;
  }

  /* contact info  */
  .contact-info-wrapper {
    margin-bottom: 10px;
    padding: 10px;
    padding-right: unset;
  }

  .contact-info-wrapper a,
  .address {
    font-size: 12px;
  }

  .form-container {
    padding: 25px 0px;
  }

  .copyright {
    padding: 5px 0px;
  }

  .copyright p,
  .copyright p span {
    font-size: 12px;
  }

  /* popup  */
  .popup-content {
    width: 90%;
    padding: 15px 20px;
  }

  .mob-font-12 {
    font-size: 12px;
  }

  .popup-content > .sub-heading {
    margin-bottom: unset;
  }

  .popup-content p {
    margin-bottom: 5px;
  }

  .agree,
  .decline {
    padding: 5px 20px;
    font-size: 12px;
  }

  .buttons {
    gap: 15px;
  }

  /* about page  */
  .about-us {
    padding-top: unset;
  }
  
  .abt-pg-sec {
      padding-top: 50px;
  }

  .abt-org {
    padding-left: unset !important;
  }

    .oj-content {
        padding: 8% 5%;
    }
      
    .founder-head {
        position: unset;
        transform: unset;
        width: 100%;
        padding: 20px 0px;
    }

    .hr-line {
        padding-left: unset;
    }
    
    .fs-abt-pg {
        margin-top: 50px;
    }

    .practice-areas {
        padding-bottom: unset;
    }
    
    .pac-col {
        padding: 0 20px 50px 20px;
    }
    
    .abt-pa-content-row {
        padding-top: unset;
    }
    
  #modalVideo {
    width: 95% !important;
  }
  
  .play-button {
    height: 50px;
    width: 50px;
  }
  
  .ctoc-card {
      padding: 10% 5%;
      margin-bottom: 20px;
  }
  
  .cc-card-icon img {
    height: 50px;
  }
  
  .cc-card-heading, .cc-card-content {
    padding-top: 10px;
  }
  
  .ctoc-last-card {
    height: 260px;
  }
  
  .ci-card {
    height: 200px;
  }
  
  .last-ci-card {
      height: 300px;
  }

  .slides img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .close {
    position: absolute;
    top: 0px;
    right: 15px;
  }
  
  .mob-p-color {
      color: var(--white);
  }
}
