html {
  scroll-behavior: smooth;
}

@-moz-document url-prefix() {
  /* CSS rules specific to Firefox */

  html {
    scroll-behavior: initial;
  }
}

/* SCROLLBAR */

::-webkit-scrollbar {
  background-color: transparent;
  border-radius: var(--progress-bar-border);
  width: 15px;
  background-blend-mode: overlay;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(175, 175, 175, 0.5);
  border-radius: var(--progress-bar-border);
  border: solid 5px black;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #d9d9d9;
  transition: 0.7s ease;
}

/* SCROLLBAR END */

/* Preloader */

:root {
  --preloader-size: 17rem;
  --progress-bar-ht: 0.3rem;
  --progress-bar-border: 0.7rem;
}

.preloader {
  width: 100vw;
  height: 100%;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
}

.preloader-content {
  margin-bottom: 4rem;
}

.preloader-ecell-logo {
  width: var(--preloader-size);
  height: var(--preloader-size);
  padding-bottom: 0.1rem;
}

.preloader-progress-bar {
  width: var(--preloader-size);
  background: rgba(236, 236, 238, 0.253);
  height: var(--progress-bar-ht);
  border-radius: var(--progress-bar-border);
  position: relative;
}

.preloader-progress-bar-done {
  top: 0%;
  left: 0%;
  width: 1px;
  height: var(--progress-bar-ht);
  border-radius: var(--progress-bar-border);
  position: absolute;
  background: rgb(255, 255, 255);
  transition: width 0.5s ease;
}

.preloader-fail {
  font-size: 1.2rem;
  line-height: 1;
  padding-top: 2rem;
}

.preloader-loaded {
  display: none;
}

.body-loading .actual-content {
  display: none;
}

/* Preloader End */

/* Navbar */

* {
  margin: 0px;
}

.background-complete {
  background-color: transparent;
  width: 100%;
  display: flex;
}

.navbar.inactive {
  background-color: #000000;
  box-shadow: 5px -1px 12px -5px grey;
}

.navrow.inactive {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.red {
  height: 300px;
  background-color: red;
}

.menu-open {
  overflow: hidden;
}

.rightlogo {
  position: fixed;
  z-index: 10000;
  padding: 10px 0px;
  right: 0px;
  margin-right: 0.985078125vw;
}

.leftlogo {
  padding-top: 5px;
  z-index: 10000;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}

.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line {
  stroke: white;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

#upabove {
  position: fixed;
  top: 0px;
  right: -100vw;
  height: 100%;
  width: 34.5vw;
  padding: 1vh 7.5vw 10vh 7.5vw;
  background-color: #000000;
  display: flex;
  justify-content: flex-start;
  transition-duration: 1000ms;
  overflow: hidden;
  z-index: 501;

}

.elements {
  padding-top: 10px;
  line-height: 2;
  letter-spacing: .2em;
  font-family: Jost, sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  gap: 16px;
}

.elements>div {
  padding-top: 32px;
}


#upabove.active {
  right: 0px;

  transition-duration: 1000ms;
}

.logoimage {
  height: 60px;
  width: 60px;
}

@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translatex(150%);
  }

  100% {
    opacity: 1;

  }
}

.contents.active {
  animation-delay: 0.2s;
  display: inline-block;
  animation-name: fadeinup;
  transition: 0.5s all ease-in;
  animation-duration: 1s;
}

.socials {
  cursor: auto;
  display: inline-block;
}

.icon {
  display: flex;
}

.icon.active {
  animation-delay: 0.2s;
  animation-duration: 1s;
  transition: 0.5s all ease-in;
  animation-name: fadeinup;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 500;
  position: fixed;
  height: auto;
  bottom: auto;
  top: 0%;
  left: 0%;
  right: 0%;
}

.navrow {
  width: 100%;
  max-width: 1170px;
  padding: 20px 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(175, 175, 175, .5);
}

.centerlink {
  display: flex;
  justify-content: space-evenly;
  font-family: Jost, sans-serif;
  font-size: 12.5px !important;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: .2em;
  gap: 40px;
}

.centerlink a {
  font-size: 12.5px;
  line-height: 1.5em;

}

.logo {
  padding: 0px 40px 0px 0px;
}

.logo:hover {
  opacity: .7;
  transition: opacity ease-in 0.15s all;
  cursor: pointer;
}

.logo1 {
  font-size: 16px;
}

.logo1:hover {
  opacity: .7;
  color: #afafaf;
  transition: opacity .5s all ease-in;
  cursor: pointer;
}

.contents:hover {
  opacity: .5;
  transition: .4s;
  cursor: pointer;
}

.centers:hover {
  opacity: .5;
  transition: .4s;
  cursor: pointer;
}

.rightlink {
  display: flex;
  gap: 20px;
}

/* End of Navbar */

/* Landing Site */

@keyframes zoom-in {
  0% {
    height: 84rem;
  }

  100% {
    height: 73.5rem;
  }
}

.forimg {
  overflow: hidden;
  height: 70rem;
  width: 100vw;
  background-color: transparent !important;
  position: relative;
  max-width: 100%;
}

.forimg-bg {
  animation: zoom-in 7s 1 alternate;
  opacity: 0.5;
  height: 73.5rem;
  width: 105vw;
  object-fit: cover;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
}

.forimg-content {
  margin-top: 12rem;
  height: 58rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow-x: visible;
}

.landing-top {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: Italiana, sans-serif;
  font-size: 3.9rem;
  line-height: 1;
}

.landing-bottom-text {
  color: #fff;
  letter-spacing: 0.002rem;
  margin-top: 3rem;
  margin-bottom: 3.2rem;
  font-family: Jost, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.5rem;
}

/*** code from about us copied ***/
.base-container {
  margin-top: 80px;
  margin-bottom: 80px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  overflow-x: visible;
}

.filled-button {
  color: black;
  padding: 1.3rem 3.3rem;
  font-family: inherit;
  background-color: white;
  border: 1px solid white;
  letter-spacing: 0.264rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.1rem;
}

.filled-button:hover {
  color: white;
  background-color: black;
}

/*** copied code end ***/

.forimg-button .filled-button:hover {
  background-color: #00000000;
  cursor: pointer;
}

/* End of Landing Site */

/* About Us */

.filled-button {
  color: black;
  padding: 1.3rem 3.3rem;
  font-family: inherit;
  background-color: white;
  border: 1px solid white;
  letter-spacing: 0.264rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.1rem;
}

.filled-button:hover {
  color: white;
  background-color: black;
  cursor: pointer;
}

.subtext {
  font-size: 1.6rem;
  color: #AFAFAF80;
}

body {
  background-color: black;
  color: white;
  font-family: Jost, sans-serif;
}

.base-container {
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
}

.about-us {
  display: flex;
  flex-direction: column;
  position: relative;
}

.about-us-big-text {
  font-family: Italiana, serif;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  margin-bottom: 0.83rem;
}

.about-us-poster {
  margin-top: 4rem;
}

.about-us-poster img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.epod .about-us-big-text {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.epod-poster {
  margin-top: 4rem;
}

.epod-poster img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.about-us .subtext {
  margin-bottom: 4rem;
  margin-top: 4rem;
  font-size: 1.4rem;
}

.about-us .filled-button {
  margin-right: auto;
}

.wework1_text3 {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: .2em;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 40px;
}

.wework1_a {
  margin-top: 20px;
  margin-right: 30px;
}

.wework1_a:hover {
  transition: 0.5s;
  opacity: 0.4;
}

/* End of About Us */

/* Metrics */

:root {
  font-size: 62.5%;
}

.card {
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20rem;
  padding: 3.5rem 4% 6.5rem;
  color: #F9F9FA;
  font-size: 1.6rem;
  line-height: 1.6rem;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  background-color: white;
  color: black;
}

.card-num {
  font-size: 1.2rem;
  letter-spacing: 0.24rem;
  line-height: 1.6rem;
}

.base-container {
  margin-top: 80px;
  margin-bottom: 80px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
}

.metrics-text {
  font-size: 1.2rem;
  letter-spacing: 0.24rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  text-align: right;
  white-space: pre-line;
  margin-bottom: 2rem;
}

.metrics-stat {
  color: white;
  font-family: Italiana, serif;
  letter-spacing: 0.18rem;
  font-size: 4.5rem;
  text-align: left;
}

.card:hover .metrics-stat {
  color: black;
}

#metrics {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


/* End of Metrics */

/* GALLERY */

.gallery {
  overflow: hidden;
  margin-bottom: 100px;
}

.gallery .base-container {
  margin-bottom: 0;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.gallery-grid-item {
  height: 18rem;
}

.gallery-text {
  color: white;
  font-family: Italiana, serif;
  font-size: 3.8rem;
  letter-spacing: 0rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding-bottom: 4rem;
}

.gallery-grid-item {
  overflow: hidden;
  position: relative;
}

.gallery-grid-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: transform 2s ease-out, opacity 1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.55;
}

.gallery-grid-content {
  bottom: 2rem;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.gallery-grid-text {
  color: white;
  margin-left: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.264rem;
  line-height: 2.1rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* END OF GALLERY */

/* FAQ */



.faq_section {
  color: white;
  display: flex;
  padding: 15px;
  max-width: 1170px;
  margin: auto;
  font-size: 12px;
  line-height: 16px;
  height: auto;
}

.column-l {
  margin-right: 60px;
}

hr {
  border: none;
  border-top: 1px solid rgba(142, 165, 182, .6);
  margin: 0;
}

.question {
  letter-spacing: .2em;
  padding: 36px 0px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top, #000000 50%, #141414 50%);
  background-size: 100% 200%;
  background-position: 0% -100%;
  transition: 0.5s;
}

.question:hover {
  background-position: 0% 0%;
  padding: 36px;
}

.q_lhs {
  margin-right: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

.q_rhs {
  position: relative;
  left: 7.5px;
}

.vertical {
  height: 15px;
  width: 1px;
  background-color: white;
  transition: 0.5s;
}

.vertical_active {
  rotate: 90deg;
}

.horizontal {
  height: 2px;
  width: 15px;
  position: relative;
  right: 7px;
  bottom: 8px;
  background-color: white;
}

.answer {
  background-color: #141414;
  font-size: 16px;
  line-height: 1.5em;
  max-height: 0;
  overflow: hidden;
  transition: 0.7s ease;
}

.answer_active {
  max-height: none;
}

.answer p {
  padding: 40px 36px;
}



/* FAQ */

/* ACHIEVEMENTS */

.achieve-header{
  text-align:center;
  margin-top: 150px;
}

.achieve-container{
  margin: auto;
  width: 80%;
  margin-top: 70px;
}

/* ACHIEVEMENTS END*/

/* ZIG ZAG */

.breaker {
  margin-top: 100px;
}

.card {
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20rem;
  padding: 3.5rem 4% 6.5rem;
  color: #F9F9FA;
  font-size: 1.6rem;
  line-height: 1.6rem;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  background-color: white;
  color: black;
}

.card-num {
  font-size: 1.2rem;
  letter-spacing: 0.24rem;
  line-height: 1.6rem;
}

.subtext {
  font-size: 1.6rem;
  color: #AFAFAF80;
}

.underline-button {
  color: white;
  border-bottom: 1px solid #AFAFAF80;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 0.4rem;
}

.underline-button:hover {
  cursor: pointer;
}

.base-container {
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
}


.events-subtitle-container {
  text-align: center;
  margin-top: 20px;
}

.events-subtitle {
  font-size: 25px; /* Decrease the font size */
  font-weight: 400;
  color: #333; /* Adjust the color as needed */
  line-height: 1.5;
  padding: 0 15px;
}




.zigzag-content {
  width: 80%;
  align-self: center;
}

.zigzag-text {
  font-family: Italiana, serif;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 3.5rem;
  letter-spacing: 0.14rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.zigzag-content .subtext {
  line-height: 2.4rem;
  padding-bottom: 2.5rem;
}

.card:hover .zigzag-content .subtext {
  color: black;
}

.zigzag-learn-more {
  text-align: right;
}

#zigzag {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 150px;
}

#zigzag .card {
  border: 1px solid #AFAFAF80;
  padding: 3.5rem 5% 4rem;
}

#zigzag .card-num {
  width: 80%;
  align-self: center;
}

#zigzag .card:hover {
  transform: scale3d(0.95, 0.95, 0.95);
}

#zigzag .card:hover .underline-button {
  color: black;
  border-bottom: 1px solid #101010;
}

/* ZIG ZAG END */



/* PHONE SECTION */

.twohead-container {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 50px;
}

.twohead-container-one {
  text-align: center;
  padding: 0px 15px;
  margin-top: 130px;
  margin-bottom: 5px;
}

.twohead-head {
  font-family: Italiana, serif;
  font-size: 80px;
  text-transform: uppercase;
  padding-bottom: 40px;
  line-height: 1;
}

.twohead-head-one {
  font-family: Italiana, serif;
  font-size: 80px;
  text-transform: uppercase;
  padding-bottom: 40px;
  line-height: 1;
}

.twohead-text {
  font-family: Jost;
  font-size: 15px;
  padding-bottom: 40px;
  letter-spacing: 0.18rem;
}

.twohead-text-one {
  font-family: Jost;
  font-size: 15px;
  padding-bottom: 40px;
  letter-spacing: 0.18rem;
}

.rhs-slash-text {
  color: white;
  letter-spacing: .2em;
  margin-bottom: 20px;
  font-size: 12px;
}

.rhs-heading {
  font-family: Italiana, sans-serif;
  color: white;
  font-size: 54px;
  padding: 10px 0px;
  letter-spacing: .04em;
  font-weight: 400;
  line-height: 1em;
}

.rhs-content {
  color: rgba(175, 175, 175, .5);
  margin: 10px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.get-it-button {
  font-family: Jost, sans-serif;
  margin-top: 40px;
  color: #0d0d0d;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 13px 33px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75em;
  letter-spacing: .22em;
  transition: 0.3s;
}

.get-it-button:hover {
  background-color: #0d0d0d;
  color: white;
  opacity: 1 !important;
}

.quality-services {
  color: white;
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
  display: flex;
  grid-column-gap: 180px;
  font-family: Jost, sans-serif;
}

.font {
  font-family: Jost, sans-serif !important;
  font-size: 15px !important;
}

.slide {
  display: flex;
  flex-direction: column;
  transition: 1s;
}

.rhs {
  display: grid;
  flex-direction: row;
  grid-row-gap: 200px;
  margin: 30px 0px 100px 0px;
}

.rhs-img {
  display: none;
}

.lhs-sticky {
  position: sticky;
  top: 20%;
  width: 475px;
}

.lhs-img {
  width: 475px;
  background: radial-gradient(circle at center, rgba(128, 128, 128, 1), rgba(13, 13, 13, 0) 60%);
  transition: opacity 0.4s ease-in;
}

.progress {
  margin-top: 50px;
  bottom: 0;
  width: 425px;
  display: flex;
  align-items: center;
}

.progress-bar {
  margin: 0px 20px;
  width: 100%;
  height: 3px;
  background-color: rgba(175, 175, 175, .5);
}

.progress-indicator {
  height: 100%;
  background-color: #ffffff;
  width: 50%;
}

.progress-text {
  color: #fff;
  cursor: pointer;
  letter-spacing: .22em;
  text-transform: uppercase;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75em;
  text-decoration: none;
  transition: opacity .3s;
  display: inline-block;
}

.progress-arrow {
  height: 12px;
  rotate: 90deg;
}


/* PHONE SECTION END */


/* HONEYCOMB */


.honeycomb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.honeycell-border {
  background-color: #AFAFAFAA;
  color: #F9F9FA;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  width: 20rem;
  height: 24rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6rem;
  transition: all 0.4s ease-in-out;
}

.honeycell {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: calc(100% - 1px);
  width: calc(100% - 1px);
  position: absolute;
  background-color: #000000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.honeycell-clipped {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 70%;
  width: 78%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
}

.honeycomb .card-num {
  align-self: center;
}

.honeycomb-content {
  text-align: center;
}

.honeycomb-text {
  margin-top: 15px;
  font-family: Italiana, serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.14rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.honeycomb-content .subtext {
  line-height: 2.4rem;
  padding-bottom: 2.5rem;
}

.honeycell-container:hover {
  z-index: 9;
}

.honeycell-container:hover .honeycell-border {
  transform: scale3d(1.1, 1.1, 1.1);
}

.honeycell-container:hover .honeycell {
  color: black;
  background-color: white;
  cursor: pointer;
}

.honeycell-container:hover .subtext {
  color: black;
}

/* HONEYCOMB END */


/* CONTACT US*/

.contact {
  padding: 130px 7px;
  padding-bottom: 30px;
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-column-gap: 80px;
}

.contacts {
  position: relative;
  display: flex;
}

.left {
  width: 40%;
}

.right {
  width: 53.5%;
  margin-top: 8px;
}

.divider-veritcal {
  background-color: white;
  position: absolute;
  width: 1px;
  height: 20px;
  top: 12px;
  right: 60px;
}

.contacts-info {
  width: calc(100% - 100px);
}

.head1 {
  color: #fff;
  letter-spacing: .04em;
  font-family: 'Italiana';
  font-size: 61px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 20px;
}

.text1 {
  font-family: Jost, sans-serif;
  color: rgba(175, 175, 175, .5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  padding-top: 0%;
}

.divider {
  width: 100%;
  margin: 30px 0px 20px 0px;
  height: 1px;
  background-color: rgba(175, 175, 175, .5);
}

p {
  margin: 10px 0px;
}

h6 {
  color: #fff;
  letter-spacing: .02em;
  margin: 10px 0px;
  font-family: 'Jost';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  display: inline-block;
}

a {
  color: #fff;
  letter-spacing: .22em;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.75em;
  text-decoration: none;
  transition: opacity .3s;
  display: inline-block;
  font-family: Jost, sans-serif;
}

a:hover {
  opacity: 0.8;
}

input {
  color: #fff;
  width: calc(100% - 37px);
  letter-spacing: .22em;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  font-family: 'Jost';
}

.c1 {
  color: rgba(175, 175, 175, .5);
  font-family: 'Jost';
  font-size: 16px;
  font-weight: 400;
}

.c1,
.c3 {
  padding: 8px 4px;
  display: flex;
  align-items: center;
}

.c1 div,
.c3 div {
  line-height: 1.75em;
  margin-left: 15px;
}

.fa-solid {
  color: white;
}

.email {
  margin-top: 10px;
}

.text2 {
  min-height: 181px;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 10px;
  margin-bottom: 23px;
  color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  letter-spacing: .22em;
  width: calc(100% - 37px);
  border: 1px solid #fff;
  font-family: 'Jost';
}

.button {
  min-height: 47px;
  width: 100%;
  transition-duration: 0.4s;
  color: #0d0d0d;
  border: 1px solid #fff;
  letter-spacing: .22em;
  padding: 13px 33px;
  font-family: 'Jost';
  cursor: pointer;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
}

.button-hover,
.button:hover {
  background-color: #0d0d0d;
  color: #fff;
  cursor: default;
}

::placeholder {
  color: #fff;
  opacity: 0.6;
  font-size: 12px;
}

.load_gif {
  width: 20px;
  display: none;
  margin: auto;
}

/* CONTACT US */

/* CONTACT LANDING SITE */


.lemons {
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.lemons-img {
  height: 100%;
  background-image: url("assets/lemonHand.jpg");
  background-position: center 20%;
  background-size: 110% auto;
  transition: background-size 5s ease;
}

.lemons-shrink {
  background-size: 100% auto;
}

.lemons-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(13, 13, 13, .5);
  height: 100%;
}

.contact-screen {
  background-color: rgba(13, 13, 13, .72);
}

.podcast-screen {
  background-color: rgba(13, 13, 13, .65);
}

.about-us-img-screen {
  background-color: rgba(0, 0, 0, 0.65);
}

.lemons-text {
  padding-top: 100px;
  width: 100%;
  text-align: center;

  font-family: Italiana, sans-serif;
  color: white;
  font-size: 70px;
  letter-spacing: .04em;
  margin: 0px 10px;
  font-weight: 400;
  line-height: 1em;
}

.about-us-img {
  background-image: url("assets/about-us.jpg");
  background-position: center 50%;
  background-size: 110% auto;
  animation: about-us-img-shrink 5s 1 forwards;
  
}


.contact-us-img {
  height: 100%;
  background-image: url("assets/contact-us.JPG");
  background-position: center 60%;
  background-size: 110% auto;
  animation: contact-us-img-shrink 5s 1 forwards;
}

.podcast-img {
  height: 100%;
  background-image: url("assets/podcast-img.jpg");
  background-position: center center;
  background-size: 110% auto;
  animation: podcast-img-shrink 5s 1 forwards;
}

/* CONTACT LANDING SITE */


/* FOOTER */

@media (max-width:992px) {
  .footer_links_arrow {
    display: none;
  }
}

.footer_links {
  width: 100%;
  max-width: 1170px;
  display: flex;
  justify-content: center;
}

.footer_links_arrow {
  position: absolute;
  right: 0px;
  top: -63px;
}

.footer_links_arrow_img {
  width: 30px;
}

.footer {

  background-color: black;
  margin: 0px 15px;
}

.footer_hr {
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  height: 1px;
  margin: 1px auto;
  max-width: 1170px;
}

.footer_container {
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  padding: 30px 0px;
}

.footer_logo {
  font-family: 'Italiana';
  font-size: 50px;
  color: #fff;
  text-decoration: none;
  color: white;
  text-align: center;
}

.footer_links {
  margin-bottom: 20px;
}

.footer_links_a {
  margin: 15px;
}

.footer_links_i {
  color: rgba(255, 255, 255, 1);
  transition: 0.4s;
}

.footer_links_i:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer_textcenter {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_madeby {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-family: Jost, sans-serif;
}

.footer_madeby_span {
  color: white;
  letter-spacing: .22em;
}

.footer_menu {
  text-align: center;
  margin: 30px 0px;
}

.footer_menu_a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em !important;
  font-family: Jost, sans-serif;
  color: rgba(255, 255, 255, 1);
  transition: color 0.5s;
  margin: 0 15px;
  line-height: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.footer_menu_a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer_copyright {
  font-size: 14px;
  text-align: center;
  opacity: 0.5;
  font-family: Jost, sans-serif;
}

/* FOOTER END */

/* NEWSLETTER */

.newsletter {
  max-width: 1170px;
  margin: 30px auto;
  margin-top: 70px;
  padding: 0px 15px;
  font-family: 'Jost';
  min-height: 100px;
  display: flex;
}

.newsletter_left {
  color: white;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  background-color: black;
}

.newsletter_left_up {
  font-family: Jost, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.22em;
}

.newsletter_left_down {
  font-family: 'Italiana';
  font-size: 70px;
}

.newsletter_right_container {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: 0px;
}

.newsletter_right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.newsletter_input {
  color: #fff;
  letter-spacing: .22em;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  padding: 14px 18px;
  font-size: 16px;
  font-family: 'Jost';
  width: 70%;
}

.newsletter_submit_button {
  transition: 0s;
}

.newsletter_submit_button {
  width: 30%;
  min-width: 100px;
  height: 53px;
  padding: 10px 20px;
  outline: none;
  border: 1px rgba(14, 14, 14, 1);
  color: #0d0d0d;
  border: 1px solid #fff;
  letter-spacing: .22em;
  font-family: 'Jost';
  cursor: pointer;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.4s;
  transition: background-color 0.4s;
}

.newsletter_submit_button:hover,
.newsletter_submit_sent {
  background-color: #0d0d0d;
  color: #fff;
  cursor: default;
}

.newsletter_input::placeholder {
  color: #fff;
  opacity: 0.6;
  font-size: 12px;
}

.newsletter_submit_gif {
  width: 20px;
  margin: auto;
}

/* NEWSLETTER END */

/* ABOUT US */

.wework0 {
  color: white;
  margin: auto;
  margin: 60px 0;
  padding: 0px 15px;
  font-family: Jost;
  margin-top: 120px;
}

.wework0_container {
  display: flex;
  margin: auto;
  max-width: 1170px;
}

.wework0_left {
  display: flex;
  align-items: center;
  width: 40%;
  margin: 30px 0;
  margin-right: 20px;
  font-size: 55px;
  font-family: Italiana, sans-serif;
  letter-spacing: 0.04em;
}

.wework0_right {
  flex: 1;
}

.wework0_right_head {
  letter-spacing: .2em;
  font-size: 14px;
  font-weight: 500;
  font-family: Jost, sans-serif;
  margin-bottom: 20px;
}

.wework0_right_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: rgba(175, 175, 175, 0.5);
  font-family: Jost, sans-serif;
}

.wework_divider {
  margin: auto;
  padding: 0px 15px;
  max-width: 1170px;
}

.wework_divider_hr {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.wework1 {
  color: white;
  padding: 0px 15px;
  margin-top: 80px;
  font-family: Jost;
}

.wework1_container {
  width: 100%;
  max-width: 1170px;
  margin: auto;
  display: grid;
  grid-template-columns: 30% 70%;
}

.wework1_left {
  display: flex;
  align-items: center;
  height: 0px;
  position: sticky;
  top: 50%;
  font-size: 60px;
  font-family: Italiana, sans-serif;
  /*margin: 105px 0px;*/
}

.wework1_right {
  max-width: 100%;
}

.wework1_row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 80px 0px;
  border-bottom: 1px solid rgba(175, 175, 175, 0.5);
}

.wework1_c1 {
  min-width: 405px;
  margin-right: 60px;
  border-right: 1px solid rgba(175, 175, 175, 0.5);
}

.wework1_head1 {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.wework1_text1 {
  font-size: 45px;
  letter-spacing: 0.04em;
  margin-top: 10px;
  text-transform: uppercase;
  padding-right: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
}

.wework1_text2 {
  font-size: 25px;
  line-height: 1.5em;
  font-weight: 400;
  color: rgba(175, 175, 175, 0.5);
  margin: 10px 10px 10px 0px;
}

.centerText {
  background-color: black;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
}

.centeredText {
  color: white;
  text-align: center;
  padding: 0px 15px;
  font-family: Italiana, sans-serif;
  font-size: 72px;
}

/* ABOUT US END */

/* CREW */

.ourteam-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  display: grid;
  margin: auto;
  width: calc(100% - 30px);
  max-width: 1170px;
  padding: 0px 15px;

}

.ourteam-cards {
  text-align: center;
  background-color: rgba(175, 175, 175, 0.12);
  border-radius: 2px;
  padding: 10px;
}

.ourteam-img {
  background-image: url("../assets/member1.webp");
  height: 350px;
  background-position: 50% 35%;
  background-size: cover;
}

.ourteam-content {
  padding: 20px 0;
}

.ourteam-description {
  color: rgba(175, 175, 175, .5);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: Jost, sans-serif;
}

.ourteam-heading {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
}

.ourteam-divider {
  width: 100%;
  margin-top: 5%;
  height: 1px;
  background-color: rgba(175, 175, 175, .5);
}

.ourteam-icons {
  display: inline-block;
}

.ourteam-icons i {
  border-radius: 150px;
  border: none;
  background-color: rgba(255, 255, 255, .1);
  font-size: 17px;
  height: 17px;
  width: 17px;
  padding: 9px;
  margin: 0px 7px;
  margin-top: 22px;
}

.ourteam-icons i:hover {
  background-color: rgba(255, 255, 255, .05);

}

.ourteam-crew-3 {
  background-size: 130%;
  background-position: 10% 75%;
}

.notable-q1-con,
.notable-q2-con,
.notable-q3-con {
  width: 100%;
  font-size: 14px;
  margin: 15px;
}

.notable-hr {
  border: none;
  border-top: 1px solid rgba(142, 165, 182, .6);
  margin: auto;
}

.notable-q1,
.notable-q2,
.notable-q3 {
  padding: 15px;
  display: flex;
  position: relative;
  font-family: Jost, sans-serif !important;
  letter-spacing: 0.18rem;
  background: linear-gradient(to top, #000000 50%, #141414 50%);
  background-size: 100% 200%;
  background-position: 0% -100%;
  transition: 0.5s;
  padding-left: 0px;
  
}

.notable-q1:hover,
.notable-q2:hover {
  background-position: 0% 0%;
  padding-left: 15px;
}

.notable-container {
  max-width: 780px;
  padding: 15px 0px;
  padding-right: 30px;
  margin: auto;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.notable-q3-con {
  min-width: calc(100% - 30px);
  grid-column: 1 / span 2;
}

.notable-q1-txt,
.notable-q2-txt,
.notable-q3-txt {
  
  max-height: 0;
  transition: 0.6s;
  overflow: hidden;
  padding-left: 10px;
  background-color: #141414;
}

.notable-q1-txt-active,
.notable-q2-txt-active,
.notable-q3-txt-active {
  max-height: 200px;
}

.notable-button-green,
.notable-button-white {
  height: 10px;
  width: 10px;
  transform: translateY(50%);
  position: absolute;
  right: 15px;
  transition: 0.5s;
  opacity: 1;
}

.notable-button-white-active {
  opacity: 0;
}

.notable-heading {
  margin: auto;
  
  text-align: center;
  margin-top: 30px;
  padding-bottom: 20px;
}

.notable-text-heading {
  text-align: center;
  padding-top: 20px;
  font-family: Jost, sans-serif !important;
  letter-spacing: 0.18rem;
  margin-bottom: 20px;
  font-weight: 490;
}

.notable-q1-txt ul {
  color: white;
  font-size: 20px;
  padding-right: 5px;
}

.notable-q2-txt ul {
  color: white;
  font-size: 20px;
  padding-right: 5px;
}

/* CREW END */

/* Media Queries */

/* PRELOADER */

@media only screen and (min-width: 2000px) {
  :root {
    --preloader-size: 10vw;
    --progress-bar-ht: 0.6vh;
    --progress-bar-border: 7.6vh;
  }

  .preloader-ecell-logo {
    padding-bottom: 0.23vh;
  }
}

/* PRELOADER END */

/* NAVBAR */

@media(max-width:992px) {

  .menu {
    display: flex;
  }

  .centerlink {
    display: none;
  }

  .rightlink {
    display: none;
  }

  .rightlogo {
    margin-top: 21px;
  }

  .elements {
    font-size: 16px;
    padding-left: 1.375rem;
  }
}

@media (min-width:992px) {
  #upabove {
    display: none;
  }
}

@media (max-width:854px) {
  #upabove {
    width: 37vw;
  }
}

@media (max-width:760px) {
  #upabove {
    width: 50vw;
  }
}

@media (max-width:720px) {
  #upabove {
    width: 48vw;
  }
}

@media (max-width:640px) {
  #upabove {
    width: 53vw;
  }
}

@media (max-width:580px) {
  #upabove {
    width: 59vw;
  }
}

@media (min-width:540px) and (max-width:560px) {
  #upabove {
    width: 62vw;
  }
}

@media (max-width: 540px) {


  #upabove {
    width: 100vw;
    padding: 1vh 0;
  }

  .elements {
    font-size: 15px;
    padding-left: 11.074vw;
  }
}

/* NAVBAR */

/* LANDING SITE */

@media only screen and (min-height: 700px) {
  @keyframes zoom-in {
    0% {
      height: 120vh;
    }

    100% {
      height: 105vh;
    }
  }

  .forimg {
    height: 100vh;
  }

  .forimg-bg {
    height: 105vh;
  }

  .forimg-content {
    height: 85vh;
  }
}

@media only screen and (min-height: 700px) and (max-width: 469px) {
  .forimg-content {
    height: 77vh;
  }
}

@media only screen and (min-width: 320px) {
  .landing-top {
    font-size: 4.5rem;
  }

  .landing-bottom-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media only screen and (min-width: 365px) {
  .landing-top {
    font-size: 5rem;
    letter-spacing: .2rem;
  }
}

@media only screen and (min-width: 768px) {
  .landing-top {
    font-size: 5.9rem;
    letter-spacing: .236rem;
  }

  .landing-bottom {
    text-align: right;
    width: 70%;
    align-self: flex-end;
  }

  .landing-bottom-text {
    text-align: right;
    margin-bottom: 2rem;
  }

}

@media only screen and (min-width: 900px) {
  .landing-top {
    font-size: 6rem;
    letter-spacing: .28rem;
    width: 85%;
  }
}

@media only screen and (min-width: 1000px) {
  .landing-bottom {
    width: 55%;
  }
}

@media only screen and (min-width: 1100px) {
  .landing-top {
    width: 80%;
    font-size: 7rem;
  }

  .landing-bottom {
    width: 42%;
  }
}


/* LANDING SITE */

/* ABOUT US */

@media only screen and (min-width: 320px) {
  .about-us-big-text {
    font-size: 3.5rem;
  }

  .about-us .subtext {
    font-size: 1.45rem;
  }

}

@media only screen and (min-width: 469px) {
  .about-us-big-text {
    font-size: 4.5rem;
  }

  .about-us .subtext {
    font-size: 1.6rem;
  }

  .about-us-poster {
    height: 42.7rem;
  }

  .about-us-poster img {
    object-position: 50% 57%;
  }

  .epod-poster {
    height: 42.7rem;
  }
}

@media only screen and (min-width: 768px) {
  .about-us-big-text {
    width: 98%;
    font-size: 5.6rem;
    z-index: 100;
  }

  .about-us .subtext {
    width: 45%;
  }

  .about-us-poster {
    position: absolute;
    left: 53%;
    bottom: 0;
    width: 47%;
    height: 80%;
  }

  .epod-poster {
    position: absolute;
    left: 53%;
    bottom: 0;
    width: 47%;
    height: 80%;
  }

  .epod-poster img {
    object-position: right;
  }
}

@media only screen and (min-width: 900px) {
  .about-us-big-text {
    width: 80%;
  }

  .about-us-poster {
    height: 94%;
  }

  .epod-poster {
    height: 94%;
  }
}

@media only screen and (min-width: 1100px) {
  .about-us-big-text {
    font-size: 6.1rem;
    letter-spacing: 0.244rem;
  }
}

/* ABOUT US END */


/* METRICS */

@media only screen and (min-width: 469px) {
  #metrics {
    display: grid;
    flex-direction: initial;
    grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  .metrics-text {
    white-space: normal;
  }
}

@media only screen and (min-width: 900px) {
  #metrics {
    display: flex;
    flex-direction: row;
    grid-template: initial;
    align-items: center;
  }

  #metrics .card {
    width: 25%;
  }

  #metrics .card:hover {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  .metrics-text {
    white-space: pre-line;
  }
}

/* METRICS END */

/* GALLERY */

@media only screen and (min-width: 469px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: 20rem repeat(2, 1fr);
    grid-auto-rows: 18rem;
  }

  .gallery-grid-img {
    object-position: 50% 10%;
  }

  .gallery-text {
    font-size: 4.5rem;
    letter-spacing: 0.18rem;
  }

  .gallery-grid-item {
    height: auto;
  }

  .gallery-grid .gallery-grid-item:nth-child(2) {
    grid-column: 2 / span 2;
  }

  .gallery-grid .gallery-grid-item:nth-child(4) {
    grid-row: 2 / span 2;
    grid-column: 2 / span 2;
  }

  .gallery-grid .gallery-grid-item:nth-child(7) {
    grid-column: 2 / span 2;
  }

  .gallery-grid .gallery-grid-item:nth-last-child(1) .gallery-grid-img {
    object-position: 50% 50%;
  }
}

@media only screen and (min-width: 768px) {
  .gallery-text {
    font-size: 5.6rem;
    letter-spacing: 0.244rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid .gallery-grid-item:nth-child(4) {
    grid-column-start: 1;
  }

  .gallery-grid .gallery-grid-item:nth-child(7) {
    grid-column-start: 3;
  }
}

@media only screen and (min-width: 990px) {
  .gallery-grid {
    gap: 5rem;
    margin-left: 3rem;
    margin-right: 3rem;
    grid-auto-rows: 28rem;
  }

  .gallery-text {
    font-size: 6.1rem;
  }

  .gallery-grid-img {
    opacity: 1;
  }

  .gallery-grid-item:hover .gallery-grid-img {
    opacity: 0.55;
    transform: scale3d(1.2, 1.2, 1) rotateZ(-4deg);
  }

  .gallery-grid-content {
    bottom: -2rem;
    opacity: 0;
  }

  .gallery-grid-item:hover .gallery-grid-content {
    bottom: 2rem;
    opacity: 1;
  }
}

@media only screen and (min-width: 1400px) {
  .gallery-grid {
    grid-auto-rows: 42rem;
  }
}

/* GALLERY END */

/* FAQ */

@media (max-width: 992px) {
  .column-l {
    margin-right: 0px;
  }

  .faq_section {
    display: block;
  }

  .question:hover {
    background-position: 0% -100%;
    padding: 36px 0px;
  }
}



/* FAQ END */

/* ZIG ZAG */

@media only screen and (min-width: 469px) {
  #zigzag .card {
    border: 1px solid #AFAFAF80;
  }

  #zigzag {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(2, 2fr);
  }
}

@media only screen and (min-width: 900px) {
  #zigzag {
    grid-template: repeat(2, 1fr) / repeat(4, 1fr);
    gap: 0;
  }

  #zigzag .card {
    height: 22rem;
  }

  #zigzag .card:nth-child(4n+1) {
    grid-column-start: 2;
  }

  #zigzag .card:nth-child(4n+2) {
    grid-column-start: 4;
  }

  #zigzag .card:nth-child(4n+3) {
    grid-column-start: 1;
  }

  #zigzag .card:nth-child(4n+0) {
    grid-column-start: 3;
  }
}


/* ZIG ZAG END */


/* PHONE SECTION */

@media (max-width: 480px) {
  .rhs-heading {
    font-size: 35px !important;
  }

  .rhs-content {
    font-size: 14px !important;
  }
}

@media (max-width: 360px) {
  .rhs-heading {
    font-size: 27px;
  }

  .rhs-heading {
    font-size: 28px !important;
  }
}

@media (max-width:992px) {
  .twohead-head {
    font-size: 64px;
  }

  .twohead-head-one {
    font-size: 64px;
  }
}

@media (max-width:768px) {
  .twohead-head {
    font-size: 52px;
  }

  .twohead-head-one {
    font-size: 52px;
  }
}

@media (max-width:480px) {
  .twohead-head {
    font-size: 45px;
  }

  .twohead-head-one {
    font-size: 45px;
  }

  .rhs-heading {
    font-size: 35px;
  }

  .rhs-content {
    font-size: 14px;
  }

  .get-it-button {
    padding: 10px 20px;
    font-size: 10px;
  }
}

@media (max-width: 1440px) {

  .lhs-sticky,
  .lhs-img {
    width: 450px;
  }
}

@media (max-width: 1280px) {
  .quality-services {
    grid-column-gap: 140px;
  }

  .lhs-sticky,
  .lhs-img {
    width: 425px;
  }

  .rhs-heading {
    font-size: 45px;
  }
}

@media (max-width: 992px) {
  .quality-services {
    margin-left: 0px;
    max-width: 700px;
  }

  .lhs {
    display: none;
  }

  .rhs {
    grid-row-gap: 80px;
  }

  .rhs-img {
    display: block;
  }

  .lhs-img {
    margin-top: 50px;
    width: 100%;
    max-width: 320px;
  }
}

/* PHONE SECTION END */

/* HONEYCOMB */

@media only screen and (min-width: 280px) {
  .honeycomb {
    display: grid;
    grid-template-columns: repeat(4, 6rem);
    grid-auto-rows: 15rem;
  }

  .honeycell-border {
    width: 12rem;
    height: 20rem;
  }

  .honeycomb-text {
    font-size: 1.3rem;
    line-height: 1;
  }

  .honeycomb-content .subtext {
    font-size: 1rem;
    line-height: 1.8;
  }

  .honeycomb .honeycell-container:nth-child(3n+1) {
    grid-column: 2 / 4;
  }

  .honeycomb .honeycell-container:nth-child(3n+2) {
    grid-column: 1 / 3;
  }

  .honeycomb .honeycell-container:nth-child(3n+3) {
    grid-column: 3 / 5;
  }
}

@media only screen and (min-width: 350px) {
  .honeycomb {
    grid-template-columns: repeat(4, 8rem);
    grid-auto-rows: 15.5rem;
  }

  .honeycell-border {
    width: 16rem;
    height: 21rem;
  }

  .honeycomb-text {
    font-size: 2rem;
  }

  .honeycomb-content .subtext {
    font-size: 1.2rem;
    line-height: 2.1rem;
  }

  .honeycomb .honeycell-container:nth-child(3n+1) {
    grid-column: 2 / 4;
  }

  .honeycomb .honeycell-container:nth-child(3n+2) {
    grid-column: 1 / 3;
  }

  .honeycomb .honeycell-container:nth-child(3n+3) {
    grid-column: 3 / 5;
  }
}

@media only screen and (min-width: 435px) {
  .honeycomb {
    display: grid;
    grid-template-columns: repeat(4, 10rem);
    grid-auto-rows: 18rem;
  }

  .honeycell-border {
    width: 20rem;
    height: 24rem;
  }

  .honeycomb-text {
    font-size: 2rem;
    line-height: 1.25;
  }

  .honeycomb-content .subtext {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 650px) {
  .honeycomb {
    grid-template-columns: repeat(6, 10rem);
  }

  .honeycomb .honeycell-container:nth-child(5n+1) {
    grid-column: 2 / 4;
  }

  .honeycomb .honeycell-container:nth-child(5n+2) {
    grid-column: 4 / 6;
  }

  .honeycomb .honeycell-container:nth-child(5n+3) {
    grid-column: 1 / 3;
  }

  .honeycomb .honeycell-container:nth-child(5n+4) {
    grid-column: 3 / 5;
  }

  .honeycomb .honeycell-container:nth-child(5n+5) {
    grid-column: 5 / 7;
  }
}

@media only screen and (min-width: 850px) {
  .honeycomb {
    grid-template-columns: repeat(8, 10rem);
  }

  .honeycomb .honeycell-container:nth-child(7n+1) {
    grid-column: 2 / 4;
  }

  .honeycomb .honeycell-container:nth-child(7n+2) {
    grid-column: 4 / 6;
  }

  .honeycomb .honeycell-container:nth-child(7n+3) {
    grid-column: 6 / 8;
  }

  .honeycomb .honeycell-container:nth-child(7n+4) {
    grid-column: 1 / 3;
  }

  .honeycomb .honeycell-container:nth-child(7n+5) {
    grid-column: 3 / 5;
  }

  .honeycomb .honeycell-container:nth-child(7n+6) {
    grid-column: 5 / 7;
  }

  .honeycomb .honeycell-container:nth-child(7n+7) {
    grid-column: 7 / 9;
  }
}

/* HONEYCOMB END */

/* CONTACT US */

@media (max-width: 1280px) {
  .contact {
    grid-column-gap: 60px;
    padding: 80px 15px;
  }

  .left {
    width: 45%;
  }

  .right {
    width: 49%;
  }

  .head1 {
    font-size: 56px;
  }
}

@media (max-width:992px) {
  .contact {
    flex-direction: column;
    grid-row-gap: 40px;
  }

  .left,
  .right {
    width: 100%;
  }

  .c1,
  .c3 {
    font-size: 16px;
    padding: 8px 4px;
  }

  .divider {
    margin-top: 30px;
  }

  .text1 {
    font-size: 16px;
    line-height: 1.5em;
  }

  .head1 {
    font-size: 56px;
  }

  .text2 {
    min-height: 190px;
  }

  .button {
    min-height: 57px;
  }
}

@media (max-width:768px) {
  .contact {
    padding: 60px 15px;
  }

  .head1 {
    font-size: 45px;
    width: 100%;
  }

  .divider-veritcal {
    right: 40px;
  }

  .contacts-info {
    width: calc(100% - 70px);
  }
}

/* CONTACT US END */

/* CONTACT LANDING SITE */

@media (max-width: 1440px) {
  .lemons-img {
    background-position: center 0%;
  }
}

@media (max-width: 1280px) {
  .lemons {
    height: 450px;
  }

  .lemons-text {
    font-size: 60px;
  }
}

@media (max-width:992px) {
  .lemons {
    height: 400px;
  }

  .lemons-text {
    padding-top: 80px;
  }
}

/*speacial media query case for background image*/

@media (max-width:878px) {
  .lemons-img {
    background-position: center 20%;
    background-size: auto 120%;
  }

  .lemons-shrink {
    background-size: auto 100%;
  }
}

@media (max-width:768px) {
  .lemons-text {
    font-size: 50px;
  }
}

@keyframes about-us-img-shrink {
  100% {
    background-size: 100% auto;
  }
}

@keyframes about-us-img-shrink-sm {
  100% {
    background-size: auto 175%;
  }
}

@media (max-width:878px) {
  .about-us-img {
    background-size: auto 195%;
    animation: about-us-img-shrink-sm 5s 1 forwards;
  }
}


@keyframes contact-us-img-shrink {
  100% {
    background-size: 100% auto;
  }
}

@keyframes contact-us-img-shrink-sm {
  100% {
    background-size: auto 100%;
  }
}


@media(max-width: 612px) {
  .contact-us-img {
    background-position: 20% 60%;
    background-size: auto 110%;
    animation: contact-us-img-shrink-sm 5s 1 forwards;
  }
}


@keyframes podcast-img-shrink {
  100% {
    background-size: 100% auto;
  }
}

@media (max-width:878px) {
  @keyframes podcast-img-shrink-sm {
    100% {
      background-size: 130%;
    }
  }

  .podcast-img {
    background-size: 150%;
    animation: podcast-img-shrink-sm 5s 1 forwards;
  }
}

@media(max-width: 535px) {
  @keyframes podcast-img-shrink-xs {
    100% {
      background-size: auto 150%;
    }
  }

  .podcast-img {
    background-size: auto 170%;
    animation: podcast-img-shrink-xs 5s 1 forwards;
  }
}

/* CONTACT LANDING SITE END */

/* NEWSLETTER */

@media (max-width:1024px) {
  .newsletter_left_down {
    font-size: 62px;
  }
}

@media (max-width:758px) {
  .newsletter {
    flex-direction: column;
  }

  .newsletter_left,
  .newsletter_right {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    align-items: flex-start;
  }

  .newsletter_input_container {
    width: 100%;
    justify-content: flex-start;
    display: flex;
    width: 100%;
  }

  .footer_menu_a {
    letter-spacing: .22em;
    font-size: 12px;
  }
}

@media (max-width:400px) {
  .newsletter_left_down {
    font-size: 44px;
  }
}

/* NEWSLETTER END */

/* ABOUT US */


@media (max-width: 1140px) {
  .wework0_left {
    font-size: 50px;
  }
}

@media (max-width: 990px) {
  .wework0_left {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .wework0_container {
    flex-direction: column;
  }

  .wework0_left {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    font-size: 60px;
    justify-content: left;
  }

  .wework0_right_head {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .wework0_left {
    font-size: 50px;
  }
}

@media (max-width: 1440px) {
  .wework1_left {
    font-size: 60px;
  }
}

@media (max-width: 1144px) {
  .wework1_text1 {
    font-size: 40px;
  }

  .wework1_c1 {
    min-width: 350px;
  }

}

@media (max-width: 990px) {
  .wework1_left {
    position: relative;
    justify-content: initial;
    padding: 40px 0px;
    margin: 0px;
  }

  .wework1_container {
    display: flex;
    flex-direction: column;
  }

  .wework1_row {
    width: 100%;
    display: grid;
    grid-template-columns: 33% 67%;
    padding: 60px 0px;
  }

  .wework1_c1 {
    min-width: 0px;
    padding-right: 60px;
    margin-right: 0px;
  }

  .wework1_c2 {
    margin-left: 50px;
  }

  .wework1_head1 {
    margin-bottom: 10px;
  }

  .wework1_text1 {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .wework1_c1 {
    border: none;
  }

  .wework1_row {
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
  }

  .wework1_c2 {
    margin-left: 00px;
  }
}

@media (max-width: 480px) {
  .wework1_text1 {
    font-size: 32px;
  }
}

@media (max-width: 1280px) {
  .centerText {
    height: 180px;
  }
}

@media (max-width: 990px) {
  .centeredText {
    font-size: 64px;
  }

  .centerText {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .wework0 {
    margin-top: 40px;
  }

  .centeredText {
    font-size: 50px;
  }

  .centerText {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .centeredText {
    font-size: 35px;
  }
}

/* ABOUT US END */

/* CREW */

@media (max-width:1280px) {
  .ourteam-img {
    height: 300px;
  }

  .ourteam-heading {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .ourteam-cards {
    display: flex;
    max-height: 300px;
    position: relative;
  }

  .ourteam-img {
    height: 300px;
    width: 70%;
    background-position: 50% 25%;
  }

  .ourteam-container {
    display: flex;
    flex-direction: column;
  }

  .ourteam-img {
    opacity: 0.7;
  }

  .ourteam-content {
    width: 35%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .ourteam-no-cards {
    display: none;
  }

  .ourteam-crew-1 {
    background-size: 90%;
    background-position: center 25%;
  }

  .ourteam-crew-2 {
    background-size: 90%;
    background-position: center 0%;
  }

  .ourteam-crew-3 {
    background-size: 95%;
    background-position: center 55%;
  }

  .ourteam-crew-4 {
    background-size: 80%;
    background-position: center 30%;
  }
}


@media (max-width: 768px) {
  .ourteam-cards {
    flex-direction: column;
    max-height: 1000px;
  }

  .ourteam-img {
    width: 100%;
    height: 350px;
    margin-bottom: 10px;
  }

  .ourteam-content {
    width: 100%;
    display: initial;
    margin: auto;
    padding: 20px 0px;
  }
}

@media (max-width: 480px) {
  .ourteam-img {
    height: 260px;
  }

  .ourteam-crew-1 {
    background-size: 105%;
  }

  .ourteam-crew-2 {
    background-size: 110%;
    background-position: center 0%;
  }

  .ourteam-crew-3 {
    background-size: 95%;
    background-position: center 60%;
  }

  .ourteam-crew-4 {
    background-size: cover;
  }
}

@media (max-width:768px) {
  .notable-container {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
}

@media (max-width:992px) {

  .notable-q1:hover,
  .notable-q2:hover {
    background-position: 0% -100%;
    padding-left: 0;
  }

  .notable-q1,
  .notable-q2 {
    font-size: 12px;
  }
}

/* CREW END */

/* End of Media Queries */

/* POP UP */

.popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  text-align: center;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.popup-x {
  float: right;
  font-size: 20px;
  padding: 1px 6px;
  background-color: #212121;
  z-index: 1001;
  position: relative;
  left: -12px;
  bottom: -10px;
}

.popup-x:hover {
  cursor: pointer;
}

.popup-cards {
  text-align: center;
  background-color: #212121;
  padding: 28px 28px;
  margin-top: 9px;
  margin-right: 11px;
  width: 320px;
}

.popup-img {
  height: 450px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .3s ease-in-out;
}

.popup-content {
  padding-top: 20px;
  transition: opacity .3s ease-in-out;
}

.popup-content-opac {
  transition: 0.3s;
}

.popup-description {
  color: rgba(175, 175, 175, .8);
  letter-spacing: 0;
  font-size: 14px;
  font-family: Jost, sans-serif;
  text-align: justify;
}

.popup-heading {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
}

.popup-divider {
  width: 100%;
  margin-top: 5%;
  height: 1px;
  background-color: rgba(175, 175, 175, .5);
}

.popup-icons {
  display: inline-block;
  border-radius: 150px;
  border: none;
  background-color: rgba(255, 255, 255, .1);
  font-size: 17px;
  height: 17px;
  width: 17px;
  padding: 9px;
  margin: 0px 7px;
  margin-top: 22px;
}

.popup-icons i:hover {
  background-color: rgba(255, 255, 255, .05);
}

.popup-link {
  font-size: 22px;
}

.popup-link i {
  border-radius: 150px;
  border: none;
  background-color: rgba(255, 255, 255, .1);
  font-size: 14.5px;
  height: 17px;
  width: 17px;
  padding: 9px;
  padding: 11px 12px 8px 9px;
  margin: 0px 7px;
  margin-top: 20px;
}

.popup-link-insta i {
  padding: 11px 9px 8px 12px;
  font-size: 16px;
}

.popup-screen {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999;
  position: fixed;
}

/* POP UP END */

/* CREW */

.crew-old .ourteam-container {
  margin: 50px auto;
}

/* CREW END */

/* MAGAZINE */

.magazine .answer {
  display: flex;
  justify-content: center;
  background-color: transparent;
}

.magazine img {
  height: 100%;
  width: 100%;
}

/* MAGAZINE END */

/* SPONSORS */

.heading-group{
  margin-left: auto;
  margin-right: auto;
}

/* Default Layout (Desktop) */
.sponsors-container {
  max-width: 84vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 10px;
  min-width: 320px;
  margin-top: 100px;
  margin-bottom: 50px;
}

/* Grid Columns */
.col {
  display: flex;
  flex-direction: column;
  overflow: visible;
  justify-content: flex-start;
  row-gap: 14px;
  flex: 1 1 30%;
  box-sizing: border-box;
}


.sponsors-thanks {
  color: rgba(175, 175, 175, .5);
  margin: 10px 0px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.sponsors-thanks p {
  max-width: 800px;
}

.col{
  display: flex;
  flex-direction: column;
  overflow:visible;
  justify-content: flex-start;
  row-gap: 14px;
  flex: 1 1 30%;
  box-sizing: border-box;
}

.col > *{
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c9c9c9da;
}


.centered-last {
  width: 0%;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}

.small{
  height: 450px;
}

.large{
  height: 520px;
}

/*
@media screen and (max-width: 768px) { 
  .sponsors-container {
      flex-direction: column;
      align-items: center;
  }
  .col {
      flex: 1 1 100%;
      max-width: 100%;
  }
  .small, .large {
      height: auto;
      max-width: 80%;
  }
  .centered-last {
      margin-top: 30px;
  }
}
*/


.sponsors-container img{
  max-height: 90%;
  max-width: 90%;
}

.italiana-regular {
  font-family: "Italiana";
  font-style: normal;
}


.heading{
  font-size: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 400px;
  padding-top: 100px;
  background-image: url("./assets/7.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}




.ck:hover{
  background: linear-gradient(165deg, rgba(255,166,10,1) 35%, rgba(227,227,227,1) 100%);
}

.delcaper:hover{
  background: linear-gradient(340deg, rgb(0, 143, 255) 35%, rgba(227,227,227,1) 100%);
}

.poorvika:hover{
  background: linear-gradient(15deg, #f05a22 45%, rgba(227,227,227,1) 100%);
}

.zapp:hover{
  background: linear-gradient(175deg, rgb(253, 203, 10) 35%, rgba(227,227,227,1) 100%);
}

.goldcup:hover{
  background: linear-gradient(165deg, rgb(74, 205, 100) 45%, rgba(227,227,227,1) 100%);
}

.ps4:hover{
  background: linear-gradient(175deg,rgb(79, 103, 210) 55%, rgba(227,227,227,1) 100%);
}

.wayspire:hover{
  background: linear-gradient(185deg,rgb(25, 70, 211) 25%, rgba(227,227,227,1) 90%);
}

.sangeethas:hover{
  background: linear-gradient(165deg,rgb(248, 177, 23) 55%, rgba(227,227,227,1) 100%);
}

.thuglaq:hover{
  background: linear-gradient(175deg,rgb(13, 118, 176) 35%,rgb(100, 161, 194) 65%, rgba(227,227,227,1) 100%);
}

.velfire:hover{
  background: linear-gradient(165deg,rgb(128, 83, 179) 55%, rgba(227,227,227,1) 95%);
}

.geeksforgeeks:hover {
  background: linear-gradient(210deg, #62bb62 45%, rgba(227,227,227,1) 100%);
}

.seven77:hover {
  background: linear-gradient(175deg, #FFD700 45%, rgba(227,227,227,1) 100%);
}

.s:hover{
  background: linear-gradient(175deg, #ff7878 45%, rgba(227,227,227,1) 100%);
}

.t:hover{
  background: linear-gradient(210deg, #ffb700 45%, rgba(227,227,227,1) 100%);
}

.z:hover{
  background: linear-gradient(340deg, #aaff00 45%, rgba(227,227,227,1) 100%);
}

.alineaventures:hover {
  background: linear-gradient(355deg, #bc2141 45%, rgba(227,227,227,1) 100%);
}

.smartinvestment:hover {
  background: linear-gradient(355deg, #00C5D6 45%, rgba(227,227,227,1) 100%);
}

.grabon:hover {
  background: linear-gradient(210deg, #FF4500 45%, rgba(227,227,227,1) 100%);
}

.greentrends:hover {
  background: linear-gradient(15deg, #008000 45%, rgba(227,227,227,1) 100%);
}

.fusionsystems:hover {
  background: linear-gradient(185deg, #FFD700 45%, rgba(227,227,227,1) 100%);
}

.zeezoo:hover {
  background: linear-gradient(195deg, #6495ED 45%, rgba(227,227,227,1) 100%);
}

.timepvt:hover {
  background: linear-gradient(355deg, #d73333 45%, rgba(227,227,227,1) 100%);
}

.visiondefence:hover {
  background: linear-gradient(355deg, #5F9EA0 30%, rgba(227,227,227,1) 100%);
}

.senseimage:hover {
  background: linear-gradient(175deg, #32CD32 45%, rgba(227,227,227,1) 100%);
}

.naachnuts:hover {
  background: linear-gradient(210deg, #2AEF88 45%, rgba(227,227,227,1) 100%);
}

.barbequenation:hover {
  background: linear-gradient(160deg, #0073FF 45%, rgba(227,227,227,1) 100%);
}

.confirmtkt:hover {
  background: linear-gradient(340deg, #94c68f 45%, rgba(227,227,227,1) 100%);
}

.tn45bistro:hover {
  background: linear-gradient(355deg, #ff9595 45%, rgba(227,227,227,1) 100%);
}

.mycaptain:hover {
  background: linear-gradient(15deg, #1E90FF 45%, rgba(227,227,227,1) 100%);
}

.timesofindia:hover {
  background: linear-gradient(340deg, #e1d896 45%, rgba(227,227,227,1) 100%);
}

.bizztor:hover {
  background: linear-gradient(340deg, #f77935 45%, rgba(227,227,227,1) 100%);
}

.rotary:hover {
  background: linear-gradient(15deg, #FFD700 15%, rgba(227,227,227,1) 100%);
}

.satyavani:hover {
  background: linear-gradient(15deg, #02f6b9 45%, rgba(227,227,227,1) 100%);
}

.tigerdigital:hover {
  background: linear-gradient(180deg, #8A2BE2 45%, rgba(227,227,227,1) 100%);
}

.lyflike:hover {
  background: linear-gradient(165deg, #00CED1 45%, rgba(227,227,227,1) 100%);
}

.gp-dryfruits:hover {
  background: linear-gradient(210deg, #dbb671 45%, rgba(227,227,227,1) 100%);
}

.chocolate-room:hover {
  background: linear-gradient(340deg, #5f2e31 55%, rgba(227,227,227,1) 100%);
}


.contact-support{
  font-size: 55px;
  color: black;
  font-weight: 500;
}

.contact-support:hover{
  background-color: white;
  text-decoration: underline;
  cursor:pointer;
}

.brochure-heading{
  font-size: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 170px;
}

.brochure-container{
  max-height: 1200px;
  max-width: 800px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 150px;
}


@media (max-width: 992px) { 
  .col {
      justify-content: flex-start;
  }
  
  .small{
      height: 130px;
  }
  
  .large{
      height: 150px;
  }

  .heading{
      font-size: 60px;
      height: 350px;
  }

  .contact-support{
      font-size: 18px;
      text-decoration: underline;
      background-color: white;
  }
/*
  .ck{
      background: rgba(255,166,10,1);
  }
  
  .delcaper{
      background:  rgb(0, 143, 255);
  }
  
  .poorvika{
      background: rgb(240,90,34);
  }
  
  .zapp{
      background: rgb(253, 203, 10);
  }
  
  .goldcup{
      background: rgb(74, 205, 100);
  }
  
  .ps4{
      background: rgb(79, 103, 210);
  }
  
  .wayspire{
      background:rgb(2, 26, 125);
  }
  
  .sangeethas{
      background: rgb(248, 177, 23);
  }
  
  .thuglaq{
      background:rgb(13, 118, 176);
  }
  
  .velfire{
      background:rgb(128, 83, 179);
  }
*/
  /* colors */

  
.ck{
  background: linear-gradient(165deg, rgba(255,166,10,1) 35%, rgba(227,227,227,1) 100%);
}

.delcaper{
  background: linear-gradient(340deg, rgb(0, 143, 255) 35%, rgba(227,227,227,1) 100%);
}

.poorvika{
  background: linear-gradient(15deg, #f05a22 45%, rgba(227,227,227,1) 100%);
}

.zapp{
  background: linear-gradient(175deg, rgb(253, 203, 10) 35%, rgba(227,227,227,1) 100%);
}

.goldcup{
  background: linear-gradient(165deg, rgb(74, 205, 100) 45%, rgba(227,227,227,1) 100%);
}

.ps4{
  background: linear-gradient(175deg,rgb(79, 103, 210) 55%, rgba(227,227,227,1) 100%);
}

.wayspire{
  background: linear-gradient(185deg,rgb(25, 70, 211) 25%, rgba(227,227,227,1) 90%);
}

.sangeethas:hover{
  background: linear-gradient(165deg,rgb(248, 177, 23) 55%, rgba(227,227,227,1) 100%);
}

.thuglaq:hover{
  background: linear-gradient(175deg,rgb(13, 118, 176) 35%,rgb(100, 161, 194) 65%, rgba(227,227,227,1) 100%);
}

.velfire{
  background: linear-gradient(165deg,rgb(128, 83, 179) 55%, rgba(227,227,227,1) 95%);
}

.geeksforgeeks {
  background: linear-gradient(210deg, #62bb62 45%, rgba(227,227,227,1) 100%);
}

.seven77 {
  background: linear-gradient(175deg, #FFD700 45%, rgba(227,227,227,1) 100%);
}

.s{
  background: linear-gradient(175deg, #ff7878 45%, rgba(227,227,227,1) 100%);
}

.t{
  background: linear-gradient(210deg, #ffb700 45%, rgba(227,227,227,1) 100%);
}

.z{
  background: linear-gradient(340deg, #aaff00 45%, rgba(227,227,227,1) 100%);
}

.alineaventures {
  background: linear-gradient(355deg, #bc2141 45%, rgba(227,227,227,1) 100%);
}

.thuglaq{
  background: linear-gradient(175deg,rgb(13, 118, 176) 35%,rgb(100, 161, 194) 65%, rgba(227,227,227,1) 100%);
}

.smartinvestment {
  background: linear-gradient(355deg, #00C5D6 45%, rgba(227,227,227,1) 100%);
}

.grabon {
  background: linear-gradient(210deg, #FF4500 45%, rgba(227,227,227,1) 100%);
}

.greentrends {
  background: linear-gradient(15deg, #008000 45%, rgba(227,227,227,1) 100%);
}

.fusionsystems {
  background: linear-gradient(185deg, #FFD700 45%, rgba(227,227,227,1) 100%);
}

.zeezoo {
  background: linear-gradient(195deg, #6495ED 45%, rgba(227,227,227,1) 100%);
}

.timepvt {
  background: linear-gradient(355deg, #d73333 45%, rgba(227,227,227,1) 100%);
}

.visiondefence {
  background: linear-gradient(355deg, #5F9EA0 30%, rgba(227,227,227,1) 100%);
}

.senseimage {
  background: linear-gradient(175deg, #32CD32 45%, rgba(227,227,227,1) 100%);
}

.naachnuts {
  background: linear-gradient(210deg, #2AEF88 45%, rgba(227,227,227,1) 100%);
}

.barbequenation {
  background: linear-gradient(160deg, #0073FF 45%, rgba(227,227,227,1) 100%);
}

.confirmtkt {
  background: linear-gradient(340deg, #94c68f 45%, rgba(227,227,227,1) 100%);
}

.tn45bistro {
  background: linear-gradient(355deg, #ff9595 45%, rgba(227,227,227,1) 100%);
}

.mycaptain {
  background: linear-gradient(15deg, #1E90FF 45%, rgba(227,227,227,1) 100%);
}

.timesofindia {
  background: linear-gradient(340deg, #e1d896 45%, rgba(227,227,227,1) 100%);
}

.bizztor {
  background: linear-gradient(340deg, #f77935 45%, rgba(227,227,227,1) 100%);
}

.rotary {
  background: linear-gradient(15deg, #FFD700 15%, rgba(227,227,227,1) 100%);
}

.satyavani {
  background: linear-gradient(15deg, #02f6b9 45%, rgba(227,227,227,1) 100%);
}

.tigerdigital {
  background: linear-gradient(180deg, #8A2BE2 45%, rgba(227,227,227,1) 100%);
}

.lyflike {
  background: linear-gradient(165deg, #00CED1 45%, rgba(227,227,227,1) 100%);
}

.gp-dryfruits {
  background: linear-gradient(210deg, #dbb671 45%, rgba(227,227,227,1) 100%);
}

.chocolate-room {
  background: linear-gradient(340deg, #5f2e31 55%, rgba(227,227,227,1) 100%);
}

  .sponsors-container{
    max-height: 400vh;
    max-width: 80vw;
  }

  .brochure-heading{
    font-size: 70px;
  }

  .brochure-container{
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 10%;
    margin-right: 10%;
  }


}

@media (max-width: 600px) { 
/* wuba laba dub dub */

  .col {
      justify-content: flex-start;
  }
  
  .small{
      height: 130px;
  }
  
  .large{
      height: 150px;
  }

  .heading{
      font-size: 60px;
      height: 200px;
  }

  .contact-support{
      font-size: 18px;
      text-decoration: underline;
      background-color: white;
  }

/*
  .ck{
      background: rgba(255,166,10,1);
  }
  
  .delcaper{
      background:  rgb(0, 143, 255);
  }
  
  .poorvika{
      background: rgb(240,90,34);
  }
  
  .zapp{
      background: rgb(253, 203, 10);
  }
  
  .goldcup{
      background: rgb(74, 205, 100);
  }
  
  .ps4{
      background: rgb(79, 103, 210);
  }
  
  .wayspire{
      background:rgb(2, 26, 125);
  }
  
  .sangeethas{
      background: rgb(248, 177, 23);
  }
  
  .thuglaq{
      background:rgb(13, 118, 176);
  }
  
  .velfire{
      background:rgb(128, 83, 179);
  }*/

  .sponsors-container{
    max-height: 400vh;
    max-width: 90vw;
  }

  .brochure-heading{
    font-size: 70px;
  }

  .brochure-container{
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 10%;
    margin-right: 10%;
  }
}
/*
@media (max-width: 600px) {
  #brochure {
    max-width: 300px;
  }

  .brochure-heading{
    font-size: 50px;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .sponsors-thanks {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 400px) {
  #brochure {
    max-width: 200px;
  }


  .brochure-heading{
    font-size: 30px;
  }
}
*/
/* SPONSORS END */

/* e summ 25 */

.menu-container {
  position: relative;
  width: 800px;
  height: 800px;
}

.circle-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 522px;
  height: 522px;
  left: 100px;
  top: 100px;
  border: 2px solid rgba(139, 74, 218, 0.2);
  border-radius: 50%;
  background: rgba(83, 65, 201, 0.2);
  box-shadow: 0 0 15px rgba(56, 60, 74, 0.1);
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.8em;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(224, 253, 3, 0.8);
  font-family: amsterdam ;
  
}

.event-item {
  position: absolute;
  
  width: 170px;
  height: 170px;
  font-size: 1.4em;
  background: linear-gradient(115deg, #2f05d4, #000420);
  border-radius: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 0 15px rgba(121, 6, 252, 0.3);
  border: 2px solid rgba(145, 3, 130, 0.2);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.event-item:hover {
  background: linear-gradient(35deg, #dcc634, #f2b947);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(233, 243, 53, 0.6);
  

}

/* POPUP STYLES */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  background: #1a035d;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(202, 107, 228, 0.3);
  width: 40vw;
  height: 50vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  flex-grow: 1;
}

.popup a {
  display: block;
  color: cyan;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.popup a:hover {
  color: white;
}

.close-btn {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  align-self: center;
  
}               .event-item:nth-child(1) { top: 20%; left: 50%; transform: translate(-50%, -50%); } /* Top Center */
.event-item:nth-child(2) { top: 35%; left: 78%; transform: translate(-50%, -50%); } /* Upper Right */
.event-item:nth-child(3) { top: 65%; left: 78%; transform: translate(-50%, -50%); } /* Lower Right */
.event-item:nth-child(4) { top: 80%; left: 50%; transform: translate(-50%, -50%); } /* Bottom Center */
.event-item:nth-child(5) { top: 65%; left: 22%; transform: translate(-50%, -50%); } /* Lower Left */
.event-item:nth-child(6) { top: 35%; left: 22%; transform: translate(-50%, -50%); } /* Upper Left */

.close-btn:hover {
  background: darkred;
}

.e-summ{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

@media (max-width:1200px) {
  .popup{
    width: 80vw;
    font-size: 2px;
    height: fit-content;
  }
}

@media (max-width:700px) {
  .popup{
    font-size: 5px;
    height: fit-content;
    margin: auto;
    width: 50%;
  }

    
/*
  .menu-container {
    position: relative;
    width: 100vw;
    height: 700px;
  }
  
  
.circle-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px; /* 522 
  left: 100px;
  top: 100px;
  border: 2px solid rgba(139, 74, 218, 0.2);
  border-radius: 50%;
  background: rgba(83, 65, 201, 0.2);
  box-shadow: 0 0 15px rgba(56, 60, 74, 0.1);
}

.center-text {
  font-size: 2.8em;
}

.event-item {
  position: absolute;
  width: 100px;
  height: 100px;
  font-size: 1em;
}
*/

}

.e-summ-rec{
  width: 200vw;
  height: 60px;
  font-size: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #000000;
  border-top: white;
  border-bottom:white ;
  margin-left: 0;
  opacity: 1;
  width: max-content;
  margin-left: -200px;
}

@media (max-width:700px) {
  .e-summ-rec{
    font-size: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 50px;
    margin-left: 0;
    opacity: 1;
    width: max-content;
    margin-left: -100px;
  }
  
}



/*
@keyframes moveLeftToRight {
  from {
    transform: translateX(90%);
  }
  to {
    transform: translateX(-100%);
  } 
}
*/


/* e summ 25 events */


/* Styling for event poster container */
.event-poster-container {
  display: flex;
  justify-content: center;  /* Centers the content */
  align-items: center;
  width: 100%; 
  flex-direction: column;
  overflow: hidden; /* Prevents unwanted cropping */
}

/* Ensures event poster scales properly */
.event-poster {
  width: 100%;  /* Full width */
  max-width: 600px; /* Prevents it from being too large */
  height: auto; /* Maintains aspect ratio */
  display: block;
  margin: 0 auto; /* Centers the image */
}

/* Styling for event buttons */
.event-poster-container > a {
  background-color: white;
  color: black;
  border-radius: 10px;
  border: #000000 solid 1px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* Styling for event questions */
.event > .question {
  font-size: 15px;
}

/* Custom Font */
@font-face {
  font-family: 'amsterdam';
  src: url("./assets/amsterdam/Amsterdam.ttf");
}

/* e-Summit Logo */
.e-summ-logo {
  height: 180px;
  width: 550px;
  margin-top: 80px;
}

/* Mobile & Small Screens */
@media only screen and (max-width: 700px) {
  .event-poster {
    width: 90%; /* Makes sure it scales down */
    max-width: 100%; /* Prevents horizontal overflow */
  }
}

@media only screen and (max-width: 600px) {
  .e-summ-logo {
    height: 100px;
    width: 300px;
  }

  .events-subtitle {
    font-size: 20px;
  }
}

/* Medium Screens */
@media only screen and (max-width: 1000px) {
  .event-poster {
    width: 90%;
    height: auto; /* Maintains aspect ratio */
  }
}

/* e summ 25 events end*/
