:root {
  --primary-font: "DM Sans", sans-serif;
  --dark: #222629;
  --whiteText: #fff;
  --bodyColor: #040404;
  --HerozoneBG: #0d0d0d;
  --text-color: #474a4f;
  --red: #CB152F;
  --light-text: #6a6e71;
  --text-light: #b7bbb9;
}

@media (min-width: 320px) {
  :root {
    --screen-x: 2vw;
    --border-size-large: 1px;
    --spacing-supper: 29.0625rem;
    --spacing-xl: 18.75rem;
    --spacing-xlx: 12.5rem;
    --spacing-lg: 5rem;
    --spacing-md: 2.5rem;
    --spacing-sm: 1rem;
    --spacing-sx: 1rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --screen-x: 4vw;
    --border-size-large: 2px;
    --spacing-supper: 29.0625rem;
    --spacing-xl: 18.75rem;
    --spacing-xlx: 12.5rem;
    --spacing-lg: 10rem;
    --spacing-md: 7.5rem;
    --spacing-sm: 5rem;
    --spacing-sx: 3rem;
  }
}
main {
  overflow-x: hidden;
}

.loader {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9;
  background: var(--bodyColor);
  font-size: 4vw;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader p {
  margin: 0;
  color: var(--text-color);
  animation: loaderAnimation 3s linear 1;
  background: var(--bodyColor);
  color: var(--red);
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.loader.loadingComplete {
  position: fixed;
  opacity: 0;
  visibility: hidden;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--red);
  height: 2px;
  width: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  animation: 4s ease 0s loadingLine 1;
}

.loader:before {
  left: 50%;
}

.loader:after {
  right: 50%;
}

@keyframes loadingLine {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
html {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: var(--primary-font);
  font-optical-sizing: auto;
  background: var(--bodyColor);
  color: var(--whiteText);
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

.container-fluid {
  padding: 0 1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cursorMain {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: invert(1) grayscale(1);
  -webkit-backdrop-filter: invert(1) grayscale(1);
  z-index: 99999;
}

/* ---------------------------------- */
.slide-vertical .char,
.slide-horizontal .char {
  overflow: hidden;
  color: transparent;
}
.slide-vertical .char:before, .slide-vertical .char:after,
.slide-horizontal .char:before,
.slide-horizontal .char:after {
  visibility: visible;
  color: var(--whiteText);
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition-delay: calc(0.2s + 0.02s * (var(--char-index)));
}
.slide-vertical .char:before,
.slide-horizontal .char:before {
  color: var(--red);
  transition-delay: calc(0.02s * (var(--char-index)));
  visibility: visible;
}
.slide-vertical:hover .char:before,
.slide-horizontal:hover .char:before {
  transition-delay: calc(0.2s + 0.02s * (var(--char-index)));
}
.slide-vertical:hover .char:after,
.slide-horizontal:hover .char:after {
  transition-delay: calc(0.02s * (var(--char-index)));
}

.slide-vertical .char:before {
  transform: translateY(-100%);
}
.slide-vertical:hover .char:before {
  transform: translateY(0%);
}
.slide-vertical:hover .char:after {
  transform: translateY(100%);
}

.slide-horizontal .char:before {
  transform: translateX(110%);
}
.slide-horizontal:hover .char:before {
  transform: translateX(0%);
}
.slide-horizontal:hover .char:after {
  transform: translateX(-110%);
}

header {
  padding: 5px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
header .container-fluid {
  padding: var(--spacing-sx);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-block a {
  display: block;
  padding: 15px;
}
header .logo-block img,
header .logo-block svg {
  height: 60px;
}
header .nav-container ul {
  display: flex;
  align-items: center;
  gap: var(--spacing-sx);
}
header .nav-container ul li a {
  color: var(--whiteText);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}
@media (max-width: 1199px) {
  header .nav-container ul {
    gap: 5vh;
  }
  header .nav-container ul li a {
    text-align: right;
    font-size: 14px;
  }
}
header span {
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.3, 1, 0.7, 1);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: saturate(120%);
  padding: 1rem;
  border-radius: 1rem;
}

.herozone {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.herozone .herozone-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}
.herozone .herozone-bg-container img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.herozone .herozone-text-container {
  position: relative;
  z-index: 1;
}
.herozone .herozone-text-container h1 {
  font-size: 6rem;
  line-height: 6.8rem;
  font-weight: 300;
}
.herozone .herozone-text-container h1 div {
  display: inline-block;
  overflow: hidden;
}
.herozone .herozone-text-container h1 div span {
  transition: all 0.8s ease-in-out;
  display: inline-block;
}
.herozone .herozone-text-container h1 div .theme-color {
  font-variation-settings: "wght" 500, "wdth" 85;
}
.herozone .herozone-text-container h1 div .theme-color:hover {
  font-variation-settings: "wght" 900, "wdth" 85;
}
@media (max-width: 1199px) {
  .herozone .herozone-text-container h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
}
.herozone .herozone-text-container h5 {
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 30px;
}
@keyframes breathe {
  0% {
    font-variation-settings: "wght" 100, "wdth" 85;
    font-size: 1.2rem;
  }
  60% {
    font-variation-settings: "wght" 700, "wdth" 100;
    font-size: 1rem;
  }
  100% {
    font-variation-settings: "wght" 100, "wdth" 85;
    font-size: 1.2rem;
  }
}

.theme-color {
  color: var(--red);
  font-weight: 500;
}

.loading {
  overflow: hidden;
}
.loading .herozone-text-container h1 .char {
  transform: translateY(100%);
}

.page-ready {
  background-color: #040404;
}
.page-ready #earthContainer {
  animation: 1s ease 0s loaderHerozoneEarth 1;
  animation-delay: 0.1s;
}
.page-ready .herozone-text-container h1 div .char {
  animation: 1.5s ease 0s loaderHerozone 1;
}
.page-ready .herozone-text-container h1 div .char:nth-child(1) {
  animation-delay: 0.0277777778s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(2) {
  animation-delay: 0.0555555556s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(3) {
  animation-delay: 0.0833333333s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(4) {
  animation-delay: 0.1111111111s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(5) {
  animation-delay: 0.1388888889s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(6) {
  animation-delay: 0.1666666667s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(7) {
  animation-delay: 0.1944444444s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(8) {
  animation-delay: 0.2222222222s;
}
.page-ready .herozone-text-container h1 div .char:nth-child(9) {
  animation-delay: 0.25s;
}

@keyframes loaderHerozone {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loaderHerozoneEarth {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
#scrollMore {
  position: fixed;
  bottom: 4rem;
  right: var(--spacing-sx);
  z-index: 1;
}
@media (max-width: 1199px) {
  #scrollMore {
    display: none;
  }
}

div#backToTop {
  cursor: pointer;
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.circular-text {
  pointer-events: none;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 20s linear infinite;
}

.social-block {
  position: fixed;
  left: var(--spacing-sm);
  bottom: var(--spacing-sm);
  z-index: 1;
}
.social-block a {
  color: var(--red);
  padding: 15px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.social-block a span {
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.3, 1, 0.7, 1);
}
.social-block a svg {
  width: 30px;
}
#earthContainer {
  position: fixed;
  width: 100%;
  height: 100%;
  touch-action: manipulation;
  left: 0;
  top: 0;
  background: transparent;
  opacity: 1;
}
#earthContainer:before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #040404;
  height: 40px;
  width: 140px;
  z-index: 9;
}

.grain-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #040404;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.1;
  pointer-events: none;
}

.grain-container:after {
  content: "";
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Dissolve_Noise_Texture.png");
  height: 300%;
  width: 300%;
  position: fixed;
  opacity: 0.3;
  animation: animateGrain 8s steps(10) infinite;
}

@keyframes animateGrain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, -20%);
  }
  30% {
    transform: translate(-5%, -10%);
  }
  40% {
    transform: translate(-15%, -20%);
  }
  50% {
    transform: translate(-5%, -10%);
  }
  60% {
    transform: translate(-15%, -20%);
  }
  70% {
    transform: translate(-5%, -10%);
  }
  80% {
    transform: translate(-15%, -20%);
  }
  90% {
    transform: translate(-5%, -10%);
  }
  100% {
    transform: translate(-15%, -20%);
  }
}
.intro-section {
  position: relative;
}

.intro-container {
  display: flex;
  justify-content: center;
}
.intro-container h2 {
  font-size: 2.4rem;
  line-height: 4rem;
  font-weight: 400;
  color: var(--whiteText);
}
@media (max-width: 767px) {
  .intro-container h2 br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .intro-container h2 {
    font-size: 1.5em;
    line-height: 1.5em;
  }
}

.fixed-bg-section {
  position: sticky;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
}
.fixed-bg-section img,
.fixed-bg-section video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-title {
  letter-spacing: 0.5rem;
  font-size: 16px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: var(--spacing-sx);
}

.work-section {
  padding: var(--spacing-lg) 0;
  position: relative;
}
@media (min-width: 1199px) {
  .work-section .main-container .title-block {
    padding-left: var(--spacing-lg);
  }
}
@media (max-width: 1199px) {
  .work-section .main-container .title-block {
    padding: 0 15px;
  }
}

.work-row {
  position: relative;
}
.work-row .work-mask-row {
  padding: var(--spacing-sx) 0;
  border-bottom: 1px solid rgba(184, 172, 153, 0.15);
  position: relative;
}
.work-row .work-mask-row .hover-shape-row {
  position: absolute;
  height: 0;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.work-row .work-mask-row .hover-shape-row:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(12.4px);
  backdrop-filter: blur(12.4px);
  filter: saturate(200%);
}
.work-row .work-mask-row .hide-mask-work {
  display: none;
}
.work-row .work-mask-row.mask-hover-content .show-mask-work {
  display: none;
}
.work-row .work-mask-row.mask-hover-content .hide-mask-work {
  display: block;
  color: var(--dark);
}
.work-row .work-mask-row.mask-hover-content .hover-shape-row {
  height: 100%;
}
.work-row .work-mask-row .work-content-block {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
@media (max-width: 1199px) {
  .work-row .work-mask-row .work-content-block {
    padding: 0 15px;
    gap: 15px;
  }
  .work-row .work-mask-row .work-content-block .work-years {
    min-width: 60px;
  }
  .work-row .work-mask-row .work-content-block h5 {
    font-size: 3vh;
    line-height: normal;
    font-weight: 600;
  }
}
@media (min-width: 1199px) {
  .work-row .work-mask-row .work-content-block {
    padding-left: var(--spacing-lg);
  }
}
.work-row .work-mask-row .work-content-block * {
  margin: 0;
}
@media (min-width: 1199px) {
  .work-row .work-mask-row .work-content-block h4 {
    font-size: 3rem;
    line-height: normal;
    font-weight: 400;
    color: var(--whiteText);
  }
  .work-row .work-mask-row .work-content-block .work-years {
    width: 20%;
  }
  .work-row .work-mask-row .work-content-block .work-text-content {
    width: 75%;
  }
  .work-row .work-mask-row .work-content-block .work-text-content .text-block {
    display: inline-block;
  }
  .work-row .work-mask-row .work-content-block .work-text-content h5 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--whiteText);
  }
  .work-row .work-mask-row .work-content-block .work-text-content h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
    color: var(--whiteText);
  }
}

.work-mask-row .hover-img {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 20vw;
  height: 20vw;
}

.work-mask-row .hover-img img {
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}

.work-mask-row:hover .hover-img img {
  opacity: 1;
}

.text-container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}

.discipline-text-container h2 {
  font-size: 5vw;
  text-align: center;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 6vw;
}
@media (max-width: 1199px) {
  .discipline-text-container h2 {
    font-size: 10vw;
    line-height: 13vw;
    letter-spacing: 0;
    margin: 2em 0;
  }
}

.contact-section {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.connection-block li {
  margin-bottom: 2vh;
}
.connection-block a {
  font-size: 4vw;
  line-height: normal;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .connection-block li {
    margin-bottom: 4vh;
  }
  .connection-block li a {
    font-size: 8vw;
  }
}

.accordions {
  margin-left: var(--spacing-lg);
  overflow: hidden;
}

.testimonial-row .swiper-slide {
  max-width: 780px;
}
.testimonial-row .swiper-slide .accordion {
  opacity: 0.5;
}
.testimonial-row .swiper-slide.swiper-slide-active {
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.testimonial-row .swiper-slide.swiper-slide-active .accordion {
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
}

.horizontal-scroll {
  display: flex;
  align-items: center;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-xl);
}

#team-members {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: nowrap;
  gap: 2rem;
  padding-right: var(--spacing-lg);
}
@media (max-width: 1199px) {
  #team-members {
    padding: 0 15px;
    flex-wrap: wrap;
  }
}
#team-members > div {
  min-width: 40%;
}
@media (max-width: 1199px) {
  #team-members > div {
    min-width: 100%;
  }
}
#team-members > div .team-qoute-container {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  filter: saturate(200%);
  border-right: 1px solid rgba(184, 172, 153, 0.15);
  padding: 20px 40px;
  box-shadow: 0 30px -30px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(184, 172, 153, 0.15);
}

.accordion {
  width: 100%;
  overflow: hidden;
  color: var(--whiteText);
  transition: all 0.2s ease-in-out;
}
.accordion .title {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: center;
}
.accordion h4 {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.accordion h4 span {
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
  font-style: italic;
  color: var(--whiteText);
  opacity: 0.8;
}

@media (max-width: 480px) {
  .accordion {
    padding: 15px 20px 8px;
    width: auto;
  }
}
.leftContentAvatar {
  margin-top: 15px;
}
.leftContentAvatar img {
  --testimonialHeight: 70px;
  height: var(--testimonialHeight);
  width: var(--testimonialHeight);
  border-radius: var(--testimonialHeight);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.qouteContainer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 0;
  text-align: left;
  padding: 0;
}
.qouteContainer .qoute-block {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--whiteText);
  opacity: 0.8;
}

#container {
  outline: 1px solid transparent;
  position: relative;
  height: 70dvh;
  max-height: 600px;
  width: 400px;
  transform-style: preserve-3d;
  background: url("../img/card-bg.png") no-repeat;
  transform: translateZ(0px);
  background-size: cover;
  background-color: #141414;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, box-shadow;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s linear;
}

#container:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(130deg, rgb(31, 31, 31) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0) 60%);
  transform: rotate(0deg) translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
  border-radius: 50px;
}

.figure {
  outline: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  height: 430px;
  background: url("../img/card-person.png") no-repeat;
  position: absolute;
  transform: translateZ(50px);
  bottom: 3%;
  left: 0%;
  background-size: cover;
}

.gsap {
  width: 100%;
  height: 70px;
  background: url("../img/card-name.png") no-repeat;
  position: relative;
  transform: translateZ(70px);
  top: 2rem;
  left: 0;
  margin-left: 0;
  background-position: center;
  background-size: contain;
}

.tagline {
  width: 100%;
  outline: 1px solid transparent;
  position: absolute;
  transform: translateZ(80px);
  bottom: -4%;
  left: 0;
  background: url("../img/card-detail.png") no-repeat;
  background-position: center;
  background-size: contain;
  height: 122px;
}

.footer-animation {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 3000px;
}

.unicorn-canvas-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  width: 100%;
}
.unicorn-canvas-block a {
  display: none !important;
}
.unicorn-canvas-block canvas {
  min-height: 100dvh;
  width: 100%;
}

.footer-animation svg {
  width: 350px;
}

.bottom-emoji-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#emoji {
  position: relative;
  width: 230px;
  height: 230px;
  transform: translate3d(0, 0, 0);
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.face {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 230px;
  height: 230px;
  background-color: #ffeb3b;
  border-radius: 100%;
  box-shadow: inset rgba(0, 0, 0, 0.4) 0 0 30px;
}

.shine {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 194px;
  height: 206px;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  border-radius: 100%;
  opacity: 0.8;
}

.eye {
  width: 24px;
  height: 38px;
  background-color: #151515;
  border-radius: 100%;
  box-shadow: inset rgba(0, 0, 0, 0.5) 0 6px 12px, rgba(255, 255, 255, 0.2) 0 2px 0 2px;
  animation: blink 5s infinite;
}
.eye.left {
  position: absolute;
  top: 0;
  right: 70px;
  bottom: 40px;
  left: 0;
  margin: auto;
}
.eye.right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 70px;
  margin: auto;
}

.mouth {
  position: absolute;
  top: 88px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  width: 94px;
  height: 48px;
  transform: translate3d(0, 0, 0);
}
.mouth:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 100%;
  box-shadow: rgba(255, 255, 255, 0.25) 0 3px 0;
  transform: scale(1);
}
.mouth:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 26px;
  left: 0;
  margin: auto;
  content: "";
  width: calc(100% - 20px);
  height: 100%;
  background-color: #ffeb3b;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.8) 0 4px 4px -4px;
  transform-origin: 50% 100%;
  transform: scale(1.6);
}

@keyframes blink {
  0%, 96% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.emoji-section {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .nav-container {
    display: none;
  }
  header .container-fluid {
    padding: 0;
  }
  #team-members {
    padding: 0;
  }
  #team-members > div .team-qoute-container {
    padding: 10px 0;
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 1px solid rgba(184, 172, 153, 0.15);
  }
  .leftContentAvatar {
    padding: 0 15px;
  }
  .accordion h4 {
    display: flex;
    flex-direction: column;
  }
  .qouteContainer .qoute-block {
    font-size: 16px;
    line-height: 1.6;
  }
}/*# sourceMappingURL=main.css.map */