* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* VIDEO */
.container {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
}

.container .video-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  overflow: hidden;
}

/* #clip-video {
  clip: rect(0 1263.3333740234375px 187.33334350585938px 0);
  clip: rect(0, 1263.3333740234375px, 187.33334350585938px, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
} */

/* NAVIGATION */
.navigation-container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e3d3d7;
}

.navigation-container.sticky {
  position: sticky;
  z-index: 1000000000000000;
  top: 0;
  left: 0;
}

.navigation-container .icons .icons-container {
  display: inline-block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  /* padding-left: 20px; */
  margin-left: 20px;
}

.navigation-container .icons .icons-container .icon {
  display: grid;
  place-items: center;
  background-color: #b86b77;
  border-radius: 50%;
  height: 34px;
  width: 34px;
  transition: all 0.2s ease;
}

.navigation-container .icons .icons-container .icon:hover {
  cursor: pointer;
  background-color: #b86b77c7;
}

.navigation-container .icons .icons-container .icon i {
  color: #e3d3d7;
}

.navigation-container .logo .logo-container img {
  height: 60px;
}

.navigation-container .menu .menu-container {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  padding: 40px;
}

.navigation-container .menu .menu-container h4 {
  font-weight: 200;
}

.navigation-container .menu .menu-container .menu-icon i:hover {
  color: #fff;
  cursor: pointer;
}
.navigation-container .menu .menu-container .menu-icon i:active {
  color: #b86b77;
}

/* HEAD */
.head .head-container {
  max-width: 1200px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 70px;
}

#rotation {
  -webkit-animation: antiClockRot 40s infinite linear;
  -ms-animation: antiClockRot 40s infinite linear;
  animation: antiClockRot 40s infinite linear;
}

.rotation {
  /* max-width: 100%; */
  width: 33.75rem;
}

.right-container {
  position: relative;
  margin-left: 40px;
}

.logo-border {
  overflow: hidden;
  display: inline-block;
  transform: translateX(-20%);
  opacity: 0;
  transition: all 1.5s ease-in-out;
}

.logo-border.visible {
  transform: translateX(0);
  opacity: 1;
}

#celeb-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  z-index: 9;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 50%;
  opacity: 1;
  /* transform: translateX(-20%); */
  /* transition: all 1.5s ease-in-out; */
}
/* #celeb-logo.visible {
  transform: translateX(0);
  opacity: 1;
} */

.left .left-container {
  display: flex;
  flex-direction: column;
}

.left .left-container .front-fade {
  text-align: center;
  transform: scale(0);
  opacity: 0;
  transition: all 1.4s ease-in-out;
}

.left .left-container .front-fade.visible {
  transform: scale(1);
  opacity: 1;
}

.left .left-container .front-fade h1 {
  font-family: "PlayfairDisplayItalic";
  font-style: italic;
  text-transform: uppercase;
  color: #e3d3d7;
  font-size: 114px;
}

.left .left-container .front-fade h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #603135;
  font-size: 80px;
  margin-top: -80px;
  margin-left: 24px;
}

.left .left-container .right-fade {
  width: 27.813rem;
  text-align: center;
  margin: 0px auto;
  margin-top: 24px;
  opacity: 0;

  transform: translateX(16%);
  transition: all 1.8s ease-in-out;
}

.left .left-container .right-fade.visible {
  transform: translateX(0);
  opacity: 1;
}

.left .left-container .right-fade p {
  font-family: "AthitiRegular";
  line-height: 40px;
  font-size: 18px;
}

/* ABOUT SECTION */

.about .about-container {
  box-sizing: border-box;
  display: flex;
  justify-content: space-evenly;
  background-color: #e3d3d7;
  /* transform: translate(); */
}

.about .about-container .about-left {
  opacity: 0;
  transform: translateY(20%);
  transition: all 2s ease-in-out;
  padding: 50px;
}

.about .about-container .about-left.visible {
  opacity: 1;
  transform: translateY(0);
}

.about .about-container .about-left .left-container h2 {
  color: #603135;
  font-family: "PlayfairDisplayItalic";
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
}

.about .about-container .about-left .left-container p {
  width: 27.813rem;
  color: #9d7c80;
  font-family: "AthitiRegular";
  line-height: 40px;
  font-size: 18px;
}

.about .about-container .about-left .left-container a button {
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  background-color: #603135;
  cursor: pointer;
  outline: 0;
  border: 1px solid #603135;
  margin-top: 30px;
}
.about .about-container .about-left .left-container a button:hover {
  color: #603135;
  background-color: #fff;
}

.about .about-container .about-right {
  flex: 1 1 0;
  background-color: #fff;
  opacity: 0;
  transform: translateY(10%);
  transition: all 2s ease-in-out;
}

.about .about-container .about-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.about .about-container .about-right .right-container {
  display: grid;
  place-items: center;
  padding: 100px 0;
}

.about-container .about-right .right-container .profile-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.profile2 {
  margin-top: -60px;
  align-items: center;
  margin-left: -40px;
}

.about-container .about-right .right-container .profile-container img {
  width: 250px;
  border: 10px solid #e3d3d7;
}

.about-container
  .about-right
  .right-container
  .profile-container
  .text-container
  h2 {
  color: #603135;
  font-family: "PlayfairDisplayItalic";
  font-size: 62px;
  font-style: italic;
}

.about-container
  .about-right
  .right-container
  .profile-container
  .text-container
  h3 {
  color: #603135;
  font-family: "Work Sans", sans-serif;
  font-size: 40px;
  font-style: italic;
}

.about-container
  .about-right
  .right-container
  .profile-container
  .img-container {
  opacity: 0;
  transform: translate(-50%, 50%);
  transition: all 2s ease-in-out;
}
.about-container
  .about-right
  .right-container
  .profile-container
  .text-container {
  opacity: 0;
  transform: translate(50%, 50%);
  transition: all 2s ease-in-out;
}

.about-container
  .about-right
  .right-container
  .profile-container
  .img-container.visible,
.about-container
  .about-right
  .right-container
  .profile-container
  .text-container.visible {
  opacity: 1;
  transform: translate(0);
}

/* CELEBRATIONS SECTION */

.celeb {
  position: relative;
  overflow: hidden;
}

.blurred-logo::before {
  content: url("./assets/img/celbg-blurred.png");
  position: absolute;
  right: -190px;
  top: 8%;
  z-index: 99;
  overflow-x: hidden;
}

.celeb .celeb-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  background-color: #e3d3d7;
  color: #603135;
  padding: 50px 0;
}

.celeb .celeb-container .celeb-title h2 {
  font-size: 80px;
  font-weight: 100;
  opacity: 0;
  transform: scale(0);
  transition: all 2s ease-in-out;
}
.celeb .celeb-container .celeb-title h2.visible {
  opacity: 1;
  transform: scale(1);
}

.celeb .celeb-container .celeb-para {
  width: 57.5rem;
  font-size: 18px;
  font-family: "AthitiRegular";
  line-height: 40px;
  opacity: 0;
  transform: translateY(20%);
  transition: all 2s ease-in-out;
}
.celeb .celeb-container .celeb-para.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Joined section */
.joined .joined-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  background-color: #e3d3d7;
  padding-top: 100px;
}

.joined .joined-container .right-joined {
  text-align: right;
  /* overflow: hidden; */
}

.joined .joined-container .right-joined img {
  width: 80%;
}

.joined .joined-container .right-joined .img-container {
  position: relative;
  z-index: 0;
}
.joined .joined-container .right-joined .img-container::before {
  border: 2px solid #d3b565;
  content: "";
  position: absolute;
  width: 661px;
  height: 460px;
  left: 100px;
  margin: -15px 0;
  top: 70px;
  z-index: -1;
}

.joined .joined-container .right-joined .live-concert-img-container {
  position: relative;
  text-align: left;
  z-index: 0;
}
.joined .joined-container .right-joined .live-concert-img-container::before {
  border: 2px solid #d3b565;
  content: "";
  position: absolute;
  width: 705px;
  height: 390px;
  left: 0px;
  margin: -15px 0;
  top: 70px;
  z-index: -1;
}

.joined .joined-container .right-joined .corporate-img-container {
  position: relative;
  z-index: 0;
}
.joined .joined-container .right-joined .corporate-img-container::before {
  border: 2px solid #d3b565;
  content: "";
  position: absolute;
  width: 716px;
  height: 430px;
  left: 100px;
  margin: -15px 0;
  top: 70px;
  z-index: -1;
}

.joined .joined-container .left-joined {
  width: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
}

.joined .joined-container .left-joined h2 {
  color: #603135;
  font-family: "PlayfairDisplayItalic";
  font-size: 66px;
  text-align: center;
}

.joined .joined-container .left-joined .corp-heading {
  margin-left: 40px;
}

.joined .joined-container .left-joined h3 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 90px;
  line-height: 24px;
  margin-left: 50px;
}

.joined .joined-container .left-joined::before {
  content: url("./assets/img/blurred-2.png");
  position: absolute;
  top: 160px;
  left: -120px;
}

.joined .joined-container .left-joined .dotted {
  position: relative;
}

.joined .joined-container .left-joined .dotted::before {
  content: url("./assets/img/dotline.png");
  position: absolute;
  right: 360px;
  top: 25%;
  z-index: 8;
}

.joined .joined-container .left-joined .right-dotted::before {
  position: absolute;
  content: url("./assets/img/dotline\ \(cropped\).png");
  right: 0px;
  top: 33%;
  transform: rotateY(180deg);
  z-index: 8;
}

.joined .joined-container .left-joined .left-dotted::before {
  content: url("./assets/img/dotline\ \(cropped\).png");
  position: absolute;
  right: 425px;
  top: 25%;
  z-index: 8;
}

.joined-end {
  padding-bottom: 160px;
  background-color: #e3d3d7;
}

/* EXPERTISE SLIDER COMPONENT */
.expertise {
  background-color: #e3d3d7;
  background: url("./assets/img/our-bg.jpg") no-repeat center center/cover;
  width: 100%;
  height: 100%;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.expertise .expertise-container .expertise-title {
  padding: 20px;
  color: white;
  text-align: center;
}
.expertise .expertise-container .expertise-title h2 {
  font-size: 50px;
  color: #e3d3d7;
  font-style: italic;
}
.expertise .expertise-container .expertise-title h3 {
  font-size: 50px;
  margin-top: -40px;
  color: #fff;
  letter-spacing: 4px;
  font-style: italic;
}

/* .swiper {
  width: 100%;
  height: 100%;
} */

.slider-container {
  padding: 20px;
  /* overflow-x: hidden; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* row-gap: 20px; */
  /* grid-template-rows: repeat(3, 1fr); */
  /* width: 100%;
  height: 100%; */
  /* overflow: hidden; */
}

.swiper-slide {
  /* text-align: center; */
  /* font-size: 18px; */
  border: 0.1px solid #b86b77;
  /* color: #603135; */
  background: transparent;
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center;
  align-items: center; */
  overflow: hidden;
  height: 30rem;
  position: relative;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  background: rgb(212, 164, 167);
  background: linear-gradient(
    169deg,
    rgba(212, 164, 167, 1) 15%,
    rgba(184, 107, 119, 1) 54%
  );
  opacity: 0.7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(2) translate(-75%, -75%) rotate(-28deg);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1);
}
.swiper-slide:hover::after {
  transform: scale(2) translate(0, 0) rotate(-28deg);
}

/* .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.swiper-slide .swiper-img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
  display: block;
  transform: scale(1);
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.swiper-slide .swiper-img::before {
  content: "";
  display: block;
  padding-top: 75%;
  overflow: hidden;
}

.swiper-slide .swiper-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  z-index: 1;
  /* color: #fff; */
  transform: translateY(-20%);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 300ms;
}

.swiper-slide .swiper-text .swiper-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.swiper-slide .swiper-text .swiper-title a {
  text-decoration: none;
  /* color: #fff; */
  color: #000;
  font-size: 22px;
}

.swiper-slide:hover .swiper-img {
  transform: scale(1.2);
}
.swiper-slide:hover .swiper-text {
  transform: translateY(0);
  opacity: 1;
}

.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  object-fit: cover;
}

/* Swiggle Effect */
.first-rot-container {
  display: inline-block;
  border-radius: 10px;
  cursor: context-menu;
}

.first-rot-container .rot-char {
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.first-rot-container:hover .rot-char {
  transform: translateY(-20px);
  /* color: #d3b565; */
  color: #fff;
  background: #00000034;
  -webkit-text-stroke: 1px black;
}

/*  */

/* Text Appear */
.item-text {
  transform: translateY(-20%);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

/* FOOTPRINTS SECTION */
.footprints .footprints-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e3d3d7;
  padding: 60px;
}

.footprints .footprints-container .footprints-title {
  text-align: center;
}
.footprints .footprints-container .footprints-title h2 {
  font-family: "PlayfairDisplayItalic";
  font-style: italic;
  color: #603135;
  font-size: 66px;
}
.footprints .footprints-container .footprints-title h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 200;
  color: #fff;
  font-size: 90px;
  margin-left: 20px;
  margin-top: -50px;
  margin-bottom: 50px;
}

.footprints .footprints-container .footprints-gif {
  text-align: center;
}

/* MEDIA SECTION */
.media .media-container {
  background-color: #e3d3d7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  overflow: hidden;
}

.media .media-container .media-title {
  text-align: center;
}

.media .media-container .media-title h2 {
  font-size: 66px;
  font-family: "PlayfairDisplayItalic";
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: capitalize;
  /*  */
  opacity: 0;
  transform: scale(0);
  transition: all 2s ease-in-out;
}
.media .media-container .media-title h2.visible {
  opacity: 1;
  transform: scale(1);
}

.media-logos {
  position: relative;
}

/* .media-logos::before,
.media-logos::after {
  content: "BABATUNDE";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 20000000000000000000000000000000000000000;
} */

.media-logos::before {
  left: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), #b86b77);
}
.media-logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), RED);
}

.media-logos .media-logos-container {
  white-space: nowrap;
  padding: 40px;
  display: inline-block;
  animation: slide 30s infinite linear;
}

.media-logos:hover .media-logos-container {
  animation-play-state: paused;
}

.media-logos .media-logos-container .logo {
  padding: 40px;
  white-space: nowrap;
}

.media-logos .media-logos-container .logo img {
  height: 50px;
}

/* CHAT SECTION */
.chat .chat-container {
  display: flex;
  background-color: #e3d3d7;
  background: url("./assets/img/blurred-3.png") no-repeat center right/cover;
  background-size: 52%;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #e3d3d7;
}
.chat .chat-container::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #fff;
  height: 100%;
  top: 0;
  left: 25px;
  z-index: 9;
}

.chat .chat-container .chat-left {
  text-align: center;
  padding: 100px;
  transform: translateY(20%);
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
.chat .chat-container .chat-left.visible {
  background-color: #fff;
  opacity: 1;
  transform: translateY(0);
}

.chat .chat-container .chat-left button {
  padding: 10px 20px;
  text-transform: uppercase;
  outline: none;
  border: 1px solid #9d7c80;
  background-color: #603135;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.chat .chat-container .chat-left button:hover {
  background-color: #fff;
  color: #000;
}

.chat .chat-container .chat-left span {
  width: 16.865rem;
  white-space: break-spaces;
}

.chat .chat-container .chat-left h3 {
  font-size: 66px;
  color: #e3d3d7;
}

.chat .chat-container .chat-left h2 {
  font-size: 66px;
  color: #603135;
  opacity: 0;
  transform: scale(0);
  transition: all 1.5s ease-in-out;
}
.chat .chat-container .chat-left h2.visible {
  opacity: 1;
  transform: scale(1.1);
}

.chat .chat-container .chat-left span p {
  width: 16.865rem;
}

/* .chat .chat-container .chat-right {
  position: relative;
  background-color: #e3d3d7;
} */
/* .chat .chat-container .chat-right::before {
  position: absolute;
  top: 0;
  right: -40px;
  background: url("./assets/img/blurred-3.png");
  z-index: 2000000000000000000000000000000000000000000;
} */

/* INSTAGRAM SECTION */

.sm .sm-container img {
  height: 50px;
  width: 50px;
}

.sm .sm-container {
  padding: 100px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
}

.sm .sm-container .grid-1 {
}

.sm .sm-container .grid-2 {
}

.sm .sm-container .grid-3 {
}

.grid-1 .grid-1-container {
  padding: 20px;
}

.grid-1 .grid-1-container .grid-title,
.grid-1 .grid-1-container .grid-body {
  display: flex;
  flex-direction: column;
}

.grid-1 .grid-1-container .grid-title .grid-title-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grid-1 .grid-1-container .grid-title .grid-title-container .title-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .title-1
  .pro-pic
  img {
  border-radius: 50%;
  outline: 2px solid rgb(232, 146, 160);
  cursor: pointer;
}

.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .title-1
  .username-container {
  display: flex;
  flex-direction: column;
}
.grid-1 .grid-1-container .grid-title .grid-title-container .title-1 .name {
  color: #000;
  cursor: pointer;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .title-1
  .name:hover,
.grid-1 .grid-1-container .grid-title .grid-title-container .title-1 .id:hover {
  text-decoration: underline;
}
.grid-1 .grid-1-container .grid-title .grid-title-container .title-1 .id {
  color: #7f7f7f;
  font-size: 12px;
  cursor: pointer;
}

.grid-1 .grid-1-container .grid-title .grid-title-container .acc-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .acc-info
  .acc-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .acc-info
  .acc-details
  .num {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .acc-info
  .acc-details
  .det {
  color: #7f7f7f;
  font-size: 13px;
}

.grid-1 .grid-1-container .grid-title .grid-title-container .follow-btn {
  display: inline-block;
  text-align: center;
  margin: 6px auto;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .follow-btn
  .insta-icon {
  border-radius: 5px;
  color: #fff;
  background-color: #0095f6;
  outline: none;
  border: 0.4px solid #000;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  cursor: pointer;
}
.grid-1
  .grid-1-container
  .grid-title
  .grid-title-container
  .follow-btn
  .insta-icon:hover {
  opacity: 0.9;
}

.grid-1 .grid-1-container .grid-body .grid-body-container {
  padding: 30px;
}

.grid-1 .grid-1-container .grid-body .grid-body-container .body-pics {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  overflow: hidden;
}

.grid-1 .grid-1-container .grid-body .grid-body-container .body-pics .pic {
  cursor: pointer;
  transition: all 0.2s ease-in;
  position: relative;
}

.grid-1
  .grid-1-container
  .grid-body
  .grid-body-container
  .body-pics
  .pic:hover
  .black {
  visibility: visible;
}

.black {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  visibility: hidden;
}

/* .black .heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
} */

/* .grid-1 .grid-1-container .grid-body .grid-body-container .body-pics .pic:hover .pic::before{

} */

.grid-1 .grid-1-container .grid-body .grid-body-container .body-pics img {
  display: block;
  width: 155px;
  height: 155px;
  object-fit: cover;
  border: 0.01px solid black;
}

.grid-3 .grid-3-container {
  padding: 30px 0;
}

.grid-3 .grid-3-container img {
  height: 640px;
  width: 450px;
}

/* FOLLOW SECTION */
.follow .follow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.follow .follow-container .follow-heading h2 {
  font-size: 66px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 200;
  font-style: italic;
  opacity: 0;
  transform: translateX(-20%);
  transition: all 1.5s ease-in-out;
  color: #b86b77;
}
.follow .follow-container .follow-heading h2.visible {
  opacity: 1;
  transform: translateX(0);
}

.address {
  transform: translateX(20%);
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
.address.visible {
  transform: translateX(0);
  opacity: 1;
}

.address .address-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.address .address-container .mob-num,
.address .address-container .mail-id {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #b86b77;
}

.address .address-container .mail-id p {
  color: #b86b77;
}

.personal-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.personal-logos .icon {
  height: 40px;
  width: 40px;
  background-color: #b86b77;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.personal-logos .icon:hover {
  opacity: 0.7;
}

.market-address {
  display: grid;
  place-items: center;
  margin-top: 50px;
}
.market-address p {
  color: #b86b77;
  line-height: 2.2;
  font-style: italic;
}

.disclaimer p {
  color: #d4a4a7;
  text-align: center;
  line-height: 2.6;
  font-size: 18px;
  font-family: "AthitiRegular";
  font-weight: 400;
  width: 69.375rem;
  margin: 20px auto;
  margin-top: 36px;
  opacity: 0;
  transform: scale(0);
  transition: all 1.5s ease-in-out;
}
.disclaimer p.visible {
  opacity: 1;
  transform: scale(1);
}

/* FOOTER SECTION */
.footer .footer-container {
  display: grid;
  place-items: center;
  background-color: #e3d3d7;
  padding: 30px;
  letter-spacing: 1px;
}

.footer .footer-container p {
  text-transform: uppercase;
  color: #603135;
}

/* Menu Popup */
/* .text {
  text-transform: uppercase;
} */

.logo {
  width: 150px;
}

.nav-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 20px;
}

/* .open-btn {
  position: fixed;
  top: 10px;
  left: 10px;
} */

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  z-index: 99999999999999999999999999999;
}

.nav.visible {
  transform: translateX(0);
}

.nav-black {
  background-color: #b86b77;
  width: 100%;
  max-width: 400px;
  min-width: 320px;
  transition-delay: 0.4s;
}

.nav-black.visible {
  transition-delay: 0s;
}

.nav-red {
  background-color: #603135;
  width: 100%;
  transition-delay: 0.2s;
}

.nav-red.visible {
  transition-delay: 0.2s;
}

.nav-white {
  /* background-color: #d4a4a7; */
  /* background: linear-gradient(
    118deg,
    rgba(212, 164, 167, 1) 23%,
    rgba(184, 107, 119, 1) 64%
  ); */
  background: rgb(212, 164, 167);
  background: linear-gradient(
    169deg,
    rgba(212, 164, 167, 1) 15%,
    rgba(184, 107, 119, 1) 54%
  );
  width: 100%;
  padding: 40px;
  position: relative;
  transition-delay: 0s;
  border-left: 0.1px solid #9d7c80;
}

.nav-white.visible {
  transition-delay: 0.4s;
}

.nav-white img {
  transition: all 0.2s ease-in;
  border-radius: 50%;
  -webkit-backdrop-filter: grayscale(100);
  position: relative;
  display: inline-block;
  cursor: pointer;
  filter: brightness(0.9) opacity(0.9);
}

.nav-white img:hover {
  border: 0.01px dotted #fff;
  /* box-shadow: 0 2px 4px 4px #e3d3d7; */
  filter: opacity(0.97);
}

.nav-white::before {
  content: url("./assets/img/sidebar-logo-pop\(cropped\).png");
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 30px;
  opacity: 0.4;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.close-btn:hover {
  transform: scale(1.3);
  opacity: 1;
}
.close-btn:active {
  color: red;
}

.list {
  list-style-type: none;
  padding: 0;
}

.list li {
  margin: 30px 0;
}

.list li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transform: scale(1);
  transition: all 1s ease-in;
  padding: 20px;
  margin-bottom: 50px;
}
.list li a:hover .rot-sidebar-char {
  color: #603135;
  /* transform: scale(1.1); */
}

.list ul {
  list-style-type: none;
  padding-left: 20px;
}

/* KEYFRAMES */

/* Logo rotation */
@keyframes antiClockRot {
  0% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
  }

  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}

/* Logos slide */
@keyframes slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

/* MEDIA-QUERIES */
@media only screen and (max-width: 1600px) {
  /* Head section */
  .head .head-container {
    /* gap: 220px; */
  }

  /* About section */
  /* .about .about-container .about-left {
  }
  .about .about-container .about-right {
    flex: 0 0 800px;
  }

  .about .about-container .about-left .left-container p {
    width: 100%;
  } */

  /* Celebration section */
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    left: 14%;
    width: 85%;
    height: 100%;
  }
  .joined .joined-container .right-joined .live-concert-img-container::before {
    left: 0px;
    width: 85%;
    height: 100%;
  }
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    left: 14%;
    width: 85%;
    height: 100%;
  }

  /* .joined .joined-container .left-joined .right-dotted::before {
    content: url("./assets/img/dotline\ \(cropped\).png");
    top: 30%;
    right: -35px;
  } */
}

@media only screen and (min-width: 1401px) {
  /* Joined section */
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    width: 656px; /* 638px*/
    height: 28.438rem; /* 455px */
    left: 6rem; /* 100px*/
  }
  .joined .joined-container .right-joined .corporate-img-container::before {
    width: 700px; /* 644px */
    height: 24.75rem; /* 396px */
    left: 5.75rem; /* 100px */
  }
}

@media only screen and (min-width: 1351px) and (max-width: 1400px) {
  /* Head section */

  /*  */

  /* Joined Section */
  .joined .joined-container .right-joined {
    overflow: hidden;
  }

  .joined .joined-container .right-joined .social-celeb-img-container::before {
    width: 70%;
    height: 80%;
  }
  .joined .joined-container .right-joined .live-concert-img-container::before {
    width: 39.875rem; /* 638px */
    height: 22rem; /* 352px */
    left: 0px;
  }
  .joined .joined-container .right-joined .corporate-img-container::before {
    width: 70%;
    height: 60%;
  }
}

@media only screen and (min-width: 1301px) and (max-width: 1351px) {
  .joined .joined-container {
    max-width: 1400px;
  }

  .joined .joined-container .right-joined {
    overflow: hidden;
  }

  .joined .joined-container .right-joined .social-celeb-img-container::before {
    width: 631px;
    height: 451px;
    left: 100px;
  }
  .joined .joined-container .right-joined .live-concert-img-container::before {
    width: 650px;
    height: 360px;
  }

  .joined .joined-container .right-joined .corporate-img-container::before {
    width: 644px;
    height: 380px;
  }
}

@media only screen and (max-width: 1300px) {
  /* Head Section */
  /* .rotation {
    height: 31.75rem;
  } */
  .head .head-container {
    max-width: 1000px;
  }

  .left .left-container .front-fade h1 {
    font-size: 110px;
  }
  .left .left-container .front-fade h2 {
    font-size: 76px;
  }

  /* Joined Section */
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    width: 524px;
    height: 370px;
    left: 100px;
  }
  .joined .joined-container .right-joined .live-concert-img-container::before {
    width: 600px;
    height: 335px;
  }

  .joined .joined-container .right-joined .corporate-img-container::before {
    width: 524px;
    height: 330px;
    left: 100px;
  }

  .joined .joined-container .left-joined .right-dotted::before {
    content: url("./assets/img/dotline \(cropped-2\).png");
    top: 30%;
    right: 0;
  }

  /* Social Media section */
  .sm .sm-container {
    padding: 90px;
  }
}

@media only screen and (max-width: 1231px) {
  /* Head section */
  .left .left-container .front-fade h1 {
    font-size: 105px;
  }

  /* Joined section */
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    /* width: 490px;
      height: 340px;
      left: 70px; */
    width: 82%;
  }
  .joined .joined-container .right-joined .live-concert-img-container::before {
    /* width: 490px;
      height: 340px;
      left: 70px; */
    width: 86%;
    height: 90%;
  }

  .joined .joined-container .right-joined .corporate-img-container::before {
    /* width: 490px;
      height: 340px;
      left: 70px; */
    width: 82%;
  }
}

@media only screen and (max-width: 1200px) {
  /* Head-section */
  .rotation {
    width: 28.75rem;
  }

  .left .left-container .front-fade h1 {
    font-size: 90px;
  }
  .left .left-container .front-fade h2 {
    font-size: 56px;
    margin-top: -56px;
  }

  /* About section */
  .about-container .about-right .right-container .profile-container img {
    width: 220px;
    border: 8px solid #e3d3d7;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h2 {
    font-size: 50px;
  }
  /* Joined section */
  .joined .joined-container .right-joined .social-celeb-img-container::before {
    width: 87%;
    height: 95%;
    left: 12%;
  }

  .joined .joined-container .right-joined .corporate-img-container::before {
    width: 87%;
    height: 95%;
    left: 12%;
  }

  .joined .joined-container .left-joined .right-dotted::before {
    right: 5px;
  }

  /* Footprints section */
  .footprints .footprints-container .footprints-gif img {
    width: 95%;
  }

  /* Expertise section */
  .swiper-slide .swiper-text .swiper-title a {
    font-size: 20px;
  }

  /* Media section */
  .media-logos .media-logos-container .logo img {
    height: 40px;
  }
}

@media only screen and (max-width: 1150px) {
  /* Head section */
  .left .left-container .right-fade {
    transform: translateX(5%);
  }

  .left .left-container .front-fade h {
    font-size: 75px;
  }
  .left .left-container .front-fade h2 {
    font-size: 50px;
    margin-top: -51px;
  }

  /* About sectin */
  .about-container {
    overflow: hidden;
  }

  /* Joined section */
  .joined .joined-container .left-joined h2 {
    margin-left: 80px;
  }
  .joined .joined-container .left-joined h2 {
    font-size: 60px;
    margin-right: 130px;
  }
  .joined .joined-container .left-joined h3 {
    font-size: 80px;
    margin-right: 30px;
  }

  .joined .joined-container .left-joined .right-dotted::before {
    /* opacity: 0.1; */
  }

  .swiper-slide .swiper-text .swiper-title a {
    font-size: 16px;
  }

  /* Footprints section */
  .footprints-gif img {
    width: 95%;
  }

  /* Social Media section */
  .sm .sm-container {
    padding: 60px;
  }

  .grid-3 .grid-3-container img {
    width: 420px;
  }

  /* Follow section */
  .disclaimer p {
    width: 63.375rem;
  }
}

@media only screen and (max-width: 1100px) {
  /* Head section */
  .rotation {
    width: 26.75rem;
  }
  .head .head-container {
    gap: 20px;
    flex-direction: column;
  }

  .left .left-container .right-fade {
    transform: translateY(10%);
    opacity: 0;
    width: 48.813rem;
    transition: all 2.5s ease-in-out;
  }
  .left .left-container .right-fade.visible {
    transform: translateY(0%);
    opacity: 1;
    width: 48.813rem;
  }

  .left .left-container .front-fade h {
    font-size: 60px;
  }
  .left .left-container .front-fade h1 {
    font-size: 84px;
  }
  .left .left-container .front-fade h2 {
    font-size: 60px;
    margin-top: -25px;
  }

  /* About section */
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container {
    transform: translate(30%, 40%);
  }

  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h2 {
    font-size: 46px;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h3 {
    font-size: 35px;
  }

  /* Celebration section */
  .celeb .celeb-container .celeb-title h2 {
    font-size: 60px;
  }

  /* Joined section */
  .joined .joined-container .text-container h2 {
    font-size: 50px;
  }
  .joined .joined-container .text-container h3 {
    font-size: 50px;
  }

  /* Slider section */
  .swiper-slide {
    height: 25rem;
  }

  /* Social Media section */
  .sm .sm-container {
    padding: 40px;
    overflow: hidden;
  }

  /* Follow section */

  .disclaimer p {
    width: 58.375rem;
    line-height: 2;
  }
}

@media only screen and (max-width: 1000px) {
  /* About section */
  .about-container .about-right .right-container .profile-container img {
    width: 180px;
    border: 5px solid #e3d3d7;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h2 {
    font-size: 25px;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h3 {
    font-size: 25px;
  }

  /* Celebration section */

  .celeb .celeb-container {
    gap: 16px;
  }

  .celeb .celeb-container .celeb-para {
    width: 52.5rem;
    font-size: 18px;
    line-height: 30px;
  }

  .joined .joined-container .left-joined .social-celeb-dotted::before {
    right: 265px;
  }

  .joined .joined-container .left-joined .text-container {
    text-align: center;
  }
  .joined .joined-container .left-joined .text-container .corp-heading {
    margin-right: 0;
  }

  .joined .joined-container .left-joined .right-dotted::before {
    content: url("./assets/img/dotline\ \(cropped-2\).png");
    right: 0px;
    top: 21px;
  }

  .joined .joined-container .left-joined .left-dotted::before {
    left: -500px;
  }

  /* Footprints section */
  .footprints .footprints-container .footprints-title h2 {
    font-size: 60px;
  }
  .footprints .footprints-container .footprints-title h3 {
    font-size: 70px;

    margin-top: -46px;
  }

  /* Social Media section */
  .sm .sm-container {
    display: flex;
    flex-direction: column;
  }
  .sm .sm-container .grid-3 {
    text-align: center;
  }
  .grid-3 .grid-3-container img {
    width: 500px;
  }
  .grid-1 .grid-1-container .grid-body .grid-body-container .body-pics {
    place-items: center;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  }
  .grid-1
    .grid-1-container
    .grid-body
    .grid-body-container
    .body-pics
    .pic
    img {
    width: 17rem;
    height: 15rem;
  }

  /* Follow section */
  .disclaimer p {
    width: 50rem;
  }
}

@media only screen and (max-width: 900px) {
  /* About section */
  .about .about-container .about-left .left-container p {
    width: 27.813rem;
    line-height: 28px;
    font-size: 16px;
  }

  .about-container .about-right .right-container .profile-container {
    gap: 10px;
  }
  .about-container .about-right .right-container .profile-container img {
    width: 160px;
    border: 3px solid #e3d3d7;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h2 {
    font-size: 22px;
  }
  .about-container
    .about-right
    .right-container
    .profile-container
    .text-container
    h3 {
    font-size: 22px;
  }

  /* Slider section */
  .swiper-slide {
    height: 22rem;
  }

  /* Social Media section */
  .grid-1 .grid-1-container .grid-body .grid-body-container .body-pics {
    place-items: center;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .grid-1 .grid-1-container .grid-body .grid-body-container .body-pics .pic {
  }
  .grid-1
    .grid-1-container
    .grid-body
    .grid-body-container
    .body-pics
    .pic
    img {
    background-position: center bottom;
    height: 12.5rem; /* 200px */
    width: 14.625rem; /* 234px */
  }
}

@media only screen and (max-width: 802px) {
  /* About section */
  .about .about-container .about-left .left-container p {
    width: 19.813rem;
    line-height: 28px;
    font-size: 16px;
  }

  .left .left-container .right-fade.visible {
    width: 39.813rem;
  }

  .about .about-container .about-left {
    padding: 30px;
  }

  /* Celebration section */
  .celeb .celeb-container .celeb-para {
    width: 38.5rem;
  }

  /* Slider section */
  .expertise .expertise-container .expertise-title h2 {
    font-size: 40px;
  }
  .expertise .expertise-container .expertise-title h3 {
    font-size: 40px;
    margin-top: -28px;
  }
  .expertise .expertise-container .expertise-title {
    padding: 5px;
  }
  .swiper-slide {
    height: 18rem;
  }

  /* Follow section */
  .disclaimer p {
    width: 40rem;
    line-height: 1.6;
  }

  /* Popping Sidebar section */
  .list li a {
    font-size: 16px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 700px) {
  /* html,
  body {
    overflow-x: hidden;
  } */

  /* Navigation section */
  .navigation-container .logo .logo-container {
    text-align: center;
  }

  /* Popping Sidebar section */
  .nav {
    max-width: 100%;
    height: 64vh;
    overflow: hidden;
  }
  .nav-white {
    padding: 20px;
  }
  .nav-white img {
    display: none;
  }

  /* Head section */
  .rotation {
    width: 20.75rem;
  }

  .left .left-container .right-fade {
    width: 28.813rem;
  }
  .left .left-container .right-fade.visible {
    width: 28.813rem;
  }

  /* About section */
  .about .about-container .about-left .left-container p {
    width: 16.813rem;
    line-height: 22px;
    font-size: 14px;
  }

  /* Celebrations section */
  .celeb .celeb-container {
    gap: 10px;
    padding: 20px 0;
  }
  .celeb .celeb-container .celeb-title h2 {
    font-size: 48px;
  }
  .celeb .celeb-container .celeb-para {
    width: 24.5rem;
  }

  /* Joined section */
  .joined .joined-container .left-joined .right-dotted::before {
    right: 11px;
    top: 21px;
  }
  .joined .joined-container .right-joined .img-container::before {
    display: none;
  }
  .joined .joined-container .right-joined img {
    width: 100%;
  }
  /* Slider section */
  .expertise .expertise-container .expertise-title h2 {
    font-size: 30px;
  }
  .expertise .expertise-container .expertise-title h3 {
    font-size: 30px;
    margin-top: -20px;
  }
  .expertise .expertise-container .expertise-title {
    padding: 0px;
  }
  .swiper-slide {
    height: 14rem;
  }

  /* Footprints section */
  .footprints .footprints-container {
    padding: 40px;
  }
  .footprints .footprints-container .footprints-title h2 {
    font-size: 40px;
  }
  .footprints .footprints-container .footprints-title h3 {
    font-size: 50px;
    margin-top: -26px;
  }

  /* Media section */
  .media .media-container .media-title h2.visible {
    font-size: 36px;
  }

  /* Follow section */
  .disclaimer p {
    width: 30rem;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 650px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  /* About section */
  .about .about-container {
    flex-direction: column;
  }

  .about .about-container .about-right .right-container {
    padding: 30px 0;
  }

  .about .about-container .about-left .left-container p {
    /* width: 35.813rem; */
    width: 100%;
    line-height: 24px;
    font-size: 16px;
  }

  /* Joined section */
  .joined .joined-container {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 20px;
  }
  .joined-middle .joined-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .joined .joined-container .right-joined .img-container {
    border-radius: 20px;
  }
  .joined .joined-container .right-joined .img-container img {
    border-radius: 20px;
    border: 10px solid #d3b565;
    box-shadow: 4px 4px 59px -16px rgba(0, 0, 0, 0.71);
  }

  .joined .joined-container .text-container h2,
  .joined .joined-container .text-container h3 {
    font-size: 40px;
    margin: 0 auto;
  }

  .joined .joined-container .left-joined::before {
    display: none;
  }

  .joined .joined-container .left-joined .social-celeb-dotted::before,
  .joined .joined-container .left-joined .right-dotted::before,
  .joined .joined-container .left-joined .left-dotted::before {
    display: none;
  }

  /*  */
}

@media only screen and (max-width: 550px) {
  /* Follow section */
  .follow .follow-container {
    gap: 26px;
  }

  .follow .follow-container .follow-heading h2 {
    font-size: 45px;
    transform: translateX(-10%);
  }
  .address {
    transform: translateX(10%);
  }

  .personal-logos {
    justify-content: center;
  }
}

@media only screen and (max-width: 500px) {
  /* Sticky Navigation section */
  .navigation-container .icons .icons-container {
    gap: 2px;

    margin-left: 20px;
  }

  /* Head section */
  .left .left-container .right-fade {
    width: 90%;
  }

  .rotation {
    width: 16rem;
  }
  .left .left-container .front-fade h1 {
    font-size: 44px;
  }
  .left .left-container .front-fade h2 {
    font-size: 44px;
  }
  .left .left-container .right-fade.visible {
    width: 90%;
  }
  .left .left-container .right-fade p {
    line-height: 24px;
    font-size: 16px;
  }
  /* Slider section */
  .swiper-slide {
    height: 12rem;
  }

  /* Chat section */
  .chat .chat-container .chat-left {
    padding: 50px;
  }
  .chat .chat-container .chat-left h2 {
    font-size: 36px;
  }
  .chat .chat-container .chat-left h3 {
    font-size: 36px;
  }

  /* Social media section */
  .grid-3 .grid-3-container img {
    width: 400px;
  }

  /* Follow section */
  .follow .follow-container {
    gap: 16px;
  }

  .follow .follow-container .follow-heading h2 {
    font-size: 26px;
    transform: translateX(-5%);
  }
  .address {
    transform: translateX(5%);
  }

  .disclaimer p {
    width: 90%;
  }

  /* Footer section */
  .footer .footer-container {
    padding: 10px;
  }
  .footer .footer-container p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  /* Slider section */
  .swiper-slide {
    height: 10rem;
  }

  /* Social media section */
  .grid-3 .grid-3-container img {
    width: 300px;
  }
}

@media only screen and (max-width: 400px) {
  /* Sticky Navigation section*/
  .navigation-container {
    padding: 20px 10px;
  }
  .navigation-container .logo .logo-container img {
    height: 40px;
  }
  .navigation-container .menu .menu-container {
    padding: 10px;
  }

  /* Head section */
  .rotation {
    width: 12rem;
  }

  /* Celebration section */
  .celeb .celeb-container .celeb-para {
    width: 90%;
  }

  /* Follow section */
  .follow .follow-container {
    gap: 10px;
    flex-direction: column;
  }

  .address {
    transform: translateX(0);
  }
}

@media only screen and (max-width: 350px) {
  /* Popping Sidebar section */
  .nav {
    height: 54vh;
  }

  .list li {
    margin: 20px 0;
  }
  .list li a {
    font-size: 12px;
  }

  /* Navigation section */
  .navigation-container .logo .logo-container img {
    display: none;
  }

  /* About section */
  .about .about-container .about-left .left-container h2 {
    font-size: 36px;
  }

  /* Joined section */
  .celeb .celeb-container .celeb-title h2 {
    font-size: 32px;
  }

  .joined .joined-container .text-container h2,
  .joined .joined-container .text-container h3 {
    font-size: 30px;
  }

  /* Slider section */
  .expertise {
    min-height: 34.375rem; /* 550px */
  }
  .swiper-slide .swiper-text .swiper-title a {
    font-size: 10px;
  }

  /* Slider section */
  .swiper-slide {
    height: 8rem;
  }
}
