@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Work+Sans:wght@400;600&display=swap");
::-webkit-scrollbar {
  display: none;
}

:root {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

* {
  cursor: none;
}

body {
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif;
  color: #777777;
}

body > div:not(.cursor):not(.preBg):not(.pin-spacer) {
  z-index: 1050;
}

.cursor {
  position: fixed;
  pointer-events: none;
  transition: all 100ms ease-out;
  transform: translate(-100%, -100%);
  width: 50px;
  height: 50px;
  z-index: 1044;
  filter: drop-shadow(0, 0, 2px #fff);
}
.cursor .cursorOuter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.3s all ease;
  width: 50px;
  height: 50px;
  z-index: 1;
  border: 1px solid #1e1e1e;
  background-color: rgba(255, 255, 255, 0.2);
}
.cursor .cursorInner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.3s all ease;
  width: 5px;
  height: 5px;
  z-index: 3;
  background-color: #1e1e1e;
}
.cursor.hover .cursorOuter {
  width: 40px;
  height: 40px;
}
.cursor.hover .cursorInner {
  width: 10px;
  height: 10px;
}
.cursor.text .cursorOuter {
  border-radius: 0;
  width: 10px;
  height: 30px;
  border-width: 1px 0;
}
.cursor.text .cursorInner {
  height: 30px;
  width: 1px;
  border-radius: 0;
}

#mainHead {
  width: 100px;
  height: 100svh;
  border-right: 1px solid #1e1e1e;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  background-color: #fff;
  z-index: 1040;
  transition: 0.5s all ease;
}
#mainHead nav {
  width: 100svh;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(-90deg);
  padding: 30px;
  display: flex;
  align-items: center;
}
#mainHead nav .navBrand {
  max-width: 200px;
  text-decoration: none;
  display: inline-block;
}
#mainHead nav .navBtn {
  display: none;
}
#mainHead nav .navCollapse .navClose {
  display: none;
}
#mainHead nav .navCollapse .navList {
  display: flex;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  gap: 30px;
  font-size: 0.875rem;
}
#mainHead .mainBtn {
  position: absolute;
  top: 20px;
  transition: 0.5s all ease;
  left: -150%;
  color: #fff;
}
#mainHead .mainBtn::before {
  width: 100%;
}
#mainHead .mainBtn:hover {
  color: #1e1e1e;
}
#mainHead .mainBtn:hover::before {
  width: 0;
}
#mainHead.scrolled {
  transform: translateX(0);
}
#mainHead.scrolled .mainBtn {
  left: 80px;
}

.preBg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1041;
  left: 0;
  top: 0;
  transition: 0.5s all ease-in;
  display: flex;
  transform: translateY(-100%);
}
.preBg span {
  flex: 0 0 9.0909%;
  width: 9.0909%;
  display: block;
  height: 100%;
  background: #1e1e1e;
  transform: translateY(100%);
  background-image: url(../img/logo-pre.svg);
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  background-position-y: center;
  animation: pulse 1s infinite ease;
}
.preBg span:nth-child(1) {
  background-position-x: 0%;
  animation-delay: -0.04s;
}
.preBg span:nth-child(2) {
  background-position-x: 10%;
  animation-delay: -0.08s;
}
.preBg span:nth-child(3) {
  background-position-x: 20%;
  animation-delay: -0.12s;
}
.preBg span:nth-child(4) {
  background-position-x: 30%;
  animation-delay: -0.16s;
}
.preBg span:nth-child(5) {
  background-position-x: 40%;
  animation-delay: -0.2s;
}
.preBg span:nth-child(6) {
  background-position-x: 50%;
  animation-delay: -0.24s;
}
.preBg span:nth-child(7) {
  background-position-x: 60%;
  animation-delay: -0.28s;
}
.preBg span:nth-child(8) {
  background-position-x: 70%;
  animation-delay: -0.32s;
}
.preBg span:nth-child(9) {
  background-position-x: 80%;
  animation-delay: -0.36s;
}
.preBg span:nth-child(10) {
  background-position-x: 90%;
  animation-delay: -0.4s;
}
.preBg span:nth-child(11) {
  background-position-x: 100%;
  animation-delay: -0.44s;
}
.preBg span:not(:last-child) {
  border-right: 1px solid #222;
}

#floatingBtn {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 1040;
}

@keyframes pulse {
  0%, 100% {
    background-color: #1e1e1e;
  }
  50% {
    background-color: #111;
  }
}
.logoHero {
  position: fixed;
  width: 200px;
  right: 20px;
  top: 20px;
  transform: translateY(-200%);
  transition: 0.3s transform ease;
  z-index: 2;
  padding: 10px 25px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}
.logoHero.active {
  transform: translateY(0);
}

#headerSpace {
  width: 100px;
  flex: 0 0 100px;
  opacity: 1;
  margin-right: -100px;
  height: 100vh;
  border: solid #1e1e1e;
  border-width: 0 1px 0 0;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
#headerSpace nav {
  width: 100vh;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(-90deg);
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
}
#headerSpace nav .navBrand {
  flex: 0 0 100px;
  max-width: 200px;
  text-decoration: none;
  display: inline-block;
}
#headerSpace nav .navBrand img {
  transition: 0.3s width ease;
  max-width: 150px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
#headerSpace nav .navBtn {
  display: none;
}
#headerSpace nav .navCollapse {
  flex: 0 1 100%;
}
#headerSpace nav .navCollapse .navClose {
  display: none;
}
#headerSpace nav .navCollapse .navList {
  display: flex;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  gap: 30px;
  font-size: 0.875rem;
  justify-content: space-evenly;
}
#headerSpace .mainBtn {
  position: absolute;
  top: 20px;
  left: 80px;
  color: #fff;
}
#headerSpace .mainBtn::before {
  width: 100%;
}
#headerSpace .mainBtn:hover {
  color: #1e1e1e;
}
#headerSpace .mainBtn:hover::before {
  width: 0;
}
#headerSpace.don {
  position: fixed;
  left: 0;
  top: 0;
  transform: none !important;
  z-index: 1040;
}
.frame {
  display: flex;
  transform: none !important;
}
.frame .panel {
  height: 100vh;
}

#imageIntro {
  width: 50vw;
  flex: 0 0 50vw;
  position: relative;
}
#imageIntro .imgWrapper {
  position: absolute;
  width: calc(100% - 300px);
  height: calc(100% - 300px);
  left: 150px;
  top: 150px;
  background-color: #000;
  z-index: 1;
}
#imageIntro .imgWrapper h3.whtHead {
  position: absolute;
  width: 250px;
  height: 250px;
  display: grid;
  place-content: center;
  background-color: #1e1e1e;
  border-radius: 125px;
  right: 0;
  top: 0;
  z-index: 2;
  color: #fff;
  transform: translate(50%, -50%);
  font-size: 2rem;
  font-weight: 600;
  padding: 20px;
  text-align: center;
}
#imageIntro .imgWrapper #carouselExample {
  width: 100%;
  height: 100%;
}
#imageIntro .imgWrapper #carouselExample .carousel-inner {
  height: 100%;
  background-color: #1e1e1e;
}
#imageIntro .imgWrapper #carouselExample .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}
#imageIntro .imgWrapper #carouselExample .carousel-inner .carousel-item img {
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: linear-gradient(black, transparent);
}
#imageIntro .imgWrapper #carouselExample .carousel-inner .carousel-item .carouselText {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  bottom: 70px;
  padding: 30px 30px 0;
  font-size: 3rem;
  font-family: "DM Serif Display", serif;
  color: #fff;
}
#imageIntro .imgWrapper #carouselExample [type=button]:not(:disabled), #imageIntro .imgWrapper #carouselExample [type=reset]:not(:disabled), #imageIntro .imgWrapper #carouselExample [type=submit]:not(:disabled), #imageIntro .imgWrapper #carouselExample button:not(:disabled) {
  width: 70px;
  height: 70px;
  top: auto;
  bottom: 0;
}
#imageIntro .carouselText {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  bottom: 70px;
  padding: 30px 30px 0;
  font-size: 3rem;
  font-family: "DM Serif Display", serif;
  color: #fff;
}
#imageIntro .intro-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#imageIntro::before {
  content: "";
  position: absolute;
  width: 65%;
  padding-top: calc(65% - 140px);
  top: -70px;
  left: -70px;
  border: 70px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

#home {
  width: 100vw;
  flex: 0 0 100vw;
  height: 100vh;
  display: grid;
  margin-left: 100px;
  align-items: center;
}
#home .container {
  width: calc(100vw - 240px);
}
#home .text-content h1 {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 6rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #1e1e1e;
  position: relative;
}
#home .text-content h1 .line {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}
#home .text-content p {
  margin-bottom: 0;
}
#home .text-content p .line {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}
#home.scrolled {
  margin-left: 100px;
}

.otherFirst {
  margin-left: 100px;
}

#imgRound {
  width: calc(100vh - 500px);
  flex: 0 0 calc(100vh - 500px);
  height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
}
#imgRound::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #1e1e1e;
  left: 50%;
  top: 0;
  z-index: 0;
}
#imgRound .imgWrapper {
  padding-top: 100%;
  position: relative;
}
#imgRound .imgWrapper:hover .text {
  opacity: 1;
}
#imgRound .imgWrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(30, 30, 30, 0.5);
}
#imgRound .imgWrapper .text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-family: "DM Serif Display", serif;
  color: #1e1e1e;
  font-weight: 500;
  font-size: 3rem;
  opacity: 0;
  transition: 0.3s opacity ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.17);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#testimonials {
  display: flex;
  padding-right: 60px;
}
#testimonials .bottomAlign {
  display: grid;
  align-content: flex-end;
}
#testimonials .testimonialCards {
  display: flex;
  max-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
#testimonials .testimonialCards .testimonialsCard {
  padding: 30px;
  flex: 0 0 616px;
  width: 616px;
  min-height: 50vh;
  border-top: 1px solid #1e1e1e;
  border-right: 1px solid #1e1e1e;
}
#testimonials .testimonialCards .testimonialsCard:first-child {
  box-shadow: -1px 0 0px 0px #1e1e1e;
}

.testimonialsCard {
  padding: 10px;
}
.testimonialsCard .div-16-9 {
  margin-bottom: 24px;
}
.testimonialsCard h6 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 0;
  font-family: "DM Serif Display", serif;
}
.testimonialsCard h6 span {
  font-size: 0.875rem;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}
.testimonialsCard p {
  margin-bottom: 0;
  color: #777777;
}

#why {
  display: flex;
}
#why .content {
  background-color: #1e1e1e;
}
#why .mainHead h2 {
  color: #fff;
}
#why .mainHead p {
  color: #999;
}
#why .whyContent {
  display: flex;
  margin-left: 1px;
  gap: 1px;
}
#why .whyContent .whyCard {
  width: 450px;
  flex: 0 0 450px;
  padding: 35px;
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: #1e1e1e;
  display: flex;
  flex-direction: column;
}
#why .whyContent .whyCard > div {
  opacity: 1;
  display: grid;
  align-items: center;
  flex: 0 1 100%;
}
#why .whyContent .whyCard h5 {
  color: #fff;
  font-size: 3rem;
  font-family: "DM Serif Display", serif;
  text-align: center;
}
#why .whyContent .whyCard p {
  color: #fff;
}
#why .whyContent .whyCard .icon {
  flex: 0 0 250px;
  width: 250px;
  height: 250px;
  border: 1px solid #fff;
  display: grid;
  place-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  transition: 0.5s all ease;
}
#why .whyContent .whyCard .icon img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s all ease;
}
#why .whyContent .whyCard:hover .icon {
  background-color: #fff;
}
#why .whyContent .whyCard:hover .icon img {
  filter: invert(1);
}

#about {
  width: 100vw;
  flex: 0 0 100vw;
  height: 100vh;
  align-items: center;
  display: grid;
  overflow: hidden;
}
#about h5 {
  color: #1e1e1e;
  font-weight: 600;
}
#about .imgSide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#about .imgwrapper {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
#about .imgwrapper .imgSq {
  padding-top: 100%;
  position: relative;
}
#about .imgwrapper .imgSq img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#bookConsultation {
  flex: 0 0 90.8vw;
  min-width: 90.8vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: grid;
  text-align: center;
  align-items: center;
  align-content: center;
}
#bookConsultation .image1 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000;
}
#bookConsultation .image1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#bookConsultation .image2 {
  position: absolute;
  width: 810px;
  height: calc(100vh - 270px);
  top: 135px;
  right: 125px;
  background-color: #000;
}
#bookConsultation .image2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#bookConsultation h3 {
  font-size: 6rem;
  z-index: 3;
  color: #fff;
  font-family: "DM Serif Display", serif;
}
#bookConsultation .circleBtn {
  margin: auto;
}

#blogs {
  display: flex;
  padding-right: 60px;
}
#blogs.otherFirst .content {
  background-color: #1e1e1e;
  width: calc(100vw - 100px);
  flex: 0 0 calc(100vw - 100px);
  display: grid;
  place-content: center;
}
#blogs.otherFirst .content .mainHead {
  text-align: center;
}
#blogs.otherFirst .content .mainHead h2 {
  line-height: 1.2;
  font-size: 8rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #fff;
}
#blogs.otherFirst .content .mainHead h2 .line {
  -webkit-clip-path: none;
          clip-path: none;
}
#blogs.otherFirst .content .sideScrollAnim {
  display: flex;
  justify-content: center;
  padding: 20px;
}
#blogs.otherFirst .content .sideScrollAnim span {
  display: block;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  transform: rotate(45deg);
  position: relative;
  animation: move 1s linear infinite;
}
#blogs.otherFirst .content .sideScrollAnim span:nth-child(1) {
  animation-delay: -0.1s;
}
#blogs.otherFirst .content .sideScrollAnim span:nth-child(2) {
  animation-delay: -0.2s;
}
#blogs.otherFirst .content .sideScrollAnim span:nth-child(3) {
  animation-delay: -0.3s;
}
@keyframes move {
  from {
    left: -100px;
    opacity: 0;
  }
  50% {
    left: -25px;
    opacity: 1;
  }
  to {
    left: 50px;
    opacity: 0;
  }
}

.blogCards {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 20px;
}
.blogCards .blogCard {
  flex: 0 0 400px;
  width: 400px;
}
.blogCards .blogCard p, .blogCards .blogCard p > strong {
  font-weight: 400;
}

.blogCard {
  padding: 30px;
  border: 1px solid #1e1e1e;
  display: grid;
  color: #1e1e1e;
  text-decoration: none;
}
.blogCard img.blogImage {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 10px;
  opacity: 1;
  transition: 0.3s opacity ease;
}
.blogCard img.blogImage:hover {
  opacity: 0.7;
}
.blogCard .blogDetails {
  display: flex;
  font-size: 0.875rem;
  gap: 10px;
  margin-bottom: 10px;
  color: #777777;
}
.blogCard h6 {
  color: #1e1e1e;
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blogCard p {
  color: #777777;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blogCard p:empty {
  display: none;
}
.blogCard a.mainBtn {
  width: -moz-fit-content;
  width: fit-content;
}

#blogDetails {
  background-color: #1e1e1e;
  width: calc(100vw - 100px);
  flex: 0 0 calc(100vw - 100px);
  min-height: 70vh;
  display: grid;
  place-content: center;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
#blogDetails.blogsList {
  min-height: 40vh;
}
#blogDetails .blogImageMain {
  position: absolute;
  width: calc(100% + 100px);
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
#blogDetails .mainHead {
  text-align: center;
  position: relative;
  z-index: 1;
}
#blogDetails .mainHead h2 {
  line-height: 1.2;
  font-size: 5rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #fff;
}
#blogDetails .mainHead h2 .line {
  -webkit-clip-path: none;
          clip-path: none;
}

#blogcardsList {
  width: 100vw;
  flex: 0 0 100vw;
  border-bottom: 1px solid #1e1e1e;
}
#blogcardsList .textContent {
  padding-left: 100px;
}
#blogcardsList .textContent.don {
  position: fixed;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
}
#blogcardsList .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
#blogcardsList .row {
  row-gap: 24px;
}
#blogcardsList .row .blogCard {
  padding: 10px;
}
#blogcardsList .row .blogCard h6 {
  -webkit-line-clamp: 1;
}
#blogcardsList .row .blogCard p {
  -webkit-line-clamp: 2;
}
#blogcardsList .row .blogCard p strong {
  font-weight: 400;
}
#blogcardsList .row .blogCard p:not(:nth-child(4)) {
  display: none;
}

#blogText {
  width: 100vw;
  flex: 0 0 100vw;
  border-bottom: 1px solid #1e1e1e;
}
#blogText h5 {
  font-weight: 600;
  color: #1e1e1e;
}
#blogText .textContent {
  padding-left: 100px;
}
#blogText .textContent.don {
  position: fixed;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
}
#blogText .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

#contact {
  display: flex;
}
#contact .content {
  text-align: left;
}
#contact .addressList {
  display: flex;
}
#contact .addressList .addressCard {
  flex: 0 0 450px;
  width: 450px;
  height: 100vh;
  padding: 35px;
  padding-top: calc(100vh - 500px);
  border-left: 1px solid #1e1e1e;
}
#contact .addressList .addressCard h4 {
  font-family: "DM Serif Display", serif;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 40px;
}
#contact .addressList .addressCard .icon {
  margin-bottom: 10px;
}
#contact .addressList .addressCard .icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#contact .addressList .addressCard p {
  color: #1e1e1e;
  line-height: 1.7;
}
#contact .addressList .addressCard p strong {
  display: inline-block;
  margin-bottom: 10px;
}
#contact.otherFirst .content {
  width: calc(100vw - 100px);
  flex: 0 0 calc(100vw - 100px);
}

.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 100px 60px 10px 60px;
  flex: 0 0 700px;
  display: grid;
  align-content: space-between;
}
.footer .logo {
  margin-bottom: 10px;
  max-width: 200px;
  display: inline-block;
}
.footer .logo img {
  width: 100%;
}
.footer .row {
  margin-top: 40px;
}
.footer .row h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer .row .col-sm-6 {
  margin-bottom: 60px;
}
.footer .footerList {
  display: flex;
  gap: 15px;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer .copy {
  padding-top: 10px;
  border-top: 1px solid #D9D9D9;
}
.footer .partnerLogo {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  max-width: 152px;
  height: auto;
}

.content {
  padding-top: 150px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 100px;
  min-width: 700px;
  flex: 0 0 700px;
  display: grid;
  align-content: space-between;
  height: 100vh;
  text-align: center;
}

.footer-new {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 0px 10px 100px;
  flex: 0 0 700px;
  display: grid;
  align-content: space-between;
}
.footer-new .logo {
  margin-bottom: 10px;
  max-width: 200px;
  display: inline-block;
}
.footer-new .logo img {
  width: 100%;
}
.footer-new .topFooter {
  margin-bottom: 20px;
}
.footer-new .row {
  margin-top: 40px;
}
.footer-new .row h4 {
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.footer-new .row .col-sm-6 {
  margin-bottom: 60px;
}
.footer-new .footerList {
  display: flex;
  gap: 15px;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-new .copy {
  padding-top: 10px;
  border-top: 1px solid #D9D9D9;
}
.footer-new .partnerLogo {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  max-width: 152px;
  height: auto;
}

.para {
  line-height: 1.5;
}

.link {
  color: #1e1e1e;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.link::before {
  content: "";
  background-color: #1e1e1e;
  position: absolute;
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  right: auto;
  transition: 0.3s width ease;
}
.link:hover {
  text-decoration: none;
  color: #1e1e1e;
}
.link:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.link.alt {
  color: #fff;
}
.link.alt::before {
  background-color: #fff;
}

.mainHead h2 {
  font-size: 6rem;
  margin-bottom: 30px;
  font-family: "DM Serif Display", serif;
  color: #1e1e1e;
}
.mainHead h2 .line {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}

.div-16-9 {
  position: relative;
  padding-top: 56.25%;
}
.div-16-9 > * {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.circleBtn {
  width: 250px;
  height: 250px;
  border-radius: 125px;
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.circleBtn > span {
  transition: 0.3s text-shadow ease;
}
.circleBtn .nexticon {
  width: 96px;
  height: 96px;
  position: relative;
  right: -10px;
  pointer-events: none;
}
.circleBtn .nexticon::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: solid #fff;
  border-width: 1px 1px 0 0;
}
.circleBtn .nexticon::after {
  content: "";
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #fff;
}
.circleBtn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.3s all ease;
  z-index: -1;
  pointer-events: none;
}
.circleBtn:after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 20%;
  width: 20%;
  height: 20%;
  opacity: 0;
  background-color: #1e1e1e;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: 0.3s all ease;
}
.circleBtn:hover {
  color: #1e1e1e;
}
.circleBtn:hover > span {
  text-shadow: -1px -1px 0px #fff, 0px -1px 0px #fff, 1px -1px 0px #fff, 1px 0px 0px #fff, 1px 1px 0px #fff, 0px 1px 0px #fff, -1px 1px 0px #fff, -1px 0px 0px #fff;
}
.circleBtn:hover .nexticon::before {
  border-color: #1e1e1e;
}
.circleBtn:hover .nexticon::after {
  background-color: #1e1e1e;
}
.circleBtn:hover::before {
  width: 66%;
  height: 66%;
  left: 16.5%;
  top: 16.5%;
}
.circleBtn:hover::after {
  bottom: 0;
  right: 0;
  opacity: 1;
  transition-delay: 0.1s;
}
.circleBtn.alt {
  background-color: #fff;
  color: #1e1e1e;
  border-color: #fff;
}
.circleBtn.alt .nexticon::before {
  border-color: #1e1e1e;
}
.circleBtn.alt .nexticon::after {
  background-color: #1e1e1e;
}
.circleBtn.alt::before {
  background-color: #1e1e1e;
}
.circleBtn.alt::after {
  background-color: #fff;
}
.circleBtn.alt:hover {
  color: #fff;
}
.circleBtn.alt:hover > span {
  text-shadow: -1px -1px 0px #1e1e1e, 0px -1px 0px #1e1e1e, 1px -1px 0px #1e1e1e, 1px 0px 0px #1e1e1e, 1px 1px 0px #1e1e1e, 0px 1px 0px #1e1e1e, -1px 1px 0px #1e1e1e, -1px 0px 0px #1e1e1e;
}
.circleBtn.alt:hover .nexticon::before {
  border-color: #fff;
}
.circleBtn.alt:hover .nexticon::after {
  background-color: #fff;
}

.mainBtn {
  text-decoration: none;
  border: 1px solid #1e1e1e;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.mainBtn::before {
  content: "";
  background-color: #1e1e1e;
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  z-index: -1;
  transition: 0.3s width ease;
}
.mainBtn:hover {
  color: #fff;
}
.mainBtn:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.mainBtn.alt {
  border-color: #fff;
  background-color: #1e1e1e;
  color: #fff;
}
.mainBtn.alt::before {
  background-color: #fff;
}
.mainBtn.alt:hover {
  color: #1e1e1e;
}

.zForm .zLbl {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  color: #1e1e1e;
}
.zForm .zInp {
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #1e1e1e;
}

.div3-1 {
  position: relative;
  padding-top: 33.3333%;
}
.div3-1 > * {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 20px;
}

.darkHead {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #1e1e1e;
}

.spacer100 {
  height: 100px;
  width: 100%;
}

.categories h4 {
  color: #1e1e1e;
  font-family: "DM Serif Display", serif;
}
.categories .contentWrapper {
  position: sticky;
  top: 20px;
}
.categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.categories ul li .radioBtn label {
  border: 1px solid #777777;
  color: #777777;
  display: flex;
  padding: 10px;
  position: relative;
  align-items: center;
  white-space: nowrap;
  border-radius: 30px;
  transition: 0.3s all ease;
}
.categories ul li .radioBtn label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #777777;
  margin-right: 10px;
  border-radius: 10px;
  transition: 0.3s all ease;
}
.categories ul li .radioBtn label::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  background-color: #fff;
  left: 20px;
  top: 20px;
  border-radius: 10px;
  transition: 0.3s all ease;
}
.categories ul li .radioBtn label:hover {
  border-color: #1e1e1e;
  color: #1e1e1e;
  font-weight: 600;
}
.categories ul li .radioBtn input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.categories ul li .radioBtn input:checked + label {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff;
  font-weight: 600;
}
.categories ul li .radioBtn input:checked + label::before {
  border-color: #fff;
}
.categories ul li .radioBtn input:checked + label::after {
  width: 8px;
  height: 8px;
  left: 16px;
  top: 16px;
  border-width: 1px;
}

.drk {
  color: #1e1e1e;
}

.floatingBtnSocial {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 29;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #1e1e1e;
  background-color: #fff;
  border: 1px solid #1e1e1e;
  transition: 0.5s all ease;
}
.floatingBtnSocial.collapsed {
  transform: translate(100%, -50%);
  right: 0;
}

.floatingSocials {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 30;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  display: grid;
  gap: 10px;
  transition: 0.5s all ease;
}
.floatingSocials.collapsed {
  transform: translate(100%, -50%);
  right: 0;
}
.floatingSocials li > * {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #1e1e1e;
  background-color: #fff;
  border: 1px solid #1e1e1e;
  transition: 0.3s all ease;
}
.floatingSocials li > *:hover {
  background-color: #1e1e1e;
  color: #fff;
}
.floatingSocials li a.ph {
  border-color: #1A73E8;
  background-color: #1A73E8;
  color: #fff;
}
.floatingSocials li a.ph:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1A73E8;
}
.floatingSocials li a.wa {
  border-color: #32D851;
  background-color: #32D851;
  color: #fff;
}
.floatingSocials li a.wa:hover {
  background-color: #fff;
  border-color: #fff;
  color: #32D851;
}

.testimonialCard {
  padding: 30px;
  border: 1px solid #1e1e1e;
}
.testimonialCard .div-16-9 {
  margin-bottom: 24px;
}
.testimonialCard h6 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 0;
  font-family: "DM Serif Display", serif;
}
.testimonialCard h6 span {
  font-size: 0.875rem;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}
.testimonialCard p {
  margin-bottom: 0;
  color: #777777;
}

#blogDetails .mainHead h2.placeTitle span {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
  color: #1e1e1e;
  border-radius: 10px;
}

.blink {
  animation-name: breathe;
  animation-duration: 0.5s;
  animation-iteration-count: 10;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-timing-function: ease-out;
}

.cardBorder {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px outset rgba(0, 0, 0, 0.09);
  padding: 20px;
  padding-top: 30px;
  border-radius: 45px;
  -webkit-backdrop-filter: blur(5px) brightness(0.7);
          backdrop-filter: blur(5px) brightness(0.7);
  box-shadow: #26394d 0px 20px 30px -10px;
  margin: auto;
}

#special_popup_home_page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(221, 221, 221, 0.8);
  display: grid;
  place-content: center;
  z-index: 1024;
}
#special_popup_home_page h3 {
  font-family: "DM Serif Display", serif;
  color: #1e1e1e;
}
#special_popup_home_page input.zInp {
  width: 100%;
  padding: 12px 20px;
  background-color: #eee;
  border: none;
  border-radius: 5px;
}
#special_popup_home_page .cardBorder {
  max-width: 500px;
}

#success_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  border-radius: 13px;
  width: 100%;
  border: 1px solid;
  z-index: 1024;
  background-color: #fff;
}

span.close {
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 20px;
  position: absolute;
  right: 3%;
  top: 7%;
}

@keyframes breathe {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
@media (max-height: 1600px) {
  :root {
    font-size: 14px;
  }
  #headerSpace.panel nav .navCollapse .navList {
    gap: 15px;
  }
  #headerSpace.panel nav .navBrand img {
    width: 100px;
    height: auto;
  }
}
@media (max-height: 900px) {
  #imageIntro .imgWrapper h3.whtHead {
    width: 180px;
    height: 180px;
    font-size: 1.5rem;
    border-radius: 90px;
  }
  #imgRound {
    width: calc(100vh - 300px);
    flex: 0 0 calc(100vh - 300px);
  }
  #home .text-content h1 {
    font-size: 4rem;
  }
  .mainHead h2 {
    font-size: 4rem;
  }
  #why .content {
    min-width: 450px;
    flex: 0 0 450px;
  }
  #why .whyContent .whyCard h5 {
    font-size: 2.5rem;
  }
  #why .whyContent .whyCard .icon {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
  }
  #why .whyContent .whyCard .icon img {
    width: 60px;
    height: 60px;
  }
  #testimonials .content {
    min-width: 590px;
    flex: 0 0 590px;
  }
  #blogs .content {
    min-width: 450px;
    flex: 0 0 450px;
  }
}
@media (max-height: 767px) {
  :root {
    font-size: 12px;
  }
  #imageIntro .imgWrapper {
    height: calc(100% - 200px);
    top: 100px;
  }
  #imageIntro .imgWrapper #carouselExample .carousel-inner .carousel-item .carouselText {
    font-size: 2rem;
  }
  #testimonials .testimonialCards .testimonialsCard {
    flex: 0 0 400px;
    width: 400px;
    padding: 15px;
  }
  .blogCards .blogCard h6 {
    -webkit-line-clamp: 1;
  }
  .blogCards .blogCard p {
    -webkit-line-clamp: 3;
  }
  #contact .addressList .addressCard {
    padding-top: calc(100vh - 380px);
  }
  .circleBtn {
    width: 170px;
    height: 170px;
    border-radius: 85px;
  }
  .circleBtn .nexticon {
    width: 80px;
    height: 80px;
  }
  .circleBtn .nexticon::before {
    width: 30px;
    height: 30px;
  }
  #bookConsultation .image2 {
    height: calc(100vh - 130px);
    top: 65px;
  }
}
@media (max-height: 710px) {
  #headerSpace nav .navCollapse .navList,
  #headerSpace.panel nav .navCollapse .navList {
    gap: 10px;
  }
  #why .content {
    padding-bottom: 40px;
    padding-top: 60px;
  }
  #why .whyContent .whyCard {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer .footerList {
    gap: 10px;
  }
  .footer .row {
    margin-top: 20px;
  }
  .footer .row .col-sm-6 {
    margin-bottom: 20px;
  }
  .footer .partnerLogo {
    max-width: 80px;
  }
}
@media (max-width: 1320px) {
  #why .whyContent .whyCard {
    width: 370px;
    flex: 0 0 370px;
  }
  #imageIntro .carouselText {
    font-size: 2rem;
  }
}
@media (max-width: 1280px) {
  #headerSpace {
    width: 50px;
    flex: 0 0 50px;
    margin-right: -50px;
  }
  #headerSpace nav {
    height: 50px;
    padding: 10px;
  }
  #headerSpace .mainBtn {
    position: absolute;
    top: 10px;
    left: 35px;
    padding: 10px 20px;
  }
  .otherFirst,
  #home {
    margin-left: 50px;
  }
  #blogDetails,
  #blogs.otherFirst .content {
    width: calc(100vw - 50px);
    flex: 0 0 calc(100vw - 50px);
  }
  #blogText .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #blogText .textContent {
    padding-left: 50px;
  }
  #blogDetails .mainHead h2.placeTitle {
    font-size: 4rem;
  }
}
@media (max-width: 1199px) {
  #imageIntro .imgWrapper {
    height: calc(100% - 150px);
    top: 75px;
    width: calc(100% - 200px);
    left: 100px;
  }
  .content {
    padding-top: 70px;
    padding-bottom: 30px;
    min-width: 500px;
    flex: 0 0 500px;
  }
}
@media (max-width: 991px) {
  #headerSpace nav .navCollapse .navList,
  #headerSpace.panel nav .navCollapse .navList {
    font-size: 0.7rem;
  }
  #imageIntro .imgWrapper {
    height: calc(100% - 100px);
    top: 50px;
    width: calc(100% - 100px);
    left: 50px;
  }
  #imageIntro .imgWrapper h3.whtHead {
    width: 80px;
    height: 80px;
  }
  #home .text-content h1 {
    font-size: 3rem;
  }
  .mainHead h2 {
    margin-bottom: 10px;
    font-size: 3rem;
  }
  .para {
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }
  .blogCards .blogCard {
    padding: 10px;
  }
  .blogCards .blogCard p {
    -webkit-line-clamp: 2;
  }
  .blogCards .blogCard img.blogImage {
    aspect-ratio: 2/1;
  }
  .blogCards .blogCard .content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  * {
    cursor: auto;
  }
  #floatingBtn {
    bottom: 20px;
  }
  .frame {
    overflow-x: hidden;
  }
  .cursor {
    display: none;
  }
  .content {
    height: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
  #headerSpace.don,
  #headerSpace.panel {
    border-width: 0 0 1px 0;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
  }
  #headerSpace.don nav,
  #headerSpace.panel nav {
    transform: rotate(0);
    position: unset;
    width: 100%;
    padding: 0;
    justify-content: space-between;
  }
  #headerSpace.don nav .navCollapse,
  #headerSpace.panel nav .navCollapse {
    position: fixed;
    height: calc(100vh - 71px);
    background-color: #fff;
    border-left: 1px solid #1e1e1e;
    right: -10px;
    top: 61px;
    z-index: -1;
    width: 300px;
    padding: 30px;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
  }
  #headerSpace.don nav .navCollapse .navList,
  #headerSpace.panel nav .navCollapse .navList {
    flex-direction: column;
    font-size: 1rem;
  }
  #headerSpace.don nav .navCollapse.active,
  #headerSpace.panel nav .navCollapse.active {
    transform: translate(0);
  }
  #headerSpace.don nav .navBtn,
  #headerSpace.panel nav .navBtn {
    display: grid;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #1e1e1e;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
  }
  #headerSpace.don nav .navBtn span,
  #headerSpace.panel nav .navBtn span {
    display: block;
    height: 4px;
    border-radius: 2px;
    width: 100%;
    border: 1px solid #1e1e1e;
  }
  #headerSpace.don nav .navBrand img,
  #headerSpace.panel nav .navBrand img {
    width: 120px;
    height: auto;
  }
  #headerSpace.don .mainBtn,
  #headerSpace.panel .mainBtn {
    position: absolute;
    top: 15px;
    left: auto;
    right: 60px;
    flex: 0 0 auto;
  }
  .frame {
    display: block;
  }
  .frame .panel {
    height: auto;
    min-width: 100%;
  }
  #imageIntro {
    min-height: calc(100vh - 303px);
    margin-top: 71px;
  }
  #imageIntro::before {
    border-width: 30px;
    width: 35%;
    padding-top: calc(35% - 60px);
  }
  #imageIntro .imgWrapper h3.whtHead {
    right: 30px;
    top: 30px;
    width: 150px;
    height: 150px;
  }
  #home {
    margin-left: 0px;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #home .container {
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  #home .text-content {
    text-align: center;
  }
  #home .text-content h1 {
    font-size: 2rem;
  }
  #imgRound {
    width: 100%;
    height: 70vw;
  }
  #imgRound::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
  }
  #imgRound .imgWrapper {
    padding-top: 60vw;
    width: 60vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  #imgRound .imgWrapper img {
    box-shadow: 0 0 0 30px rgba(30, 30, 30, 0.5);
  }
  #imgRound .imgWrapper .text {
    opacity: 1;
    color: #fff;
    background: radial-gradient(black 3%, transparent 69%);
    text-shadow: 0 0 10px #000;
  }
  #testimonials {
    padding-right: 0;
    display: block;
  }
  #testimonials .testimonialCards {
    height: auto;
    gap: 24px;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 20px 50px;
  }
  #testimonials .testimonialCards .testimonialsCard {
    width: 50%;
    flex: 0 0 50%;
    border: 1px solid #1e1e1e;
    min-height: auto;
    padding: 10px;
    box-shadow: none !important;
  }
  #testimonials .testimonialCards .testimonialsCard .div-16-9 {
    padding-top: 100%;
  }
  #about {
    padding-top: 70px;
    padding-bottom: 30px;
    height: auto;
  }
  #about .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #about .imgwrapper {
    flex-direction: row;
  }
  #about .imgwrapper .imgSq {
    width: 45%;
    flex: 0 0 45%;
    padding-top: 45%;
  }
  #about .imgSide {
    height: auto;
  }
  #why {
    display: block;
  }
  #why .whyContent {
    margin-left: 0;
    margin-top: 1px;
    flex-wrap: wrap;
  }
  #why .whyContent .whyCard {
    width: 33.333333%;
    flex: 1 0 calc(33.333333% - 0.67px);
    padding: 40px 20px;
    display: grid;
    align-content: space-between;
  }
  #why .whyContent .whyCard .icon {
    flex: 0 0 20vw;
    width: 20vw;
    height: 20vw;
  }
  #why .whyContent .whyCard .icon img {
    width: 7vw;
    height: 7vw;
  }
  #why .whyContent .whyCard h5 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  #blogs {
    display: block;
    padding-right: 0;
  }
  .blogCards {
    height: auto;
    max-width: 100%;
    overflow-x: auto;
  }
  #bookConsultation {
    min-width: 100%;
    flex: none;
    height: auto;
    display: block;
    padding: 250px 20px;
  }
  #bookConsultation .image1 {
    width: 100%;
    left: 0;
    top: 0;
  }
  #bookConsultation .image2 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 0%;
  }
  #bookConsultation h3 {
    font-size: 3rem;
    text-align: center;
    position: relative;
    z-index: 3;
  }
  #bookConsultation .circleBtn {
    margin-left: auto;
    margin-right: auto;
  }
  #contact {
    display: block;
  }
  #contact .content {
    border-bottom: 1px solid #1e1e1e;
  }
  #contact .addressList {
    border-bottom: 1px solid #1e1e1e;
    max-width: 100%;
    overflow-x: auto;
  }
  #contact .addressList .addressCard {
    width: 45%;
    flex: 0 0 45%;
    height: auto;
    padding: 20px;
  }
  #contact .addressList .addressCard h4 {
    font-size: 1.5rem;
  }
  #contact .addressList .addressCard:first-child {
    border-left: 0;
  }
  .footer {
    padding: 70px 20px 80px;
  }
  .footer .row {
    row-gap: 24px;
  }
  .footer .copy {
    margin-top: 24px;
  }
  .circleBtn {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    padding: 10px 20px;
    gap: 5px;
    align-items: center;
    flex-direction: row-reverse;
  }
  .circleBtn::before {
    border-radius: 30px;
  }
  .circleBtn::after {
    display: none;
  }
  .circleBtn:hover::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .circleBtn .nexticon {
    width: 21px;
    flex: 0 0 21px;
    height: 21px;
    right: 0;
  }
  .circleBtn .nexticon::before {
    width: 11px;
    height: 11px;
    left: 14px;
  }
  .circleBtn .nexticon::after {
    width: 100%;
    left: 0;
  }
  #blogDetails.otherFirst,
  #blogs.otherFirst {
    margin-left: 0;
    margin-top: 71px;
    width: 100%;
  }
  #blogDetails.otherFirst .content,
  #blogs.otherFirst .content {
    width: 100%;
    height: 100vh;
  }
  #blog-cards .blogCards {
    flex-wrap: wrap;
    gap: 10px;
  }
  #blog-cards .blogCards .blogCard {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
  #blogDetails.otherFirst {
    min-height: calc(100vh - 71px);
  }
  #blogDetails.otherFirst.sm {
    min-height: calc(50vh - 71px);
  }
  #blogText .textContent {
    padding-left: 0;
  }
  #contact.otherFirst {
    margin-left: 0;
  }
  #contact.otherFirst .content {
    min-width: 100%;
    width: 100%;
  }
  #blogcardsList .textContent {
    padding-left: 0;
    padding-top: 0;
  }
  .footer-new {
    padding-left: 0;
  }
  .footer-new .row {
    row-gap: 50px;
    margin-top: 0;
  }
  .div3-1 {
    padding-top: 50%;
  }
  #blogDetails .mainHead h2.placeTitle {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .content {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: left;
  }
  #testimonials .testimonialCards .testimonialsCard {
    width: 80%;
    flex: 0 0 80%;
  }
  #contact .addressList .addressCard {
    width: 60%;
    flex: 0 0 60%;
  }
  .blogCards .blogCard {
    flex: 0 0 80%;
    width: 80%;
  }
  #why .whyContent .whyCard {
    width: 100%;
    flex: 1 0 calc(50% - 0.5px);
    padding: 20px 10px;
  }
  #why .whyContent .whyCard h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  #blogDetails .mainHead h2 {
    font-size: 3rem;
  }
  #blog-cards .blogCards .blogCard {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #blogDetails .mainHead h2.placeTitle {
    font-size: 2rem;
  }
}/*# sourceMappingURL=main.css.map */