* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

:root {
  /* --light: #fff8ec;
  --light-golden: #ead7b4;
  --mid-golden: #cbab62;
  --dark-golden: #af8900; */
  --golden: #ba9b4b;
  --light-golden: #fbfaf6;
  --maroon: #800000;
}

:root {
  --title-font: 'norger';
  font-family: var(--title-font);
  --para-font: 'Cormorant Garamond';
  font-family: var(--para-font);
  --sub-title-font: 'milcora';
  font-family: var(--sub-title-font);
}

a {
  text-decoration: none !important;
}


::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: var(--golden);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/* .row{
 overflow: visible;
}  */

/* .row{
  align-items: center;
} 
/* 

@font-face {
  font-family: 'Milcora';
  font-style: normal;
  font-weight: normal;
  src: local('Milcora'), url('../fonts/milcora/Milcora.woff') format('woff');
}

@font-face {
  font-family: 'Milcora otf';
  font-style: normal;
  font-weight: normal;
  src: local('Milcora'), url('../fonts/milcora/Milcora.otf') format('otf');
}

@font-face {
  font-family: 'Milcora';
  font-style: normal;
  font-weight: normal;
  src: local('Milcora'), url('../fonts/milcora/Milcora.ttf') format('ttf');
}

@font-face {
  font-family: 'Roabla';
  font-style: normal;
  font-weight: normal;
  src: local('Roabla'), url('../fonts/roabla/Roabla.woff') format('woff');
}

@font-face {
  font-family: 'sheran';
  src: local('sheran'), url('../fonts/sheran/sheran.woff') format('woff');
}

@font-face {
  font-family: 'mardigare';
  src: local('mardigare'), url('../fonts/mardigare/mardigare.woff') format('woff');
} */

@font-face {
  font-family: 'norger';
  src: local('norger'), url('../fonts/norger/Norger.woff') format('woff');
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: local('Cormorant Garamond'), url('../fonts/cormorant_garamond/static/CormorantGaramond-Regular.ttf') format('ttf');
}

@font-face {
  font-family: 'Milcora';
  src: local('Milcora'), url('../fonts/milcora/Milcora.woff') format('woff');
}


/* ============== COMMON =============== */
body {
  overflow-x: hidden;
  margin: 0;
  background-color: var(--light);
  font-family: var(--para-font);
}

/* 
.row,
.section,
section {
  position: relative;
  overflow: visible;
} */

.section,
section {
  text-align: center;
}

p {
  color: #333;
  font-size: 20px;
  line-height: 35px;
  padding-top: 30px;
}

/* ===================== HEADER ===================== */

.studio-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 9999;
}

.studio-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 85%;
  margin: 0 auto;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.logo img {
  height: 79px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 0px;
}

.menu li {
  position: relative;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  font-family: var(--para-font);
}

.menu a:hover {
  color: var(--golden);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  display: none;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 3px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-overlay {
  display: none;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

.dropdown-menu li {
  width: 100%;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu>li>a {
  padding: 0px 20px !important;
  width: 100%;
  text-align: left;
  font-size: 19px !important;
}

.dropdown-menu>li>a:hover {
  background: var(--golden);
}



@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 350px;
    max-width: 57vw;
    height: auto;
    max-height: calc(100vh - 100px);
    background: #000;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s ease;
    gap: 20px;

  }

  .menu.active {
    right: 0;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .hamburger {
    display: flex;
    z-index: 10000;
  }

  .studio-container {
    padding: 0px;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .menu li {
    flex: 0 0 auto;
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .menu a {
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
    /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); */
    border-radius: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    animation: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  }

  .dropdown.active .dropdown-menu {
    display: flex !important;
    max-height: 500px;
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu {
    color: #ffffff !important;
    background-color: #000 !important;
  }

  .dropdown-menu>li>a {
    color: #fff;
  }
}

@media(max-width:900px) {
  .menu a {
    font-size: 19px;
  }

  .logo img {
    height: 63px;
  }
}

@media(max-width:400px) {
  .menu {
    max-width: 77vw;
  }
}

/* ================= WEBSITE LOADER ================== */
/* 
.studio-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.studio-loader-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.studio-loader-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.2);
  animation: studio-loader-zoom 6s infinite;
}

.studio-loader-img:nth-child(1) { animation-delay: 0s; }
.studio-loader-img:nth-child(2) { animation-delay: 1.5s; }
.studio-loader-img:nth-child(3) { animation-delay: 3s; }
.studio-loader-img:nth-child(4) { animation-delay: 4.5s; }

@keyframes studio-loader-zoom {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .studio-loader-img {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .studio-loader {
    background: #000;
  }
} */
/* Container */
/* .studio-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.studio-loader-stack {
  position: relative;
  width: min(60vw, 300px);
  aspect-ratio: 1 / 1;
}

.studio-loader-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 16px;

  opacity: 0;
  transform: scale(0.6);
  z-index: 1;

  animation: studio-loader-stack-zoom 4s ease-in-out infinite;
}

.studio-loader-card:nth-child(1) { z-index: 5; animation-delay: 0s; }
.studio-loader-card:nth-child(2) { z-index: 4; animation-delay: 1s; }
.studio-loader-card:nth-child(3) { z-index: 3; animation-delay: 2s; }
.studio-loader-card:nth-child(4) { z-index: 2; animation-delay: 3s; }
.studio-loader-card:nth-child(5) { z-index: 1; animation-delay: 4s; }

@keyframes studio-loader-stack-zoom {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  20% {
    opacity: 1;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    opacity: 0;
    transform: scale(1.4);
  }

  100% {
    opacity: 0;
  }
}
.studio-loader-card {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .studio-loader-stack {
    width: min(80vw, 260px);
  }
}

@media (max-width: 480px) {
  .studio-loader-stack {
    width: min(90vw, 220px);
  }

  .studio-loader-card {
    border-radius: 12px;
  }
} 

.studio-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-loader-stack {
  position: relative;
  width: min(60vw, 320px);
  aspect-ratio: 1 / 1;
}

.studio-loader-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;

  transform-origin: center;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-loader-card {
  transform: translateY(80px) scale(0.7);
  opacity: 0;
}

.studio-loader-card.is-top {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 5;
}

.studio-loader-card.level-1 {
  transform: translateY(-10px) scale(0.92);
  opacity: 0.9;
  z-index: 4;
}

.studio-loader-card.level-2 {
  transform: translateY(-20px) scale(0.85);
  opacity: 0.7;
  z-index: 3;
}

.studio-loader-card.level-3 {
  transform: translateY(-30px) scale(0.78);
  opacity: 0.5;
  z-index: 2;
}  */

/* ===== LOADER BASE ===== */
.studio-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999999999999999;
  overflow: hidden;
}

.studio-loader-stack {
  position: relative;
  width: min(50vw, 500px);
  aspect-ratio: 1 / 1;
}

.studio-loader-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform, opacity;

  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-loader-card {
  transform: translateY(60px) scale(0.7);
  opacity: 0;
}

.studio-loader-card.is-top {
  transform: translateY(0) scale(1.2);
  opacity: 1;
  z-index: 6;
}

.studio-loader-card.level-1 {
  transform: translateY(-8px) scale(0.93);
  transform: rotate(20deg);
  opacity: 0.9;
  z-index: 5;
}

.studio-loader-card.level-2 {
  transform: translateY(-16px) scale(0.86);
  transform: rotate(-10deg);
  opacity: 0.75;
  z-index: 4;
}

.studio-loader-card.level-3 {
  transform: translateY(-24px) scale(0.8);
  transform: rotate(-20deg);
  opacity: 0.6;
  z-index: 3;
}

.studio-loader-card.level-4 {
  transform: translateY(-32px) scale(0.75);
  transform: rotate(-30deg);
  opacity: 0.45;
  z-index: 2;
}



@media (max-width: 992px) {
  .studio-loader-stack {
    width: min(65vw, 280px);
  }
}

@media (max-width: 600px) {
  .studio-loader-stack {
    width: min(80vw, 240px);
  }

}

@media (max-width: 400px) {
  .studio-loader-stack {
    width: 90vw;
  }
}

/* ====================== HOME PAGE STYLING START ======================== */

/* ---------------- HERO SLIDER STYLING ----------------- */



/* ------------- ABOUT US ------------------- */

.home-about-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px 0;
}

.home-about-wrap {
  max-width: 970px;
  margin: 0 auto;
  margin-top: 120px;
}

.home-about-title {
  text-align: center;
}

.home-about-title h2 {
  margin: 0;
  color: #766026;
  color: #896f2d;
  color: var(--maroon);
  /* color: var(--golden); */
  font-size: 100px;
  /* font-weight: bold; */
  /* line-height: 120px; */
  font-family: var(--title-font);
  text-transform: capitalize;
}

.home-about-title p {
  max-width: 766px;
  margin: 0 auto;
  font-family: var(--para-font);
  font-size: 23px;
}

.home-about-left-images,
.home-about-right-images {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
}

.home-about-left-images {
  left: 0;
}

.home-about-right-images {
  right: 0;
  text-align: right;
  margin-top: 50px;
}

.home-about-left-images .image-1,
.home-about-right-images .image-1 {
  margin-bottom: -45px;
}

.home-about-left-images .image-2,
.home-about-right-images .image-2 {
  position: relative;
  left: 174px;
}

.home-about-right-images .image-2 {
  /* margin-top: 110px; */
  margin-right: 30px;
  left: auto;
}

.image-1.downup {
  text-align: left;
}

.updown {
  animation: updown 5s linear infinite;
}

.downup {
  animation: downup 7s linear infinite;
}

.image-1 .image-move {
  height: 480px;
}

.image-1 .image-move img {
  height: 100%;
}

.image-2 .image-move {
  height: 300px;
}

.image-2 .image-move img {
  height: 100%;
}

.image-1 .image-move2 {
  height: 300px;
}

.image-1 .image-move2 img {
  height: 100%;
}

.image-2 .image-move2 {
  height: 480px;
}

.image-2 .image-move2 img {
  height: 100%;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes downup {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* @media(max-width:1747px){
  .home-about-left-images .image-2, .home-about-right-images .image-2 {
    position: relative;
    left: 0px;
}
 
.image-2 .downup .image-move img{
  text-align: left;
}
}

@media(max-width:1561){
 .image-1.downup {
    text-align: right;
}
.image-1 .image-move img{
      width: 270px;
}
} */


@media(max-width:1813px) {

  .home-about-left-images .image-2,
  .home-about-right-images .image-2 {
    left: 18px;
  }

  /* .image-1 .image-move2 {
    text-align: center;
  } */
}

@media(max-width:1700px) {
  .image-1 .image-move2 {
    text-align: right;
    margin-right: 13%;
  }
}

@media(max-width:1600px) {
  .home-about-left-images .image-1 img {
    height: 400px;
    margin-left: -145px;
  }

  .image-2 .image-move2 {
    height: 400px;
  }

  .home-about-left-images .image-2 {
    text-align: left;
  }

  .image-1.downup {
    text-align: right;
  }

}

@media(max-width:1422px) {
  .image-1 .image-move2 {
    height: 250px;
  }

  .image-2 .image-move {
    height: 250px;
  }

  .image-1 .image-move2 {
    text-align: right !important;
  }
}

@media (max-width: 1399px) {

  .home-about-left-images,
  .home-about-right-images {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    text-align: center;
    margin: 40px 0;
  }

  .home-about-left-images .image-2,
  .home-about-right-images .image-2 {
    left: 0;
    margin-top: -20%;
    /* margin-bottom: 10%; */
  }

  .home-about-right-images {
    margin-top: 50px;
  }

  .home-about-wrap {
    margin-top: 0;
    padding: 0 20px;
  }

}

@media (max-width: 1600px) {
  .home-about-section {
    padding: 50px 0;
  }

  .home-about-title h2 {
    font-size: 70px;
    line-height: 90px;
  }
}

@media(max-width:1297px) {
  .home-about-left-images .image-1 img {
    width: auto;
  }

  .home-about-left-images .image-2 {
    text-align: end;
    margin-bottom: -10%;
    margin-top: -10%;
  }

  /* .image-move2 {
    margin-bottom: -15%;
  } */
}

@media (max-width: 1199px) {
  .home-about-title h2 {
    font-size: 50px;
    line-height: 70px;
  }

  .home-about-title p {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .home-about-section {
    padding: 90px 0;
  }

  .home-about-title h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .home-about-title p {
    font-size: 16px;
    line-height: 26px;
  }

  .home-about-left-images .image-2 {
    margin-bottom: 2%;
    margin-top: -21%;
  }

  .image-2 .image-move {
    height: 218px;
  }

  .image-move2 {
    margin-bottom: -26%;
  }

  .home-about-right-images .image-2 {
    text-align: left;
    margin-top: -5%;
    margin-bottom: 32%;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .home-about-section {
    padding: 0px 0;
  }

  .home-about-title h2 {
    font-size: 60px;
    line-height: 50px;
  }

  .home-about-title p {
    font-size: 15px;
  }

  .home-about-left-images .image-2 {
    margin-bottom: 2%;
    margin-top: -52%;
  }

  .image-2 .image-move {
    height: 200px;
  }

  .home-about-left-images .image-1 img {
    height: 341px;
  }

  .home-about-right-images .image-2 {
    text-align: left;
  }

  .image-1 .image-move2 {
    height: 200px;
  }

  .image-2 .image-move2 {
    height: 341px;
  }
}

@media (max-width: 575px) {
  .home-about-title h2 {
    font-size: 35px;
    line-height: 42px;
  }

  .home-about-title p {
    font-size: 14px;
  }

}

@media (max-width: 400px) {
  .home-about-title h2 {
    font-size: 40px;
    line-height: 36px;
  }

  .home-about-title p {
    font-size: 13px;
  }

  .image-1 .image-move img {
    height: 350px;
    margin-left: -10%;
  }
}



/* --------------- COUNTER ----------------------- */





/* -------------------- SERVICES ---------------------- */
.fix-container {
  padding: 5% 10% 0% 10%;
  background: #fff;
}

/* 
.home-service-section .home-service-wrap .home-service-item {
    text-align: center;
    position: relative;
    z-index: 1;
       margin-bottom: 20%;
}

.home-service-section  {
    padding: 10% 5% 0;
}

.home-service-section .home-service-wrap .home-service-item .home-service-img { */
/* width: 480px;
    height: 480px;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    background: #fff;
    margin: 0 auto; */
/* width: 467px;
    height: 467px;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    background: #eae1c0;
    margin: 0 auto;
}

.home-service-img-inner {
    border-radius: 50%;
    overflow: hidden;
}

.home-service-img img {
    border-radius: 50%;
}

.home-service-img-inner img {
      transition: all .3s;
    transform: scale(1);
      height: 450px;
    width: 450px;

    object-fit: cover;
}

.home-service-flower {
    position: absolute;
    right: -90px;
    top: -35px;
    z-index: -1;
}

.home-service-content {
    max-width: 378px;
    margin: 30px auto 0;
}

.home-service-content span {
    font-size: 42px;
    font-weight: 400;
    color: #ba9b4b;
    margin-bottom: 10px;
    display: block;
    font-family: 'norger';
}

.home-service-content h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.home-service-content p {
         font-size: 18px;
    color: #5C5C5C;
    font-family: var(--para-font);
    font-size: 20px;
    padding-top: 0px;
}

.home-service-shape {
    text-align: center;
    margin-bottom: 20px;
}

.service-top-shape{
      position: absolute;
    left: 0%;
    top: 5%;
}

.service-top-shape-right{
      position: absolute;
    right: 0%;
    top: 0%;
}
.home-service-bottom{
  position: absolute;
    bottom: 0%;
    right: -1%;
}


.home-service-wrap{
      margin: 5% 0%;
} */


.home-service-section {
  padding: 7% 5% 0%;
}

.new-service-design {
  padding: 6% 0%;
}

.new-service-details-box h1 {
  font-family: var(--sub-title-font);
  color: var(--golden);
  font-size: 40px;
  padding-top: 4%;
}

.new-service-details-box a h1 {
  text-decoration: none;
}

.service-bottom {
  margin-top: 5%;
}

.service-img-box {
  width: 95%;
  margin: 0 auto;
}

.service-img-box {
  position: relative;
  overflow: hidden;
}

.service-img-box img {
  border: 10px solid #ba9b4b1c;
  /* opacity: 0.5; */
  padding: 2px;
  width: 100%;
  transition: transform 0.3s ease;
}

.service-img-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-img-box .hover-para {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  width: 90%;
  font-size: 16px;
  line-height: 1.4;
  padding: 23px;
}

.service-img-box:hover .overlay,
.service-img-box:hover .hover-para {
  opacity: 1;
  font-family: var(--para-font);
  font-size: 23px;
}

.service-img-box:hover img {
  transform: scale(1.05);
}

.service-center {
  margin-top: 6% !important;
}


@media(max-width:1600px) {
  .new-service-details-box h1 {
    font-size: 30px;
  }

  .service-img-box:hover .overlay,
  .service-img-box:hover .hover-para {
    font-size: 17px;
  }
}

@media(max-width:1200px) {
  .new-service-details-box h1 {
    font-size: 20px;
  }

  .service-img-box:hover .overlay,
  .service-img-box:hover .hover-para {
    font-size: 15px;
  }
}


@media(max-width:900px) {
  .home-service-section {
    padding: 7% 0% 0%;
  }

  .service-img-box img {
    border: 5px solid #ba9b4b1c;
  }
}

/* @media(max-width:1600px){
  .new-service-details-box h1{
    font-size: 30px;
  }
} */
/* ------------------ TESTIMONIAL ---------------- */

/* =================== TESTIMONIAL SLIDER SECTION ==================== */

.carousel-item {
  min-height: 280px;
}

/* =================== TESTIMONIAL SLIDER SECTION ==================== */

.testi-section-padding {
  padding: 100px 0px 100px 0px;
}

.testi-slider-bg {
  background: url('../images/home/testi-bg.png');
}

.testi-section-padding {
  padding: 200px 100px;
}

.testi-slider-section {
  padding: 120px 0px 100px 150px;
  position: relative;
  overflow: hidden;
}

.testi-text-box {
  max-width: 40%;
}


.testi-slider-section .row {
  position: relative;
  min-height: 600px;
}

.testi-left-img {
  position: relative;
  height: 600px;
}

.testi-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 10px;
}

.section-title {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 3;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


.testi-right-slider {
  position: relative;
  z-index: 4;
  /* margin-top: 13% !important; */
  margin: 0 auto;
}


.testi-bg {
  background: #00000038;
  height: 700px;
  width: 890px;
  transform: rotate(3deg);
  position: relative;
  margin-bottom: -77%;
  overflow: visible;
}


.carousel-item {
  padding: 67px 40px 0px 40px;
  text-align: center;
  min-height: 300px;
  align-items: center;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
}

.carousel-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;
  border: 5px solid #f8f9fa;
}

.carousel-item h1 {
  font-size: 5.2rem;
  color: #333;
  font-family: var(--sub-title-font);
  margin-bottom: 0px;
  font-weight: 300;
}

.carousel-item p {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-family: var(--para-font);
}

.carousel-indicators {
  bottom: 15px;
  margin-left: 20% !important;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #171717 !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}


.home-testi-title-box {
  margin-bottom: 2%;
  margin-top: -9%;
  text-align: right;
}


.home-testi-title-box h1 {
  font-size: 6rem;
}

.carousel-indicators {
  margin: 0 auto;
}

#myCarousel {
  background-image: url('../images/home/testi-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .carousel-inner {
    position: relative;
    width: 40%;
    overflow: hidden;
    margin: 0 auto;
    top: 15%;
} */

/* .carousel {
    height: 500px;
} */
/*  ----------------- TESTI MEDIA QUERY --------------- */



@media(max-width:1300px) {
  .carousel-item {
    padding: 35px 40px 0px 40px;
  }
}

@media (max-width: 1200px) {
  .testi-slider-section {
    padding: 100px 40px;
  }

  .testi-right-slider {
    left: -5%;
    top: -20%;
  }

  .home-testi-title-box h1 {
    font-size: 4.5rem;
  }

  .carousel-item h1 {
    font-size: 4rem;
  }
}

@media(max-width:1000px) {

  .carousel-item {
    padding: 30px 40px 0px 40px;
  }
}

@media (max-width: 992px) {
  .testi-slider-section {
    padding: 80px 30px;
  }

  .testi-slider-section .row {
    min-height: auto;
  }

  .testi-left-img {
    height: 450px;
  }

  .section-title {
    top: 30px;
    left: 30px;
    font-size: 1.5rem;
  }

  .testi-right-slider {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 40px !important;
  }

  #myCarousel {
    padding: 30px;
    height: 250px;
  }

  .carousel-item {
    padding: 40px 20px;
  }

  .carousel-item h1 {
    font-size: 3rem;
  }

  .carousel-item p {
    font-size: 18px;
  }

  .home-testi-title-box {
    text-align: center;
    margin-top: 0;
  }

  .home-testi-title-box h1 {
    font-size: 3.5rem;
  }

  .carousel-indicators {
    margin: 0 auto !important;
  }

}


@media (max-width: 768px) {
  .testi-slider-section {
    padding: 60px 20px;
  }

  .testi-left-img {
    height: 350px;
  }

  .section-title {
    top: 20px;
    left: 20px;
    font-size: 1.2rem;
  }

  #myCarousel {
    padding: 20px;
    height: 300px;
  }

  .carousel-item {
    padding: 30px 15px;
    min-height: auto;
  }

  .carousel-item img {
    width: 90px;
    height: 90px;
  }

  .carousel-item h1 {
    font-size: 2.2rem;
  }

  .carousel-item p {
    font-size: 16px;
  }

  .home-testi-title-box h1 {
    font-size: 2.5rem;
  }

  .carousel-indicators {
    margin-left: 0 !important;
    text-align: center;
  }

  .carousel-indicators {
    margin: 0 auto !important;
  }

}


@media (max-width: 480px) {
  .testi-slider-section {
    padding: 50px 15px;
  }

  .testi-left-img {
    height: 280px;
  }

  .section-title {
    font-size: 1rem;
  }

  .carousel-item h1 {
    font-size: 1.8rem;
  }

  .carousel-item p {
    font-size: 14px;
  }

  .home-testi-title-box h1 {
    font-size: 2rem;
  }

  .carousel-indicators {
    margin: 0 auto !important;
  }


}

@media(max-width:300px) {
  #myCarousel {
    height: 320px;
  }
}

/* ========================================
   HERO SLIDER CSS
======================================== */

/* Hero Section */
.hero-slider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-slider-carousel {
  height: 100vh;
  width: 100%;
}

.hero-slider-carousel .carousel-inner {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomPan 20s infinite ease-in-out;
}

@keyframes zoomPan {
  0% {
    transform: scale(1) translate(0, 0);
  }

  25% {
    transform: scale(1.1) translate(-2%, 2%);
  }

  50% {
    transform: scale(1.2) translate(2%, -2%);
  }

  75% {
    transform: scale(1.1) translate(-1%, -1%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Different backgrounds per slide */
.hero-slide-1 .hero-slide-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/slider/slider-shape.png');
  /* Replace with business hero image 1 */
}

.hero-slide-2 .hero-slide-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/slider/slider-shape-2.png');
  /* Replace with business hero image 2 */
}

.hero-slide-3 .hero-slide-bg {
  background-image: linear-gradient(rgba(20, 20, 60, 0.5), rgba(40, 40, 100, 0.5)), url('assets/images/home/counter-shape.png');
}

.hero-slide-4 .hero-slide-bg {
  background-image: linear-gradient(rgba(60, 20, 20, 0.5), rgba(100, 40, 40, 0.5)), url('assets/images/home/counter-shape-1.png');
}

.hero-slide-5 .hero-slide-bg {
  background-image: linear-gradient(rgba(20, 60, 20, 0.5), rgba(40, 100, 40, 0.5)), url('assets/images/home/counter-shape-2.png');
}

/* Text Overlay - Bottom Right */
.hero-slide-text {
  position: absolute;
  bottom: 2%;
  right: 2%;
  z-index: 3;
  max-width: 100%;
  text-align: right;
  color: #fff;
  animation: slideUpFade 1s ease-out 0.5s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----  */

.hero-slide-text h2 {
  font-size: 4.5rem;
  margin-bottom: 0rem;
  line-height: 1.2;
  letter-spacing: 2px;
  font-family: var(--title-font);
  text-align: right;
}

.hero-slide-text p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-slider-indicators {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-slider-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.hero-slider-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-slider-indicators button:hover {
  background: #fff;
  transform: scale(1.1);
}

.hero-slider-prev,
.hero-slider-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-slider-prev {
  left: 5%;
}

.hero-slider-next {
  right: 5%;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev::after,
.hero-slider-next::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 20px;
  color: #fff;
}

.hero-slider-prev::after {
  content: '\f053';
}

.hero-slider-next::after {
  content: '\f054';
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-slide-text {
    right: 1%;
  }

  .hero-slide-text h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {

  .hero-slider-section,
  .hero-slider-carousel,
  .hero-slide {
    height: 80vh;
  }

  .hero-slide-text {
    right: 1%;
    bottom: 2%;
  }

  .hero-slide-text h2 {
    font-size: 2rem;
  }

  .hero-slide-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {

  .hero-slider-section,
  .hero-slider-carousel,
  .hero-slide {
    height: 70vh;
  }

  .hero-slide-text {
    right: 6%;
    bottom: 6%;
    max-width: 100%;
    text-align: left;
  }

  .hero-slide-text h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-slide-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 50px;
    height: 50px;
  }

  .hero-slider-prev {
    left: 3%;
  }

  .hero-slider-next {
    right: 3%;
  }
}

@media (max-width: 480px) {

  .hero-slider-section,
  .hero-slider-carousel,
  .hero-slide {
    height: 60vh;
  }

  .hero-slide-text {
    right: 5%;
    bottom: 5%;
    max-width: 100%;
  }

  .hero-slide-text h2 {
    font-size: 1rem;
  }

  .hero-slide-text p {
    font-size: 1rem;
  }

  .hero-slider-indicators {
    bottom: 3%;
  }

  .hero-slider-indicators button {
    width: 12px;
    height: 12px;
  }
}


/* Responsive */
@media (max-width: 991px) {
  .testi-slider-section .row {
    min-height: auto;
  }

  .testi-left-img,
  .testi-right-slider {
    height: auto;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }

  .testi-bg-img {
    height: 400px;
  }

  .section-title {
    position: relative;
    top: auto;
    left: auto;
    margin: 20px 0;
    text-align: center;
    text-shadow: none;
  }

  .testi-right-slider {
    margin-top: 20px;
  }

  .carousel-item {
    min-height: 300px;
    padding: 30px 20px;
  }
}



/* ------------------- HOME - COUNTER SECTION ---------------- */
.counter-box {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.counter-text h1 {
  color: var(--maroon);
  /* color: var(--golden); */
  font-size: 70px;
  font-family: var(--title-font);
  text-transform: capitalize;
}

.counter-text p {
  font-family: var(--para-font);
  font-size: 30px;
  padding-top: 0px;
}

.counter-box {
  background: var(--light-golden);
  padding: 3% 10%;
  margin-top: 6% !important;
}

.counter-div .img-box img {
  height: 150px;
}

@media(max-width:1500px) {
  .counter-box {
    padding: 3% 0% !important;
  }
}

@media(max-width:1400px) {
  .counter-box {
    margin-top: 6% !important;
  }

  .counter-text h1 {
    font-size: 50px;
  }

  .counter-text p {
    font-size: 24px;
  }
}

@media(max-width:1000px) {
  .counter-box {
    margin-top: 6% !important;
  }

  .counter-text h1 {
    font-size: 50px;
  }

  .counter-text p {
    font-size: 24px;
  }

  .img-box img {
    height: 200px;

  }
}

@media(max-width:900px) {
  .counter-box {
    margin-top: 6% !important;
  }

  .counter-text h1 {
    font-size: 30px;
  }

  .counter-text p {
    font-size: 20px;
  }

  .img-box img {
    height: 148px !important;
  }
}

/* ---------------- HOME - Achievements --------------- */

.ach-box {
  background-color: var(--light-golden);
}

.ach-img-box {
  padding: 5% 0%;
}

.center-ach {
  margin-top: 3% !important;
}


.ach-updown {
  animation: updown 7s linear infinite;
}

.ach-downup {
  animation: downup 7s linear infinite;
}

/* 
.golden-colour {
  height: 550px;
  background-color: var(--golden);
  position: relative;
  opacity: 0.05;
  margin-bottom: -30%;
} */

@keyframes ach-updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes ach-downup {
  0% {
    transform: translateY(50px);
  }

  /* 25% {
        transform: translateY(20px);
    } */

  50% {
    transform: translateY(0px);
  }

  /* 75% {
        transform: translateY(20px);
    } */

  /* 100% {
        transform: translateY(0px);
    } */
}

.ach-box img {
  width: 100%;
  text-align: center;
}

/* 
@media(max-width:1532px){
  .golden-colour {
    height: 456px;
}
}

@media(max-width:1190px){
    .golden-colour {
        height: 360px;

}
}
@media(max-width:1000px){
      .golden-colour {
        height: 284px;
    }
} */
/* ============================== FOOTER ================================= */

.studio-footer {
  background: #000;
  color: #fff;
  font-family: var(--para-font);
  overflow: hidden;
  margin-top: 50px;
  padding: 50px 100px 0px 50px;

}

.studio-footer-box {
  position: relative;
  background: #111;
  padding: 60px 40px 0;
  margin: 0 2%;
  border-radius: 20px 20px 0 0;
}

.studio-footer .row {
  margin: 0 -20px;
}

.studio-footer [class*="col-"] {
  padding: 0 20px;
}

.logo-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-container {
  margin: 0 auto;

}

.footer-link-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-address-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 100;
}

.footer-address-box a {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.footer-address-box a i {
  flex-shrink: 0;
  font-size: 20px;
  width: 25px;
}

.logo-container img {
  height: 100px;
  width: auto;
}

.logo-social-box {
  display: flex;
  gap: 15px;

  justify-content: center;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-text a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: block;
  margin: 0;
  font-family: var(--para-font);
}

.footer-social-icons a:hover {
  background: var(--golden);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(186, 155, 75, 0.4);
}

.footer-page-link {
  padding-top: 15px;
  position: relative;
  z-index: 100;
}

.footer-ql-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-title {
  font-family: var(--title-font);
  font-size: 30px;
  color: var(--golden);
  margin: 0 0 20px 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-services-title {
  text-align: left !important;
  margin-bottom: 20px;
}


.footer-ql-box a:hover {
  color: var(--golden);
}

.footer-ql-box a i {
  margin-right: 10px;
  color: var(--golden);
  font-size: 18px;
}

.copyright-text {
  text-align: center;
  padding: 25px;
  margin: -5px auto 0;
  font-size: 14px;
  color: #999;
  position: relative;
  z-index: 2;
}

.copyright-text a {
  color: var(--golden);
  text-decoration: none;
}

.copyright-text a:hover {
  text-decoration: underline;
}


.footer-bottom-img {
  width: 100vw;
  z-index: 20;
  margin-top: -7%;
  position: relative;
  opacity: 0.7;
}


.studio-footer-box {
  background: #00000000;
  margin: 0% 2%;
  padding: 0px;
  position: relative;
  z-index: 100;
}


footer {
  background-color: #000;
}

@media(max-width:1500px) {
  .studio-footer {
    padding: 50px 10px 0px 10px;
  }
}

@media(max-width:1200px) {
  .studio-footer {
    padding: 50px 10px 0px 50px;
  }

  .studio-footer .row {
    flex-direction: column;

  }

  .studio-footer [class*="col-"] {
    width: 100%;
  }

  .footer-title {
    margin-top: 7%;
  }

  .logo-container {
    margin: 0;
  }

  .logo-social-box {
    justify-content: left;
  }
}

@media(max-width:767px) {
  .studio-footer {
    padding: 0px 10px 0px 10px;
  }

  .logo-container {
    margin: 0;
  }

  .logo-social-box {
    justify-content: left;
  }

  .footer-title {
    margin-top: 10%;
    font-size: 25px;
  }

  .studio-footer [class*="col-"] {
    width: 100%;
  }

  .footer-text a {
    font-size: 16px;
  }
}



/* ===================== ALL PAGE HEADER ================ */
.all-page-header-title {
  padding: 15% 0% 10% 0%;
  color: #fff;
  text-align: center;
  font-size: 52px;
  font-family: 'norger';
}

.all-header-full-image {
  width: 100vw;
  margin-top: 90px;
}

@media(max-width:767px) {
  .all-header-full-image {
    margin-top: 62px;
  }
}

@media(max-width:1200px) {
  .all-page-header-title {
    padding: 17% 0% 10% 0%;
    color: #fff;
    text-align: center;
    font-size: 41px;
    font-family: 'norger';
  }
}

@media(max-width:900px) {
  .all-page-header {

    height: 450px;
  }

  .all-page-header-title {
    padding: 28% 0% 10% 0%;
  }
}

@media(max-width:767px) {
  .all-page-header-title {
    padding: 28% 0% 10% 0%;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-family: 'norger';
  }

  .logo img {
    height: 63px;
  }

  .hamburger span {
    height: 2px;
    width: 22px;
    background: #fff;
    margin: 3px 0;
  }
}

@media(max-width:500px) {
  .all-page-header-title {
    padding: 38% 0% 13% 0%;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-family: 'norger';
  }
}

@media(max-width:767px) {

  .all-page-header {
    height: 300px;
  }
}


/* ===================== ABOUT US PAGE STYLING ========================= */

.story-year {
  font-family: var(--sub-title-font);
  color: var(--maroon);
  font-size: 74px;
}

.heading-title {
  margin: 0;
  /* color: #766026;
  color: #896f2d; */
  /* color: var(--golden); */
  color: var(--maroon);
  font-size: 70px;
  /* font-weight: bold; */
  /* line-height: 120px; */
  font-family: var(--title-font);
  text-transform: capitalize;
}

.main-para {
  margin: 0 auto;
  font-family: var(--para-font);
  font-size: 22px;
  text-align: justify;
  hyphenate-character: auto;
  hyphens: auto;
}


@media (max-width: 1600px) {
  .heading-title {
    font-size: 70px;
    line-height: 90px;
  }
}

@media (max-width: 1199px) {
  .heading-title {
    font-size: 50px;
    line-height: 70px;
  }

  .main-para {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .main-para {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .heading-title {
    font-size: 60px;
    line-height: 50px;
  }

  .main-para {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .heading-title {
    font-size: 36px;
    line-height: 42px;
  }

  .main-para {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .heading-title {
    font-size: 35px;
    line-height: 36px;
  }

  .main-para {
    font-size: 13px;
  }
}


/* --------- about us styling ---------- */
.about-us-about .row {
  align-items: center;
}

.about-us-about {
  padding: 5% 10%;
}

.about-img-container {
  display: flex;
  align-items: center;
  margin-right: 10%;
}

.about-us-long-img {
  height: 600px;
  width: 900px;
  border: 8px solid #e0d1a7;
  padding: 5px;
}

.about-us-long-img img {
  height: 100%;
  width: 100%;
}


.about-us-small-img {
  height: 400px;
  width: 600px;
  border: 8px solid #e0d1a7;
  margin-left: -14%;
  padding: 5px;
  object-fit: cover;
}


.about-us-small-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-us-pointers {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 5%;
}

.about-us-pointer-img {
  background: #e0d1a7;
  padding: 4px;
  border-radius: 50%;
}

.about-us-pointer-img img {
  height: 100px;
  width: 100px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  padding: 2px;
  object-fit: contain;
}

.about-us-pointer-text-box h4 {
  font-size: 25px;
  font-family: var(--sub-title-font);
  color: var(--maroon);
}

.about-us-pointer-text-box p {
  padding-top: 0px;
  font-family: var(--para-font);
}

@media(max-width:1500px) {
  .about-us-about {
    padding: 5% 5%;
  }

  .about-us-long-img {
    height: 500px;
    width: auto;
  }

  .about-us-small-img {
    height: 300px;
    width: auto;
  }

  .founder-image-1 img {
    height: 350px;
  }

  .founder-image-2 img {
    height: 350px;
  }

  .founder-text h2 {
    font-size: 35px !important;
  }

  .founder-text p {
    font-size: 15px;
  }

  .founder-box {
    padding: 5% 2% !important;
  }
}

@media(max-width:767px) {
  .about-us-small-img {
    height: auto;
    width: auto;
  }

  .about-us-long-img {
    height: auto;
    width: auto;
  }

  .about-us-details {
    margin-top: 8%;
  }
}

@media(max-width:400px) {
  .founder-text h2 {
    font-size: 33px !important;
  }
}

/* ---------- ABOUT - US - STORY SECTION ----------- */

.studio-story {
  padding: 100px 20px;
  background: #f8fafc;
  overflow: hidden;
}

.studio-story-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.studio-story-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccd6e0;
  transform: translateY(-50%);
}

.studio-story-item {
  position: relative;
  width: 25%;
  text-align: center;
}

.studio-story-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #7a8aa0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.studio-story-top {
  position: relative;
  margin-bottom: 120px;
}

.studio-story-bottom {
  position: relative;
  margin-top: 79px;
}

.studio-story-image {
  width: 170px;
  height: 170px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.studio-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-story-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.studio-story-item span {
  font-size: 13px;
  color: #7a8aa0;
  display: block;
  margin-bottom: 10px;
}

.studio-story-item p {
  font-size: 13px;
  color: #555;
}


@media (max-width: 992px) {
  .studio-story-image {
    width: 140px;
    height: 140px;
  }

  .studio-story-top {
    margin-bottom: 100px;
  }

  .studio-story-bottom {
    margin-top: 100px;
  }

  .why-us-box .row {
    display: block;
  }

  .why-us-box .row .col-md-4 {
    width: 100%;
  }

  .why-us-details-section {
    height: 100% !important;
  }
}

@media (max-width: 768px) {

  .studio-story-wrapper {
    flex-direction: column;
  }

  .studio-story-wrapper::before {
    width: 2px;
    height: 100%;
    left: 20px;
    top: 0;
    transform: none;
  }

  .studio-story-item {
    width: 100%;
    padding-left: 60px;
    margin-bottom: 50px;
    text-align: left;
  }

  .studio-story-item::before {
    left: 20px;
    top: 30px;
    transform: translate(-50%, 0);
  }

  .studio-story-top,
  .studio-story-bottom {
    margin: 0;
  }

  .studio-story-image {
    width: 120px;
    height: 120px;
    margin: 0 0 10px;
  }
}

@media (max-width: 480px) {
  .studio-story {
    padding: 70px 15px;
  }

  .studio-story-image {
    width: 100px;
    height: 100px;
  }

  .studio-story-item h3 {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .studio-story-wrapper {
    max-width: 1400px;
  }

  .studio-story-image {
    width: 190px;
    height: 190px;
  }
}

/* 
.studio-story {
  padding: 80px 20px;
  background: #f8fafc;
}

.studio-story-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.studio-story-container::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #d1d9e6;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.studio-story-item {
  position: relative;
  width: 50%;
  padding: 40px 60px;
  box-sizing: border-box;
}

.studio-story-item.left {
  left: 0;
  text-align: right;
}

.studio-story-item.right {
  left: 50%;
}

.studio-story-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.studio-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-story-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.studio-story-content span {
  display: block;
  font-size: 14px;
  color: #7a8aa0;
  margin-bottom: 10px;
}

.studio-story-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.studio-story-item::before {
  content: "";
  position: absolute;
  top: 70px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #7a8aa0;
  border-radius: 50%;
  z-index: 1;
}

.studio-story-item.left::before {
  right: -8px;
}

.studio-story-item.right::before {
  left: -8px;
}

@media (max-width: 992px) {
  .studio-story-item {
    padding: 30px 40px;
  }

  .studio-story-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {

  .studio-story-container::before {
    left: 20px;
  }

  .studio-story-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .studio-story-item.left,
  .studio-story-item.right {
    left: 0;
    text-align: left;
  }

  .studio-story-item::before {
    left: 12px !important;
    right: auto;
  }

  .studio-story-image {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .studio-story {
    padding: 60px 15px;
  }

  .studio-story-content h3 {
    font-size: 16px;
  }

  .studio-story-content p {
    font-size: 13px;
  }

  .studio-story-image {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 1400px) {
  .studio-story-container {
    max-width: 1400px;
  }

  .studio-story-content h3 {
    font-size: 20px;
  }

  .studio-story-content p {
    font-size: 15px;
  }
} */

/* -----   */


.about-story {
  position: relative;
  background: #fff;
  padding: 10% 0% 7% 0%;
}

.about-story .story-container {
  position: relative;
  max-width: 100vw;
  margin-top: 3%;
}

.about-story .story-container ol:before {
  background: var(--golden);
  content: "";
  width: 10px;
  height: 0px;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 49.5%;
}

.about-story .story-container ol:after {
  background: var(--golden);
  content: "";
  width: 10px;
  height: 0px;
  border-radius: 100%;
  position: absolute;
  right: 8px;
  top: 49.5%;
}

.about-story .story-container ol.story-timeline {
  margin: 342px 0 250px 0px;
  padding: 0;
  border-top: 2px solid var(--golden);
  list-style: none;
}

.about-story .story-container ol.story-timeline li {
  float: left;
  width: 25%;
  padding-top: 30px;
  position: relative;
}

.about-story .story-container ol.story-timeline li span {
  width: 70px;
  height: 70px;
  margin-left: -25px;
  background: #fff;
  border: 4px solid var(--golden);
  border-radius: 50%;
  box-shadow: 0 0 0 0px #fff;
  text-align: center;
  line-height: 50px -10;
  color: var(--golden);
  font-size: 2em;
  font-style: normal;
  position: absolute;
  top: -26px;
  left: 50%;
}

.about-story .story-container ol.story-timeline li span img {
  height: 35px;
  margin-top: 17%;
}

.about-story .story-container ol.story-timeline li span.story-icon:before {
  content: "";
  color: var(--golden);
  width: 2px;
  height: 50px;
  background: var(--golden);
  position: absolute;
  top: -50px;
  left: 50%;
}

.about-story .story-container ol.story-timeline li span.story-icon:after {
  content: "";
  color: var(--golden);
  width: 8px;
  height: 0px;
  background: var(--golden);
  position: absolute;
  bottom: 90px;
  left: 44%;
  border-radius: 100%;
}

.about-story .story-container ol.story-timeline li span.story-icon-2:before {
  content: "";
  color: var(--golden);
  width: 2px;
  height: 50px;
  background: var(--golden);
  position: absolute;
  bottom: -50px;
  left: 50%;
}

.about-story .story-container ol.story-timeline li span.story-icon-2:after {
  content: "";
  color: var(--golden);
  width: 8px;
  height: 0px;
  background: var(--golden);
  position: absolute;
  top: 90px;
  left: 44%;
  border-radius: 100%;
}

.about-story .story-container ol.story-timeline li .story-top-img {
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  width: 100%;
}

.about-story .story-container ol.story-timeline li .story-top-img img {
  display: table;
  margin: 0 auto;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  margin-bottom: -8%;
  z-index: 20;
  position: relative;
  border: 3px solid #e0d1a7;
  padding: 4px;

}

.about-story .story-container ol.story-timeline li .story-img {
  position: absolute;
  margin-top: 60px;
  width: 100%;
}

.about-story .story-container ol.story-timeline li .story-img img {
  display: table;
  margin: 0 auto;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  margin-bottom: -8%;
  z-index: 20;
  position: relative;
  border: 3px solid #e0d1a7;
  padding: 4px;

}

.about-story .story-container ol.story-timeline li p {
  font-family: var(--para-font);
  color: #000;
  font-size: 16px;
  padding-top: 0px;
  line-height: 24px;
}

.about-story .story-container ol.story-timeline li .story-top-text {
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
}

.about-story .story-container ol.story-timeline li .story-text {
  position: absolute;
  margin-top: 35px;
}

.story-para {
  max-width: 72%;
  text-align: center;
}

.story-text h1 {
  font-family: var(--title-font);
  color: var(--maroon);
  font-size: 50px;
}

.story-text h5 {
  font-family: var(--sub-title-font);
  color: var(--maroon);
  font-size: 30px;
}

.story-text p {
  font-family: var(--para-font);
  color: #000;
  font-size: 16px;
  padding-top: 0px;
  line-height: 24px;
}

.story-top-text h1 {
  font-family: var(--sub-title-font);
  color: var(--maroon);
  font-size: 50px;
}

.story-top-text h5 {
  font-family: var(--sub-title-font);
  color: var(--maroon);
  font-size: 30px;
}

.story-top-text p {
  font-family: var(--para-font);
  color: #000;
  font-size: 19px;
  padding-top: 0px;
}

@media(max-width:500px) {
  .about-us-pointers {
    display: block;
  }

  .about-us-pointer-img {
    width: fit-content;
    margin-bottom: 5%;
  }
}


/* 

@media screen and (max-width: 767px) {
  .about-story .story-container ol:before {
    background: var(--golden);
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 130px !important;
    left: 36px !important;
  }
  .about-story .story-container ol:after {
    background: var(--golden);
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: inherit !important;
    left: 36px;
  }
  .about-story .story-container ol.story-timeline {
    margin: 130px 0 !important;
    border-left: 2px solid  var(--golden);
    padding-left: 0 !important;
    padding-top: 120px !important;
    border-top: 0 !important;
    margin-left: 25px !important;
  }
  .about-story .story-container ol.story-timeline li {
    height: 220px;
    float: none !important;
    width: inherit !important;
  }
  .about-story .story-container ol.story-timeline li:nth-child(2) .story-img img {
    width: 70px;
  }
  .about-story .story-container ol.story-timeline li:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 120px;
  }
  .about-story .story-container ol.story-timeline li:last-child .story-img {
    bottom: 40px !important;
    width: 40% !important;
    margin-left: 25px !important;
    margin-top: 0 !important;
  }
  .about-story .story-container ol.story-timeline li:last-child .story-img img {
    width: 100%;
  }
  .about-story .story-container ol.story-timeline li:last-child .story-top-text {
    margin-bottom: 0 !important;
    top: 20px;
    width: 50% !important;
  }
  .about-story .story-container ol.story-timeline li span {
    left: 0 !important;
  }
  .about-story .story-container ol.story-timeline li span.story-icon:before {
    content: none !important;
  }
  .about-story .story-container ol.story-timeline li span.story-icon:after {
    content: none !important;
  }
  .about-story .story-container ol.story-timeline li span.story-icon-2:before {
    content: none !important;
  }
  .about-story .story-container ol.story-timeline li span.story-icon-2:after {
    content: none !important;
  }
  .about-story .story-container ol.story-timeline li .story-top-img {
    position: absolute !important;
    bottom: 150px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .about-story .story-container ol.story-timeline li .story-top-img img {
    margin: 0 auto !important;
    width: 80% !important;
  }
  .about-story .story-container ol.story-timeline li .story-img {
    position: absolute !important;
    bottom: 115px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .about-story .story-container ol.story-timeline li p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }
  .about-story .story-container ol.story-timeline li .story-top-text {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
  .about-story .story-container ol.story-timeline li .story-text {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
} */


/* ----------- FOUNDER IMAGE ------------- */
.founder-box .row {
  overflow: visible;
}

.founder-box {
  background: var(--light-golden);
  padding: 5%;
}

.founder-items {
  display: flex;
  align-items: center;
}

.founder-image-1 {
  transform: rotate(-11.471deg);
  left: 52px;
  margin-top: 12%;
}

.founder-image-2 {
  transform: rotate(10.655deg);
  position: relative;
}

.founder-box .founder-image {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.founder-text h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 15px;
  color: var(--golden);
  font-size: 50px;
  /* font-weight: bold; */
  /* line-height: 120px; */
  font-family: var(--sub-title-font);
  text-transform: capitalize;
  color: var(--maroon);
}

.founder-text h5 {
  font-family: var(--para-font);
  font-size: 20px;
  color: var(--golden);
}

.founder-text p {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 0px;
  font-family: var(--para-font);
}

.founder-box .col:nth-child(2) .founder-items {
  text-align: end;
  align-items: flex-end;
  text-align: right;
  margin-top: 80px;
}

.founder-text-right {
  text-align: right;
  margin-top: 36%;
}

@media(max-width:1000px) {
  .founder-box .row {
    display: block;
  }

  .founder-box .row .col-md-6 {
    flex: 0 0 auto;
    width: 86%;
    justify-content: center;
  }

  .founder-text-right {
    text-align: right;
    margin-top: 25%;

    margin-right: -17%;
  }
}

/* ------------ WHY US SE ------------------ */

.why-us-section {
  padding: 5%;
}

.why-us-details-section {
  text-align: center;
  margin: 5%;
  background: var(--light-golden);
  padding: 25px 5px;
  border: 2px solid #e0d1a7;
  height: 90%;
}


.why-us-details-box p {
  padding-top: 0px;
  font-family: var(--para-font);
}


.why-us-details-box h1 {
  padding-top: 0px;
  font-family: var(--sub-title-font);
  color: var(--maroon);
  font-size: 30px;
}

.why-us-icon-box {
  background: #e0d1a7;
  padding: 4px;
  border-radius: 50%;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 7%;
}

.why-us-icon-box img {
  height: 100px;
  width: 100px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  padding: 2px;
  object-fit: contain;
}

.why-us-box {
  margin-top: 5%;
}


/* ----------- Slider Writing effect ----------- */

.typewriter.nocaret::after {
  border-right: 0;
}


.ml12 {
  /* font-weight: 200;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 0.5em; */
}

.ml12 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml123 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml124 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml125 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml126 .letter {
  display: inline-block;
  line-height: 1em;
}

@media(max-width:1400px) {
  .why-us-details-box p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media(max-width:1300px) {
  .why-us-section {
    padding: 3% !important;
  }

  .why-us-details-section {
    height: 100% !important;
  }

  .why-us-details-section {
    padding: 19px !important;
  }

  .why-us-details-box h1 {
    font-size: 20px !important;
  }

  .why-us-details-box p {
    font-size: 13px;
    line-height: 16px;
  }
}

@media(max-width:1200px) {

  /* .about-story .story-container ol.story-timeline li .story-top-img img{
    height: 200px !important;
    width: 200px !important;
  }
  .about-story .story-container ol.story-timeline li .story-img img{
      height: 200px !important;
    width: 200px !important;
  } */
  .story-text h1 {
    font-size: 30px !important;
  }

  .story-text h5 {
    font-size: 22px !important;
  }

  .about-story .story-container ol.story-timeline li p {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

@media(max-width:1300px) {
  .about-story .story-container ol.story-timeline li .story-top-img img {
    height: 200px;
    width: 200px;
  }

  .story-text h1 {
    font-size: 41px;
  }

  .story-top-text h1 {
    font-size: 41px;
  }

  .story-text h5 {
    font-size: 27px;
  }

  .story-top-text h5 {
    font-size: 27px;
  }

  .about-story .story-container ol.story-timeline li .story-img img {
    height: 200px;
    width: 200px;
  }

  .about-story {
    padding: 10% 0% !important;
  }
}

/* 
@media (max-width: 1200px) {
  .about-story .story-container ol.story-timeline li {
    width: 33.33%;
  }

} */

/* 
@media (max-width: 992px) {
  .about-story .story-container ol.story-timeline {
    margin: 200px 0;
  }

  .about-story .story-container ol.story-timeline li {
    width: 50%;
  }

  .about-story .story-container ol.story-timeline li span {
    width: 60px;
    height: 60px;
  }

  .about-story .story-container ol.story-timeline li .story-img img,
  .about-story .story-container ol.story-timeline li .story-top-img img {
    width: 220px;
    height: 220px;
  }

  .story-text h1,
  .story-top-text h1 {
    font-size: 40px;
  }

  .story-text h5,
  .story-top-text h5 {
    font-size: 24px;
  }
} */

@media(max-width:991px) {
  .why-us-box .row .col-md-3 {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .about-story .story-container ol.story-timeline {
    border-top: none;
    margin: 30px 0;
  }

  .about-story .story-container ol.story-timeline li {
    width: 100%;
    float: none;
    margin-bottom: 80px;
    text-align: center;
  }

  .about-story .story-container ol.story-timeline li span {
    position: relative;
    left: auto;
    margin: 0 auto 20px;
    display: block;
    top: 0;
  }

  .story-icon:before,
  .story-icon:after,
  .story-icon-2:before,
  .story-icon-2:after {
    display: none;
  }

  .about-story .story-container ol.story-timeline li .story-img,
  .about-story .story-container ol.story-timeline li .story-top-img,
  .about-story .story-container ol.story-timeline li .story-text,
  .about-story .story-container ol.story-timeline li .story-top-text {
    position: relative;
    margin: 0;
    bottom: auto;
  }

  .about-story .story-container ol.story-timeline li .story-img img,
  .about-story .story-container ol.story-timeline li .story-top-img img {
    width: 180px;
    height: 180px;
  }

  .story-para {
    max-width: 90%;
    margin: 0 auto;
  }

  .story-text h1,
  .story-top-text h1 {
    font-size: 32px;
  }

  .story-text h5,
  .story-top-text h5 {
    font-size: 20px;
  }

  .about-story .story-container ol.story-timeline li {
    margin-bottom: 60px;
  }

  .about-story .story-container ol.story-timeline li span {
    display: none;
  }

  .about-story .story-container ol.story-timeline li .story-top-img {
    margin-bottom: 12% !important;
  }

  .about-story .story-container ol.story-timeline li .story-img img {
    margin-bottom: 4% !important;
  }

  .about-story .story-container {
    margin-top: 0%;
  }

  .about-story .story-container ol.story-timeline li p {
    margin: 0 auto;
    max-width: 90%;
  }
}


@media (max-width: 1000px) {

  .about-story {
    padding: 10% 5%;
  }

  .about-story .story-container ol.story-timeline li {
    margin-bottom: 60px;
  }

  .about-story .story-container ol.story-timeline li span {
    width: 50px;
    height: 50px;
  }

  .about-story .story-container ol.story-timeline li span img {
    height: 25px;
  }

  .about-story .story-container ol.story-timeline li .story-img img,
  .about-story .story-container ol.story-timeline li .story-top-img img {
    width: 150px;
    height: 150px;
  }

  .story-text h1,
  .story-top-text h1 {
    font-size: 26px;
  }

  .story-text h5,
  .story-top-text h5 {
    font-size: 18px;
  }

  .story-text p,
  .story-top-text p {
    font-size: 14px;
    line-height: 22px;
  }
}


@media (max-width: 400px) {

  .about-story .story-container ol.story-timeline li .story-img img,
  .about-story .story-container ol.story-timeline li .story-top-img img {
    width: 130px;
    height: 130px;
  }

  .story-text h1,
  .story-top-text h1 {
    font-size: 22px;
  }

  .story-text h5,
  .story-top-text h5 {
    font-size: 16px;
  }
}


@media(max-width:500px) {
  .founder-items {
    display: block;
  }

  .founder-box .founder-image {
    width: fit-content;
  }

  .founder-text-right {
    margin-top: 21%;
  }

  .founder-image-2 {
    margin-left: 10%;
  }

  .founder-text h2 {
    font-size: 35px;
  }

}

@media(max-width:304px) {
  .founder-image-1 img {
    height: 250px;
  }

  .founder-image-2 img {
    height: 250px;
  }

  .founder-text h2 {
    font-size: 30px;
  }

  .founder-text p {
    font-size: 16px;
  }
}


@media(max-width:500px) {
  .about-us-long-img {
    height: 400px !important;
  }

  .about-us-small-img {
    height: 300px !important;
  }
}

@media(max-width:767px) {
  .about-us-small-img {
    height: 300px !important;
  }

  .about-us-long-img {
    height: 500px !important;
  }
}

@media(max-width:1200px) {
  .studio-container {
    max-width: 100% !important;
  }
}

@media(max-width:768px) {
  .studio-container {
    max-width: 90% !important;
  }
}


@media(max-width:400px) {
  .all-page-header-title {
    padding: 46% 0% 13% 0%;
  }

  .about-us-long-img {
    height: 300px !important;
  }

  .about-us-small-img {
    height: 250px !important;
  }
}


/* ------------- Map Images --------------- */

.map-container {
  padding: 50px 0px 50px;
}

.map-img-box {
  width: 100vw;
}

.map-img-box img {
  width: 100%;
}

.map-title {
  padding-bottom: 30px;
}


/* =============================== SERVICES ======================== */


/* ------------------- Spiritual Theme Setup ----------------- */

.all-service-about-box {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-top: -7%;
}

.all-service-about-para {
  text-align: center;
}

.all-icons-top-left {
  position: relative;
  height: 300px;
  opacity: 0.2;
}

.all-icons-top-right {
  float: right;
  position: relative;
  height: 300px;
  opacity: 0.2;
}

.all-icons-bottom-right {
  display: block;
  margin-left: auto;
  margin-right: 0;
  height: 400px;
  opacity: 0.6;
  margin-top: -10%;
}

.all-icons-bottom-left {
  display: block;
  margin-right: auto;
  margin-left: 0;
  height: 400px;
  transform: scaleX(-1);
  opacity: 0.4;
  margin-top: -10%;
}

.all-services-details-box {
  margin-top: -10%;
}

.all-services-details-box h1 {
  color: var(--maroon);
  font-size: 46px;
  font-family: var(--title-font);
  text-transform: capitalize;
  text-align: center;
}

.all-service-info-img-box {
  width: fit-content;
}

.all-service-info-img-box img {
  width: 100%;
}

.all-services-info {
  max-width: 80%;
  margin: 0 auto;
  margin-top: 5%;
}

.heading-title-services {
  margin: 0;
  color: var(--golden);
  font-size: 49px;
  font-family: var(--sub-title-font);
  text-transform: capitalize;
}

.all-services-info .row {
  align-items: center;
}

.all-service-info-details-box {
  padding: 10%;
}


.all-services-details {
  padding-bottom: 100px;
}

@media(min-width:2000px) {
  .all-icons-bottom-right {
    display: block;
    margin-left: 92%;
    margin-right: 0px;
    height: 400px;
    opacity: 0.4;
    margin-top: -10%;
  }
}

@media(max-width:1500px) {
  .all-services-details-box {
    margin-top: -27%;
  }

  .all-service-about-box .heading-title {
    font-size: 56px;
    line-height: auto;
    max-width: 74%;
    margin: 0 auto;
  }

  .all-services-details-box .heading-title {
    font-size: 56px;
    line-height: 90px;
    max-width: 95%;
    margin: 0 auto;
  }
}

@media(max-width:1400px) {
  .all-services-details-box .heading-title {
    font-size: 49px;
  }

  .all-service-about-box .heading-title {
    font-size: 49px;
  }

  .heading-title-services {
    font-size: 40px;
  }
}

@media(max-width:1200px) {
  .all-services-details-box .heading-title {
    font-size: 46px;
  }

  .all-service-about-box .heading-title {
    font-size: 46px;
  }

  /* .all-services-details-box {
        margin-top: -30%;
    } */
  .all-icons-bottom-right {
    height: 300px;
  }

  .all-icons-bottom-left {
    height: 300px;
  }

  .heading-title-services {
    font-size: 40px;
  }

  .all-icons-top-left {
    height: 200px;
  }

  .all-icons-top-right {
    height: 200px;
  }

  .all-service-about-box .heading-title {
    /* max-width: 89%; */
  }
}

@media(max-width:1142px) {
  .all-services-details-box .heading-title {
    font-size: 42px;
  }

  .all-service-about-box .heading-title {
    font-size: 42px;
  }

  .all-icons-bottom-left {
    height: 260px;
  }

  .all-icons-bottom-right {
    height: 260px;
  }

  .all-services-details-box {
    margin-top: -17%;
  }

  .heading-title-services {
    font-size: 35px;
  }
}

@media(max-width:1010px) {
  .all-services-details-box .heading-title {
    line-height: 90px;
    max-width: 95%;
    margin: 0 auto;
  }
}

@media(max-width:978px) {
  .all-services-details-box .heading-title {
    line-height: 90px;
    max-width: 95%;
    margin: 0 auto;
  }

  .all-services-details-box {
    margin-top: -23%;
  }

  .all-service-about-box {
    max-width: 80%;
  }
}

@media(max-width:850px) {
  .all-services-details-box .heading-title {
    font-size: 35px;
  }

  .all-service-about-box .heading-title {
    font-size: 35px;
  }

  .all-services-details-box .heading-title {
    max-width: 100%;
  }

  .all-services-details-box {
    margin-top: -23%;
  }

  .all-services-details-box {
    margin-top: -31%;
  }

  .all-service-about-box {
    max-width: 80%;
  }
}

@media(max-width:660px) {
  .all-services-details-box {
    margin-top: -50%;
  }

  .all-service-about-box {
    max-width: 80%;
  }

  .all-icons-top-left {
    height: 100px;
  }

  .all-icons-top-right {
    height: 100px;
  }

  .all-icons-bottom-left {
    height: 200px;
  }

  .all-icons-bottom-right {
    height: 200px;
  }

  .all-services-details-box {
    margin-top: -36%;
  }

  .all-services-details-box .heading-title {
    font-size: 31px;
  }

  .all-service-info-details-box {
    padding: 10% 0% 3% 0%;
  }
}

@media(max-width:570px) {
  .all-services-details-box .heading-title {
    line-height: 40px;
  }

  .all-services-details-box .heading-title {
    max-width: 100%;
  }
}

@media(max-width:540px) {
  .all-services-details-box {
    margin-top: -40%;
  }

  .all-services-details-box .heading-title {
    font-size: 26px;
  }

  .all-service-about-box .heading-title {
    font-size: 26px;
  }
}

@media(max-width:430px) {
  .all-services-details-box {
    margin-top: -52%;
  }
}

@media(max-width:414px) {
  .all-services-details-box {
    margin-top: -57%;
  }
}

@media(max-width:432px) {
  .all-services-details-box {
    margin-top: -69%;
  }
}

@media(max-width:300px) {
  .all-services-details-box {
    margin-top: -82%;
  }
}