/**************************************
                General
**************************************/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar{
  width: 6px;
  background-color: #D4AF37;
}
html::-webkit-scrollbar-thumb{
  background: #19203A;
  border-radius: 50rem;
}

a, button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  
}
ol,ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body{
  color: #1E1E1E;
  font-family: "PlusJakartaSans-Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 166.667%;
  background: #F6F4F0;
}

a,a:hover,a:focus{
  color: currentColor;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  text-decoration: none;
}
h1,h2,h3,h4 {
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s; 
}
p{
  margin-bottom: 1rem;
}
main{
  overflow: clip;
}
img {
  max-width: 100%;
  height: auto;
  transition: all .5s;
}
.text-center{
  text-align: center;
}
.container-fluid{
  padding: 0 80px;
}

/* Popup */
.popup {
  width: 100%;
  height: 100%;
  background: #ffffff18;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.popup.show {
  opacity: 1;
  transform: translateY(0px);
  z-index: 999999;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
  width: 70%;
  padding: 0px;
  border-radius: 23px;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: clip;
  z-index: 99999;
    background: url(../img/our-process-bg.webp) no-repeat;
  background-size: cover;
}
.popup .popup__content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50% 10px 50% 50%;
  flex-direction: column;
  gap: 5px;
  background: #D1A628;
  transition: all .5s;
  z-index: 9;
  cursor: pointer;
}

.popup .popup__content .close:hover {
  box-shadow: 0 18px 40px rgba(212, 175, 55, .45);
  background: #fff;
}

.popup .popup__content .close:hover span {
  background-color: #000;
}

.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #000;
  transition: all .5s;
}

.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}
form .secondary-btn:hover{
  background: rgb(218, 193, 251);
}
.left {
  text-align: left;
  padding: 30px;
  .section-title, p{
    color: #FFF;
  }
  p{
    a{
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 22px;
      span{
        width: 49px;
        height: 49px;
        border-radius: 50%;
        background: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      &:hover{
        text-shadow: 0 10px 20px #D4AF37;
      }
    }
  }
}
.right {
  padding: 30px;
  text-align: left;
  background: linear-gradient(107deg, rgb(23 22 22 / 0%) 0.81% 54.81%, rgb(11 19 46) 90.19%);
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
  padding: 80px 0;
}
.pb-80 {
  padding-bottom: 60px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-60{
  margin-bottom: 60px;
}
.mb-70{
  margin-bottom: 70px;
}
.mb-80{
  margin-bottom: 80px;
}
p{
  color: #1E1E1E;
  font-family: "PlusJakartaSans-Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 166.667%;
}
.dec{
  color: #000;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  line-height: 150%;
}
.title {
  color: #000;
  font-family: "PlayfairDisplay-Bold";
  font-size: 33px;
  font-style: normal;
  font-weight: normal;
  line-height: 109.091%;
}
.section-title {
  color: #000;
  font-family: "PlayfairDisplay-Bold";
  font-size: 56px;
  font-style: normal;
  font-weight: normal;
  line-height: 114.286%;
  span{
    color: #D4AF37;
  }
}
.sub-section-title{
  color: #000;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 200%;
  text-transform: uppercase;
  border-radius: 70px;
  display: inline-block;
  border: 1px solid #D1A628;
  background: transparent;
  padding: 5px 20px;
  padding-left: 35px;
  position: relative;
  &::before{
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    background: #B4A878;
    border-radius: 50%;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.primary-btn {
  border-radius: 70px;
  background: #D4AF37;
  border: 1px solid #D4AF37;
  padding: 5px 30px;
  padding-left: 5px;
  color: #000;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  transition: all .6s;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
}
.primary-call-icon{
  width: 52px;
  height: 52px;
  background: #0A1128;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:.45s;
  img{
    filter: brightness(0) saturate(100%) invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
  }
}
.primary-btn:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 25%, rgba(255,255,255,.45) 50%, transparent 75%);
  transform:translateX(-150%);
  transition:1s;
  z-index:1;
}
.primary-btn:after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:0;
  height:0;
  background:#fff;
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width .7s ease,height .7s ease;
  z-index:-1;
}
.primary-btn span{
  position:relative;
  z-index:2;
}
.primary-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(212,175,55,.45);
  border-color:#fff;
}
.primary-btn:hover::after{
  width:500px;
  height:500px;
}
.primary-btn:hover::before{
  transform:translateX(150%);
}
.primary-btn:hover img{
  animation:phoneShake .7s ease;
}
@keyframes phoneShake{
  0%{transform:rotate(0);}
  20%{transform:rotate(18deg);}
  40%{transform:rotate(-18deg);}
  60%{transform:rotate(15deg);}
  80%{transform:rotate(-15deg);}
  100%{transform:rotate(0);}
}
.form-control{
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #FFF;
  color: #1E1E1E;
  font-family: "PlusJakartaSans-Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 166.667%;
  padding: 15px 20px;
  width: 100%;
  &:focus,&:focus-visible{
    outline: 1px solid #D1A628;
    box-shadow: none;
  }
}
.form-control::placeholder{
  color: #1E1E1E;
}
.form-group{
  position: relative;
  textarea{
    font-family: "PlusJakartaSans-Medium";
  }
}
form .primary-btn{
  cursor: pointer;
  padding: 18px 55px;
  &:hover{
    background: #FFF;
    box-shadow: 0 18px 40px 20px rgba(212, 175, 55, .45);
	color: black;
  }
}
@media(prefers-reduced-motion: no-preference){
  @view-transition{
    navigation: auto;
  }
}
::view-transition-group(*){
  animation-duration: 2s;
}
.btn-group{
  display: flex;
  align-items: center;
  gap: 10px;
}
.fixed-btn {
  position: fixed;
  right: 10px;
  bottom: 10%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  z-index: 99;
}
.fixed-contact{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fixed-call {
  width: 62px;
  height: 62px;
  background-color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .4s;
  img{
    animation: ring 1s infinite ease-in-out;
  }
  &:hover{
    background: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, .45);
    scale: 1.1;
  }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
.wp{
  border-radius: 50%;
  width: 62px;
  height: 62px;
  &:hover{
    transform: translateY(-5px);
    scale: 1.1;
    box-shadow: 0 12px 40px #29A71A;
  }
}
.contact-form{
  .title{
    color: #FFF;
    font-size: 43px;
  }
  .form-control {
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    option{
      color: #000;
    }
  }
  .form-control::placeholder{
    color: #FFF;
  }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-30px);
  }
}
@keyframes slideInUp {
  0% {
      opacity: 0;
      transform: translateY(25%);
  }

  100% {
      opacity: 1;
      transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.50deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInLeft;
}
.slideInRight {
  animation-name: slideInRight;
}
.fadeIn {
  animation-name: fadeIn;
}
.zoomIn {
  animation-name: zoomIn;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}
.effectOver {
  transition: all 2s transform 3s;
  &:hover{
    img{
      transform: rotate(0) scale(1.2);
    animation-delay: .5s;
    }
  }
}
img{
  transition: all .5s;
}
.container {
  max-width: 1400px;
}
/*******************************
	Menu
*******************************/
header {
  position: fixed;
  width: 100%;
  top: unset;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 999;
  background: transparent;
  transition: 0.4s;
  .container-fluid{
    padding: 0 15px;
  }
}
header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: slideDown 0.45s ease-out;
  background: rgba(6, 11, 30, 0.30);
  backdrop-filter: blur(9.5px);
  padding-top: 10px;
  padding-bottom: 10px;
  .logo-wrap {
    scale: 0.6;
    margin-top: -35px;
    margin-bottom: -32px;
    background: #050B1E;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.menu-call-btn{
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Buttons */
.menu-button, 
.close-button {
  width: 50px;
  height: 50px;
  /* background-color: #fff; */
  font-size: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .5s;
  &:hover{
    img{
      filter: brightness(0) saturate(100%) invert(97%) sepia(11%) saturate(2719%) hue-rotate(17deg) brightness(95%) contrast(92%);
    }
  }
}
.menu-button img,
.close-button img{
  position: relative;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(254deg) brightness(100%) contrast(104%);
}
.menu-button {
  right: 0px;
  z-index: 102;
}
.close-button {
  left: -50px;
  z-index: 100;
}
/* *************************************************
      NAVBAR
************************************************** */
.header-btn{
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #19203A;
  color: #FFF;
  .primary-call-icon{
    width: 39px;
    height: 39px;
    background: #D4AF37;
    img{
      filter: unset;
    }
  }
}
.btn-text{
  margin-top: -1px;
}
.consultation-btn{
  padding: 5px 30px;
  padding-left: 30px;
  padding-right: 5px;
  background: #D4AF37;
  border: 0 solid rgba(255, 255, 255, 0.45);
  color: #000;
  .primary-call-icon{
    background: #FFF;
  }
  &:hover{
    .primary-call-icon{
      background: #0A1128;
    }
    .primary-call-icon img{
      animation: unset;
      filter: brightness(0) saturate(100%) invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
      transform: rotate(45deg);
    }
  }
}




.main-navbar {
  position: relative;
}
.navbar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Logo */
.logo-wrap {
  transition: ease-in-out 0.4s;
  line-height: 0;
  margin-top: -15px;
  border-radius: 50%;
}

/* *************************************************
      DESKTOP MENU  (jQuery adds classes)
************************************************** */
#desktopMenu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: start;
  gap: 10px;
}
#desktopMenu > li {
  position: relative;
}

/* top-level link */
#desktopMenu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 20px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: all .5s;
  color: #FFF;
  font-family: "NeueHaasDisplayBlackLight";
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  line-height: 34px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: 0.5s;
}
#desktopMenu > li:hover > a,
#desktopMenu > li.menu-open > a,
#desktopMenu > li > a.current-menu-item {
  border: 1px solid #BBE93F;
  background: #BBE93F;
  color: #000;
}

/* jQuery appends this arrow */
#desktopMenu > li > a .dyn-arrow {
  transition: transform 0.5s;
  width: 14px;
  height: 7px;
  margin-left: 2px;
  background: url(../img/dropdown-arrow.webp) no-repeat;
  background-size: 100%;
}
#desktopMenu > li:hover > a .dyn-arrow,
#desktopMenu > li.menu-open > a .dyn-arrow {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(0%);
}

/* =====================================================
       DESKTOP DROPDOWN â€” Infinite depth
       jQuery adds .dd-sub on every nested ul.
       .dd-l1 = first level (drops down)
       .dd-sub = all deeper levels (flies right)
    ===================================================== */

/* L1 â€” drops DOWN from navbar */
#desktopMenu > li > ul.dd-l1 {
  position: absolute;
  top: 120%;
  left: -240%;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 1000;
}
#desktopMenu > li.menu-open > ul.dd-l1 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* All deeper levels (.dd-sub) â€” expand inline on click */
#desktopMenu ul.dd-sub {
  position: relative;
  top: auto;
  left: auto;
  min-width: 100%;
  background: #f8f5ef;
  border-top: 1px solid rgba(198, 175, 137, 0.45);
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 0;
  list-style: none;
  margin: 4px 0 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  z-index: auto;
  display: none;
}
#desktopMenu li.dd-open > ul.dd-sub {
  display: block;
}

/* Every li inside any dropdown needs position:relative */
#desktopMenu ul.dd-l1 li,
#desktopMenu ul.dd-sub li {
  position: relative;
}

/* Links inside any dropdown level */
#desktopMenu ul.dd-l1 > li > a,
#desktopMenu ul.dd-sub > li > a {
  display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, padding-left 0.15s, border-color 0.15s;
}
/* Right-chevron arrow on links that have a sub */
#desktopMenu ul.dd-l1 > li > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li > a .dyn-sarrow {
  font-size: 10px;
    flex-shrink: 0;
    transition: color 0.5s;
    width: 9px;
    height: 9px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
    margin-left: 8px;
}
#desktopMenu ul.dd-l1 > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-l1 > li.dd-open > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li.dd-open > a .dyn-sarrow {
  color: #81A688;
  transform: rotate(315deg);
}
#desktopMenu > li > ul.dd-l1.mega-menu{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-width: unset;
  gap: 0 60px;
  padding: 40px;
  border-radius: 20px;
  background: #000000e4;
  li{
    border-bottom: 1px solid #3E3E3E;
    width: 370px;
    color: #000;
    transition: 0.5s;
    a{
      padding-inline: 0;
      align-items: center;
      justify-content: start;
      gap: 10px;
      white-space: normal;
      color: #FFF;
      padding: 15px;
      font-family: "NeueHaasDisplayBlackLight";
      border-radius: 12px;
      transition: all .5s;
      img{
        transition: all .5s;
      }
      &.active,&:hover{
        background: #BBE93F;
        color: #000;
        img{
          filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7459%) hue-rotate(170deg) brightness(105%) contrast(99%);
        }
      }
    }
    &:hover,
    &:focus{
      border-color: #000000e4;
    }
  }
  
}
#desktopMenu > li > ul.dd-l1.mega-menu.about-ul{
  left: -65%;
}
#desktopMenu > li > ul.dd-l1.mega-menu.frm1{
  grid-template-columns: 1fr;
}
#desktopMenu > li > ul.dd-l1.mega-menu.frm2{
  grid-template-columns: 1fr 1fr;
}
.opa{
  opacity: 1 !important;
  visibility: visible !important;
}
/* =====================================================
       MOBILE MENU CLONE â€” Infinite depth
       jQuery sets data-depth="N" on each <ul>
       Indentation auto-calculated from depth.
    ===================================================== */
#mobileMenuClone {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobileMenuClone ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  display: none;
}
#mobileMenuClone li {
  border-bottom: 1px solid #ffffff14;
  margin-inline: 6px;
}

/* Base link style â€” all levels */
#mobileMenuClone li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: color 0.2s, background 0.15s;
  white-space: normal;
  border-left: none !important;
}
.abt-dropdown{
  li a{
    justify-content: start !important;
    gap: 10px;
  }
}
#mobileMenuClone li a::after {
  display: none !important;
}
#mobileMenuClone li a:hover {
  color: #BBE93F;
}
#mobileMenuClone li a.mob-open{
  color: #BBE93F;
}
/* Depth 0 â€” top level */
#mobileMenuClone > li > a {
  padding: 10px 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: normal;
  font-family: "NeueHaasDisplayBlackLight";
}
.off-panel{
  .social {
    background: #fff;
    padding: 10px 20px;
}
}
#mobileMenuClone ul[data-depth="1"] > li.active a,
#mobileMenuClone ul[data-depth="1"] > li a:hover{
  background: #BBE93F;
  color: #000;
  img{
    filter: invert(1);
  }
}
/* Depth 1+ â€” indentation via data-depth on ul */
#mobileMenuClone ul[data-depth="1"] > li{
  border: 0;
}
#mobileMenuClone ul[data-depth="1"] > li > a {
  padding: 5px 12px 5px 10px;
  font-size: 14px;
  background: #6666661a;
  border-bottom: 1px solid #ffffff17;
  color: #ffffff;
  font-family: "NeueHaasDisplayBlackLight";
}
#mobileMenuClone ul[data-depth="2"] > li > a {
  padding: 10px 20px 10px 46px;
  font-size: 13px;
  color: #000000;
  background: #f0f0f0;
}
#mobileMenuClone ul[data-depth="3"] > li > a {
  padding: 9px 20px 9px 60px;
  font-size: 12.5px;
  color: #000000;
  background: #e9e9e9;
}
#mobileMenuClone ul[data-depth="4"] > li > a {
  padding: 9px 20px 9px 74px;
  font-size: 12px;
  color: #000000;
  background: #e2e2e2;
}
#mobileMenuClone ul[data-depth="5"] > li > a {
  padding: 9px 20px 9px 88px;
  font-size: 12px;
  color: #000000;
  background: #dadada;
}

/* Arrow */
#mobileMenuClone .mob-arr {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 0.25s, color 0.25s;
}
#mobileMenuClone a.mob-open .mob-arr {
  transform: rotate(180deg);
  color: #81A688;
}
#mobileMenuClone .dyn-arrow,
#mobileMenuClone .dyn-sarrow {
  display: none !important;
}

/* Custom Order */
.btn-order {
  background: var(--gold);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 14px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-order:hover {
  background: var(--gold-d);
  color: #fff;
  transform: translateY(-1px);
}

/* Toggler */
.nav-toggler {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  margin-left: auto;
}
.nav-toggler span {
  display: block;
  width: 30px;
  height: 3px;
  background: #FFF;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
/* â•â• OFFCANVAS â•â• */
.off-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
}
.off-overlay.show {
  opacity: 1;
}
.off-panel {
  position: fixed;
  top: 6px;
  right: -310px;
  width: 300px;
  height: 100dvh;
  background: #030e2c;
  box-shadow: -5px 0 32px 0 #ffffff29;
  z-index: 2001;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 25px 0px 0 0;
}
.off-panel.open {
  right: 0;
}
.off-head {
  background: var(--gold);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid #ffffff17;
}
.off-head .off-logo {
 position: relative;
  width: 170px;
}
.off-close {
    border: none;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    width: 22px;
    height: 40px;
    background: #00000000;
    border-radius: 4px;
}
.off-body {
  padding: 0;
  flex: 1;
}
.off-footer {
  padding: 16px 20px;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  text-align: center;
  .primary-btn{
    margin: 0 auto;
  }
}
/*************************************
                Home Page
**************************************/
.hero{
  position: relative;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
  }
}
.hero-advocate-img {
  position: absolute;
  right: -65px;
  bottom: -10px;
}
.img-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: -10px;
}
.hero-content{
  width: 50%;
  position: relative;
  h5{
    color: #FFF;
    font-family: "PlusJakartaSans-Bold";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 115.385%;
    span{
      color: #D4AC35;
    }
  }
  h1{
    color: #FFF;
    font-family: "PlayfairDisplay-Bold";
    font-size: 67px;
    font-style: normal;
    font-weight: normal;
    line-height: 95.522%;
    text-transform: uppercase;
    span{
      color: #D4AF37;
    }
  }
  p{
    color: #FFF;
  }
  &::before,
  &::after{
    position: absolute;
    content: '';
    width: 146px;
    height: 1px;
    background: #fff;
    top: 0;
    left: -20px;
  }
  &::after{
    top: -10px;
    left: -10px;
    width: 1px;
    height: 146px;
  }
}
.whatsapp-icon{
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  img{
    filter: unset;
  }
}

.whatsapp-btn{
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.43);
  color: #FFF;
  &:focus{
     color: #000000;
  }
}

/************************************
    Counter
************************************/
.hero-counter{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 50px 50px;
  background: rgba(6, 11, 30, 0.30);
  backdrop-filter: blur(9.5px);
  .container{
    position: relative;
    border-top: 1px solid rgba(106, 104, 104, 0.62);
    padding-block: 25px;
  }
  .row{
    width: 100%;
  }
}
.counter-item{
  text-align: center;
  .counter-head{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    h4{
      color: #FFF;
      font-family: "DMSerifDisplay-Regular";
      font-size: 57px;
      font-style: normal;
      font-weight: normal;
      line-height: 90.281%;
      transition: color 0.3s ease;
    }
  }
  p{
    color: #FFF;
    font-family: "PlusJakartaSans-Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 218.75%;
    margin-bottom: 0;
    transition: color 0.3s ease;
  }
  &:hover{
    img{
      filter: brightness(0) saturate(100%) invert(75%) sepia(32%) saturate(937%) hue-rotate(3deg) brightness(93%) contrast(82%);
    }
    h4{
      color: #D4AF37;
    }
    p{
      color: #D4AF37;
    }
  }
}
/************************************
   About
************************************/
.about-img{
  position: relative;
  padding-left: 40px;
  .img-cover{
    border-radius: 55px;
  }
  .counter-item{
    position: absolute;
    background: #FFF;
    border-radius: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 192px;
    padding: 40px;
    text-align: left;
    overflow: hidden;
    z-index: 1;
    h4{
      color: #000;
      font-family: "DMSerifDisplay-Regular";
      font-size: 85px;
      font-style: normal;
      font-weight: normal;
      line-height: 75.294%;
      margin-bottom: 25px;
    }
    p{
      color: #000;
      font-family: "PlusJakartaSans-SemiBold";
      font-size: 22px;
      font-style: normal;
      font-weight: normal;
      line-height: 113.636%;
    }
    &::before{
      position: absolute;
      content: '';
      width: 100%;
      height: 85%;
      background: #D4AF37;
      border-radius: 50%;
      top: -60px;
      left: -40px;
      z-index: -1;
    }
  }
}
.lawyer-info-table {
  width: 100%;
  border-collapse: collapse;
}
.lawyer-info-table tr {
  border-bottom: 1px solid rgba(142, 142, 142, 0.34);
}
.lawyer-info-table th{
  color: #000;
  font-family: "PlayfairDisplay-Bold";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  line-height: 142.857%;
  padding-block: 17px;
  text-align: left;
}
.lawyer-info-table td {
  color: #000;
  font-family: "PlusJakartaSans-Medium";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  line-height: 142.857%;
  text-align: right;
}
.about-btn{
  .primary-call-icon {
    width: 52px;
    height: 52px;
  }
}
/************************************
        My Services
************************************/
.my-service{
  background: url(../img/service-bg.webp) no-repeat center;
  background-size: cover;
  border-radius: 50px 50px 0 0;
  .section-title, p{
    color: #FFF;
  }
  .sub-section-title{
    color: #FFF;
    border-color: #FFF;
    &::before{
      background: #545050;
    }
  }
}
.my-service-content{
  position: absolute;
  inset: 0;
  background: #FFF;
  padding: 25px;
  transition: all .3s ease-in-out;
  p{
    color: #000;
    margin-bottom: 0;
  }
}
.my-service-content-head{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  .card-title{
    width: 80%;
    text-align: left;
  }
}
.service-icon{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
}
.card-title{
  color: #000;
  font-family: "PlayfairDisplay-Bold";
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  line-height: 121.212%;
  transition: all .5s ease-in-out;
}
.service-category-img{
  width: 100%;
  height: 258px;
  object-fit: cover;
  border-radius: 30px;
}
.my-service-box{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #FFF;
   height: 580px;
  .img-cover{
    scale: 0.8;
    border-radius: 50%;
    transition: all .4s ease-in-out;
  }
  &:hover{
    .img-cover{
      scale: 1;
      border-radius: 0;
    }
    .my-service-content{
      background: transparent;
      .card-title, p{
        color: #FFF;
      }
      .service-category-img{
        opacity: 0;
      }
    }
    .service-icon{
      background: #D1A628;
      img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(14%) hue-rotate(319deg) brightness(88%) contrast(100%);
      }
    }
  }
}
.my-service-slider{
  padding-left: 7%;
}

.slick-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(207, 201, 201, 0.21);
  border: 1px solid #FFF;
  top: -12%;
  left: unset;
  right: 42%;
  transition: all .3s ease-in-out;
  &:hover{
    background: #D4AF37;
  }
}
.slick-arrow {
  &::before {
    content: '';
    position: absolute;
    background: url(../img/slider-arrow.webp) no-repeat center center;
    background-size: 25%;
    opacity: 1;
    inset: 0;
    margin-left: 3px;
    transition: 0.5s;
  }
}
.slick-prev {
  right: 46%;
  &::before {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 3px;
  }
}
.slick-slide{
  margin: 0 15px;
}
.slick-list{
  margin: 0 -15px;
}
/************************************
      Why Choose 
 ************************************/
.why-choose-card{
  border-radius: 30px;
  border: 1px solid #D1A628;
  background: #FFF;
  padding: 25px;
  transition: all .3s ease-in-out;
  &:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, .45);
    border-color: #fff;
  }
}
.why-title{
  color: #000;
  font-family: "PlayfairDisplay-Bold";
  font-size: 25px;
  font-style: normal;
  font-weight: normal;
  line-height: 160%;
}
.why-choose-img{
  img{
    border-radius: 30px;
  }
}
/************************************
    Testimonial
************************************/
.our-process{
  background: url(../img/our-process-bg.webp) no-repeat center;
  background-size: cover;
  border-radius: 50px 50px 0 0;
  height: 1143px;
  .sub-section-title {
    color: #FFF;
    border-color: #FFF;
    &::before {
      background: #545050;
    }
  }
  .section-title, p {
    color: #FFF;
  }
  .container{
    position: relative;
    height: 100%;
    &::before, &::after {
      position: absolute;
      content: '';
      width: 295px;
      height: 1px;
      background: #fff;
      bottom: 20px;
      right: 0;
    }
    &::after {
      width: 1px;
      height: 295px;
      bottom: 0;
      right: 20px;
    }
  }
}
.process-curve{
  position: absolute;
  width: 80%;
  top: 40%;
  left: 44%;
  transform: translate(-50%, -50%);
}
.our-process-box{
  position: absolute;
  width: 304px;
  height: 230px;
  border-radius: 30px;
  background: #FFF;
  padding: 20px;
  transition: all .3s ease-in-out;
  span{
    color: #000;
    font-family: "DMSerifDisplay-Regular";
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 128%;
    display: block;
    margin-bottom: 55px;
  }
  h3{
    color: #000;
    font-family: "PlayfairDisplay-Bold";
    font-size: 33px;
    font-style: normal;
    font-weight: normal;
    line-height: 109.091%;
  }
  &:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, .45);
    border-color: #fff;
    .process-icon{
      background: #19203A;
      img{
        transform: rotateY(180deg);
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
      }
    }
  }
}
.process-box1{
  left: 0;
  bottom: 2%;
}
.process-box2{
  left: 29%;
  bottom: 17%;
}
.process-box3{
  left: 56%;
  bottom: 36%;
}
.process-box4{
  left: 78%;
  bottom: 62%;
}
.process-icon{
  position: absolute;
  top: 22px;
  right: 22px;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.46);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
}
/************************************
    Testimonial
************************************/
.testimonial{
  background: #F6F4F0;
  border-radius: 0;
  .sub-section-title {
    color: #000;
    border-color: #D1A628;
    &::before{
      background: #B4A878;
    }
  }
  .section-title{
    color: #000;
  }
  p{
    color: #1E1E1E;
  }
}
.testi-box{
  position: relative;
  border-radius: 30px;
  background: #FFF;
  padding: 25px;
}
.coma{
  position: absolute;
  top: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-profile{
  display: flex;
  align-items: center;
  gap: 20px;
  img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  }
  h4{
    color: #000;
    font-family: "PlayfairDisplay-Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
  }
}
.star{
  i{
    display: inline-block;
    width: 24px;
    height: 23px;
    background: url(../img/star.webp) no-repeat center center;
    background-size: 100%;
    background-position: center center;
  }
}
.testi-slider{
  .slick-arrow {
    border: 1px solid #000;
    top: -40%;
    right: 15%;
    &::before{
      filter: brightness(0) saturate(100%) invert(0%) sepia(81%) saturate(3781%) hue-rotate(32deg) brightness(107%) contrast(100%);
    }
  }
  .slick-prev {
    right: 19%;
  }
}
/************************************
     Faq
************************************/
.faq{
  background: url(../img/faq-bg.webp) no-repeat center center;
  background-size: cover;
  border-radius: 50px;
  .sub-section-title {
    color: #FFF;
    border-color: #FFF;
  }
  .section-title, p{
    color: #FFF;
  }
}
.accordion__item {
  margin: 15px auto;
  transition: .5s;
  position: relative;
  border-radius: 19px;
  background: #FFF; 
}
.accordion__item:hover {
  transform: translateY(-5px)
}
.accordion__item .accordion__title {
  position: relative;
  display: block;
  padding: 28px 60px 28px 25px;
  color: #000;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 150%;
  transition: 0.5s;
  cursor: pointer;
}
.accordion__title::after {
  content: '';
  position: absolute;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: url(../img/slider-arrow.webp) no-repeat center center;
  background-size: 25%;
  filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(14%) hue-rotate(319deg) brightness(88%) contrast(100%);
  border: 1px solid #B2B2B2;
  right: 12px;
  top: 23px;
  transform: rotate(90deg);
  line-height: normal;
  transition: all .5s;
}
.accordion__item.accordion-active .accordion__title::after{
  transform: rotate(270deg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.accordion__item.accordion-active{
  .accordion__title{
    padding-bottom: 10px;
  }
}
.accordion__item .accordion__content {
  padding: 25px;
  padding-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  display: none;
  p{
    color: #1E1E1E;
  }
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
/************************************
    Get In Touch
************************************/
.get-in-touch{
  .btn-group{
    display: block;
  }
  .primary-btn{
    width: 335px;
    justify-content: space-between;
  }
  .form-btn{
    width: auto;
    padding: 18px 55px;
  }
  .get-in-call-btn{
    background: transparent;
    border: 1px solid rgba(34, 33, 33, 0.45);
    justify-content: start;
    gap: 25px;
  }
}
.get-in-form{
  border-radius: 40px;
  border: 1px solid #D1A628;
  background: #FFF;
  padding: 30px;
}
/************************************
    Legal Question
************************************/
.legal-question{
  padding-inline: 125px;
  padding-bottom: 80px;
}
.legal-box{
  background: url(../img/legal-question-bg.webp) no-repeat center;
  background-size: cover;
  border-radius: 50px;
  padding-block: 125px;
  .section-title, p{
    color: #FFF;
  }
}
.legal-box-content{
  width: 45%;
}
/*******************************
  Footer
********************************/
footer{
  background: url(../img/footer-bg.webp) no-repeat center;
  background-size: cover;
  border-radius: 50px 50px 0 0;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  .row{
    padding-top: 30px;
    border-top: 1px solid #CDCDCD;
  }
}
.footer-text{
  display: block;
  padding-bottom: 60px;
}
.social-links{
  display: flex;
  align-items: center;
  gap: 7px;
  a{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    transition: all .5s;
  }
  a:hover{
    transform: translateY(-5px);
    background: #FFF;
    img{
      filter: brightness(0) saturate(100%) invert(11%) sepia(64%) saturate(477%) hue-rotate(187deg) brightness(96%) contrast(98%);
    }
  }
}
.mb-0{
  margin-bottom: 0;
}
footer p{
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  a{
    &:hover{
      text-shadow: 0 10px 20px #D4AF37;
    }
  }
}
.footer-title{
  color: #FFF;
  font-family: "PlayfairDisplay-Bold";
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  line-height: 133.333%;
}
.copyright{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*****************************************************
                  Inner Page
*******************************************************/

/*******************************
  Responsive
********************************/
@media (max-width: 1920px) { 
}
@media (max-width: 1600px), (max-width: 1536px){
  .popup .popup__content{
    width: 80%;
  }
  .container{
    width: 1320px;
  }
  .logo-wrap {
    width: 139px;
  }
  .hero-advocate-img{
    width: 700px;
  }
  .hero-content {
    h1 {
      font-size: 57px;
    }
    h5 {
      font-size: 24px;
    }
    &::before, &::after {
      width: 120px;
    }
    &::after {
      width: 1px;
      height: 120px;
    }
  }
  .primary-btn{
    font-size: 18px;
  }
  .my-service-slider{
    padding-left: 2%;
  }
  .card-title {
    font-size: 24px;
  }
  .service-category-img{
    height: 186px;
  }
  .why-title {
    font-size: 22px;
  }
  .process-box4{
    left: 77%;
  }
  .testi-slider {
    .slick-arrow {
      right: 8%;
    }
    .slick-prev{
      right: 13%;
    }
  }
  header.sticky {
    .logo-wrap {
      scale: 0.6;
      margin-top: -25px;
      margin-bottom: -23px;
    }
  }
  .testi-profile {
    gap: 10px;
    img {
      width: 70px;
      height: 70px;
    }
    h4 {
      font-size: 20px;
    }
  }
  .coma {
    top: 15px;
    right: 15px;
  }
  .get-in-touch {
    .primary-btn {
      width: 320px;
    }
    .form-btn {
      width: auto;
    }
  }
  .legal-question {
    padding-inline: 65px;
  }
  .legal-box-content {
    width: 50%;
  }
  .legal-box {
    padding-block: 95px;
  }
}
@media (max-width: 1536px){
}
@media (max-width: 1440px), (max-width: 1366px){
  .sec-gap {
    padding: 60px 0;
  }
  p{
  font-size: 16px;
  }
  .container{
    width: 1200px;
  }
  .primary-btn{
    font-size: 16px;
    gap: 10px;
    padding: 5px 20px;
    padding-left: 5px;
  }
  .primary-call-icon {
    width: 42px;
    height: 42px;
  }
  .whatsapp-icon {
    width: 42px;
    height: 42px;
  }
  .header-btn {
    .primary-call-icon {
      width: 29px;
      height: 29px;
      padding: 8px;
    }
  }
  .consultation-btn {
    padding: 5px 20px;
    padding-left: 20px;
    padding-right: 5px;
    .primary-call-icon {
      padding: 10px;
    }
  }
  .hero-content {
    h1 {
      font-size: 47px;
    }
    h5 {
      font-size: 20px;
    }
    &::before, &::after {
      width: 102px;
    }
    &::after {
      width: 1px;
      height: 102px;
    }
  }
  header.sticky {
    .logo-wrap {
      scale: 0.6;
      margin-top: -25px;
      margin-bottom: -20px;
    }
  }
  .mb-20 {
    margin-bottom: 15px;
  }
  .mb-30 {
    margin-bottom: 20px;
  }
  .logo-wrap {
    width: 119px;
  }
  .hero-advocate-img {
    width: 630px;
  }
  .hero-counter {
    .container {
      padding-block: 15px;
    }
  }
  .counter-item {
    & .counter-head {
      h4 {
        font-size: 47px;
      }
    }
    p {
      font-size: 14px;
    }
  }
  .fixed-call {
    width: 52px;
    height: 52px;
    padding: 15px;
  }
  .wp {
    width: 52px;
    height: 52px;
  }
  .sub-section-title {
    font-size: 12px;
    &::before {
      width: 10px;
      height: 10px;
    }
  }
  .section-title{
    font-size: 38px;
  }
  .dec{
    font-size: 20px;
  }
  .lawyer-info-table th{
    font-size: 18px;
    padding-block: 12px;
  }
  .lawyer-info-table td {
    font-size: 18px;
  }
  .about-btn {
    .primary-call-icon {
      width: 42px;
      height: 42px;
    }
  }
  .about-img {
    & .counter-item {
      width: 142px;
      padding: 20px;
      h4 {
        font-size: 70px;
        margin-bottom: 20px;
      }
      p {
        font-size: 18px;
      }
    }
  }
  .card-title {
    font-size: 22px;
  }
  .service-icon {
    width: 52px;
    height: 52px;
  }
  .service-category-img {
    height: 176px;
  }
  .slick-slide{
    margin: 0 10px;
  }
  .slick-list{
    margin: 0 -10px;
  }
  .my-service-content-head {
    gap: 10px;
  }
  .my-service-content {
    padding: 20px;
  }
  .slick-arrow {
    width: 44px;
    height: 44px;
  }
  .why-title {
    font-size: 18px;
  }
  .our-process {
    height: 900px;
  }
  .our-process-box {
    width: 260px;
    height: 190px;
    span {
      font-size: 40px;
      margin-bottom: 44px;
    }
    h3 {
      font-size: 26px;
    }
  }
  .process-icon {
    top: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
    padding: 11px;
  }
  .process-curve {
    width: 75%;
  }
  .testi-box {
    padding: 20px;
    p{
      line-height: 146.667%;
    }
  }
  .testi-profile {
    & img {
      width: 60px;
      height: 60px;
    }
    h4 {
      font-size: 18px;
    }
  }
  .coma{
    width: 52px;
    height: 52px;
    padding: 14px;
  }
  .star {
    i {
      width: 20px;
      height: 19px;
    }
  }
  .accordion__item .accordion__title{
    padding: 22px 50px 22px 20px;
    font-size: 17px;
  }
  .accordion__item .accordion__content {
    padding: 20px;
    padding-top: 0;
  }
  .accordion__title::after{
    width: 31px;
    height: 31px;
  }
  .get-in-touch {
    .primary-btn {
      width: 275px;
    }
    .form-btn {
      width: auto;
      padding: 12px 40px;
    }
    .get-in-call-btn {
      gap: 20px;
    }
  }
  .form-control {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 12px;
  }
  .title {
    font-size: 26px;
  }
  .get-in-form {
    padding: 20px;
    border-radius: 30px;
  }
  .legal-question {
    padding-inline: 35px;
  }
  footer {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .footer-title {
    font-size: 24px;
  }
  footer p {
    font-size: 17px;
  }
  .social-links {
    a {
      width: 48px;
      height: 48px;
      padding: 12px;
    }
  }
  .left {
    padding: 20px;
    .logo-img{
      width: 119px;
    }
    p {
    a {
      font-size: 17px;
        span {
          width: 39px;
          height: 39px;
          padding: 9px;
        }
      }
    }
  }
  .contact-form {
    .title {
      font-size: 33px;
    }
  }
  form .primary-btn {
    padding: 12px 40px;
  }
  .right {
    padding: 20px;
  }
  .popup .popup__content {
    width: 70%;
  }
  .our-process{
    .container{
      &::before {
        width: 195px;
      }
      &::after {
        height: 195px;
      }
    }
  }
}
@media (max-width: 1199.98px){
  .container{
    width: 992px;
  }
}
@media (max-width: 991.98px){
  .fixed-btn {
    right: 5px;
  }
  .sec-gap {
    padding: 40px 0;
  }
  .container {
    width: 722px;
  }
  .menu-call-btn {
    a:nth-child(1),
    a:nth-child(2) {
      background: transparent;
      padding: 0;
      border: none;
      .btn-text{
        display: none;
      }
      .primary-call-icon {
        width: 39px;
        height: 39px;
        padding: 11px;
      }
    }
  }
  .hero{
    height: 860px;
    border-radius: 0 0 30px 30px;
    .container{
      display: block;
      padding-top: 60px;
    }
    .hero-content {
      width: 100%;
      text-align: center;
      .btn-group{
        justify-content: center;
      }
      &::before, 
      &::after {
      display: none;
      }
    }
  }
    .hero-advocate-img {
      position: relative;
      width: 430px;
      bottom: unset;
      right: unset;
      margin-inline: auto;
      margin-bottom: -16px;
    }
  .hero-counter {
    .container {
      padding-top: 15px;
    }
  }
  .counter-item {
    & .counter-head {
      img{
        width: 26px;
      }
      h4 {
        font-size: 37px;
      }
    }
  }
  .about-img {
    padding-left: 0;
    .img-cover {
      border-radius: 34px;
    }
    .counter-item {
      top: 0;
      transform: unset;
    }
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .my-service {
    border-radius: 30px 30px 0 0;
  }
  .slick-arrow{
    right: unset;
    left: 5%;
  }
  .slick-next{
    left: 13%;
  }
  .service-icon {
    padding: 12px;
  }
  .why-choose-img {
    img {
      width: 100%;
    }
    img:nth-child(2) {
      display: none;
    }
  }
  .get-in-touch {
    .btn-group {
      display: flex;
      .mb-20{
        margin-bottom: 0;
      }
      .primary-btn {
        width: auto;
      }
    }
  }
  .legal-box-content {
    width: 80%;
  }
  .legal-box {
    padding-block: 50px;
    border-radius: 20px;
  }
  .legal-question { 
    padding-bottom: 40px;
  }
  footer {
    border-radius: 30px 30px 0 0;
    padding-top: 50px;
    
  }
  .footer-logo{
    width: 130px;
    margin-inline: auto;
  }
  .copyright {
    display: block;
    text-align: center;
  }
  .legal-question {
    padding-inline: 15px;
  }
  .process-curve {
    display: none;
  }
  .our-process {
    height: auto;
    border-radius: 30px 30px 0 0;
  }
  .our-process-box {
    width: 48%;
    height: auto;
    position: relative;
    top: unset;
    left: unset;
    border-radius: 20px;
  }
  .processs-box-container{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .testimonial{
    .container{
      margin-bottom: 70px;
    }
  }
  .testi-slider {
    .slick-arrow {
      top: -14%;
    }
  }
  .faq {
    border-radius: 30px;
  }
  .popup .popup__content {
    width: 90%;
  }
  .right {
    background: linear-gradient(158deg, rgb(23 22 22 / 0%) 0.81% 54.81%, rgb(11 19 46) 90.19%);
  }
  .our-process{
    .container{
      &::before {
        bottom: -24px;
        right: -8px;
      }
      &::after {
        bottom: -30px;
        right: 4px;
      }
    }
  }
}
@media (max-width: 575.98px){
  .sec-gap {
    padding: 25px 0;
  }
  .container{
    width: 100%;
  }
  p{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .primary-btn {
    font-size: 14px;
    padding: 3px 15px;
    padding-left: 3px;
  }
  .menu-call-btn {
    a:nth-child(1), a:nth-child(2) {
      display: none;
    }
  }
  header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .logo-wrap {
    width: 70px;
    margin-top: -5px;
  }
  header.sticky {
    .logo-wrap {
      scale: 0.6;
      margin-top: -15px;
      margin-bottom: -15px;
    }
  }
  .consultation-btn {
    padding: 3px 15px;
    padding-left: 15px;
    padding-right: 3px;
    .primary-call-icon {
      width: 25px;
      height: 25px;
      padding: 8px;

    }
  }
  .hero {
    height: 790px;
    border-radius: 0 0 20px 20px;
    .container {
      padding-top: 40px;
    }
  }
  .hero-advocate-img {
    width: 245px;
    margin-bottom: -16px;
  }
  .hero-content {
    h1 {
      font-size: 37px;
    }
    h5 {
      font-size: 16px;
    }
    .btn-group{
      flex-direction: column;
    }
  }
  .mb-20 {
    margin-bottom: 10px;
  }
  .primary-call-icon {
    width: 32px;
    height: 32px;
    padding: 9px;
  }
  .whatsapp-icon{
    width: 32px;
    height: 32px;
    padding: 0;
  }
  .hero-counter {
    .container {
      padding-top: 15px;
    }
  }
  .counter-item {
    .counter-head {
      h4 {
        font-size: 27px;
      }
      img {
        width: 18px;
      }
    }
    p {
      font-size: 12px;
    }
  }
  .fixed-call {
    width: 42px;
    height: 42px;
    padding: 12px;
  }
  .wp {
    width: 42px;
    height: 42px;
  }
  .fixed-contact {
    gap: 10px;
  }
  .fixed-btn {
    right: 0;
  }
  .about-img {
    .img-cover {
      border-radius: 18px;
    }
    .counter-item {
      width: 98px;
      padding: 10px;
      border-radius: 10px;
      h4 {
        font-size: 50px;
        margin-bottom: 10px;
      }
      p {
        font-size: 14px;
      }
    }
  }
  .sub-section-title {
    padding: 2px 10px;
    padding-left: 20px;
    &::before {
      width: 8px;
      height: 8px;
      left: 8px;
    }
  }
  .section-title {
    font-size: 28px;
  }
  .dec {
    font-size: 16px;
  }
  .lawyer-info-table th {
    font-size: 15px;
    padding-block: 10px;
  }
  .lawyer-info-table td {
    font-size: 15px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
  .my-service-box {
    border-radius: 15px;
	height: 405px;
  }
  .card-title {
    font-size: 18px;
  }
  .service-category-img {
    border-radius: 15px;
    height: 150px;
  }
  .my-service-content {
    padding: 15px;
  }
  .slick-arrow {
    width: 33px;
    height: 33px;
  }
  .mb-80 {
    margin-bottom: 60px;
  }
  .slick-slide{
    margin: 0 5px;
  }
  .slick-list{
    margin: 0 -5px;
  }    
  .slick-next {
    left: 17%;
  }
  .my-service{
    border-radius: 15px 15px 0 0;
  }
  .why-choose-card {
    border-radius: 15px;
    padding: 15px;
  }
  .why-choose-icon{
    width: 60px;
  }
  .mb-10 {
    margin-bottom: 5px;
  }
  .why-choose-img {
    img {
      border-radius: 15px;
      margin-bottom: 0;
    }
  }
  .our-process {
    border-radius: 15px 15px 0 0;
  }
  .about-btn{
    .primary-call-icon {
      width: 34px;
      height: 34px;
      padding: 12px;
    }
  }
  .our-process-box {
    padding: 10px;
    border-radius: 10px;
    span {
      font-size: 30px;
      margin-bottom: 44px;
    }
    h3 {
      font-size: 20px;
    }
  }
  .process-icon {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    padding: 8px;
  }
  .processs-box-container {
    margin-top: 20px;
    gap: 10px;
  }
  .testi-box{
    padding: 15px;
    border-radius: 15px;
  }
  .testi-profile {
    & img {
      width: 50px;
      height: 50px;
    }
    h4 {
      font-size: 16px;
    }
  }
  .coma {
    width: 42px;
    height: 42px;
    padding: 12px;
    top: 10px;
    right: 10px;
  }
  .star {
    margin-bottom: 0;
    i {
      width: 17px;
      height: 16px;
    }
  }
  .faq {
    border-radius: 15px;
  }
  .accordion__item {
    margin: 10px auto;
    border-radius: 11px;
  }
  .accordion__item .accordion__title {
    padding: 15px 40px 16px 15px;
    font-size: 16px;
  }
  .accordion__item .accordion__content {
    padding: 15px;
    padding-top: 0;
  }
  .accordion__title::after {
    width: 25px;
    height: 25px;
    top: 16px;
    right: 10px;
  }
  .get-in-touch {
    .btn-group {
      flex-direction: column;
      align-items: start;
      .primary-btn {
        width: 233px;
      }
    }
    .mb-30 {
      margin-bottom: 15px;
    }
    .primary-btn.form-btn {
      width: auto;
      padding: 10px 30px;
    }
  }
  .get-in-form {
    padding: 10px;
    border-radius: 15px;
  }
  .title {
    font-size: 22px;
  }
  .form-control {
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
  }
  .legal-box-content {
    width: 100%;
  }
  .legal-box {
    padding-block: 25px;
    border-radius: 13px;
  }
  footer {
    border-radius: 15px 15px 0 0;
    padding-top: 30px;
    text-align: center;
    padding-bottom: 20px;
    .row {
      padding-top: 0px;
    }
  }
  .footer-text {
    padding-bottom: 20px;
  }
  .footer-logo {
    width: 90px;
  }
  .footer-title {
    font-size: 20px;
  }
  footer p {
    font-size: 15px;
  }
  .social-links {
    justify-content: center;
    a {
      width: 38px;
      height: 38px;
      padding: 11px;
    }
  }
  .popup .popup__content {
    width: 95%;
    border-radius: 13px;
    background-position: center;
  }
  .contact-form {
    .title {
      font-size: 24px;
    }
  }
  .right {
    padding: 15px;
  }
  .left {
    display: none;
  }
  form .primary-btn {
    padding: 10px 30px;
  }
  .popup .popup__content .close {
    width: 35px;
    height: 35px;
  }
  .popup .popup__content .close span{
    width: 18px;
    height: 3px;
  }
  .our-process{
    .container{
      &::before {
        bottom: -12px;
        right: 1px;
        width: 139px;
      }
      &::after {
        height: 139px;
        bottom: -20px;
        right: 7px;
      }
    }
  }
}

.review-text{
	display: none;
}

.repocean-content-wrapper .right{
    background: transparent;
}