.main {
  background-color: #191919;
  color: #979797;
}

.phone.main {
  padding: 2vh;
  padding-top: 100px;
  background-color: #191919;
  color: #979797;
}

.phone .content {
  width: 100%;
}

.phone .mainImage {
  width: 100%;
  position: relative;
}

.phone .next {
  text-align: right;
  display: inline-block;
  width: 50%;
}

.phone .pervious {
  display: inline-block;
  width: 50%;
}

.singleHeader {
  position: relative;
  padding-bottom: 0.5vh;
}

.web .singleHeader .image {
  display: inline-block;
  width: 40%;
}

.content {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.title {
  font-size: 3.5vh;
  color: #353535;
  font-weight: bold;
  padding-bottom: 20px;
}

.subtitle {
  color: #d60037;
  font-size: 2vh;
  line-height: 3vh;
}

.subtext {
  color: #353535;
  font-size: 1.5vh;
  padding-left: 0.5vh;
}

.subscription {
  text-align: justify;
  padding: 20px 0;
  font-size: 1.4vh;
}

.mainImage {
  width: 80%;
  float: right;
  position: relative;
}

.singleImages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  overflow: hidden;
}

.images {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.images33 {
  grid-column: span 1;
}

.images66 {
  grid-column: span 1;
  grid-row: span 2;
}

.singleConroller {
  width: 100%;
  cursor: pointer;
  padding: 3vh 0;
  display: inline-block;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.singleConroller .title {
  color: #353535;
  font-size: 1.5vh;
  padding: 0;
  padding-right: 5vh;
  padding-left: 5vh;
  margin-top: -5vh;
}

.singleConroller .sub {
  font-size: 1.2vh;
  padding-right: 5vh;
  padding-left: 5vh;
}

.pervious {
  float: left;
}

.next {
  float: right;
  text-align: right;
}

.singleConroller .arrow {
  border: solid #353535;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5vh;
}

.singleConroller .right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.singleConroller .left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.singleConroller .up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.singleConroller .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.fullscreen-media .media-item {
  position: relative;
  display: none;
  width: 100%;
  text-align: center;
}

.fullscreen-media .media-item.active {
  display: block;
}

.fullscreen-media {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}

.fullscreen-media img,
.fullscreen-media video {
  max-width: 100%;
  max-height: 100%;
}
.arrow-nav {
  position: absolute;
  top: 0;
  cursor: pointer;
  margin: 10px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  mix-blend-mode: exclusion;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  width: 30px;
}

.arrow-nav.left {
  background-image: url(../src/left.svg);
  left: 10px;
  bottom: 0;
}
.arrow-nav.right {
  background-image: url(../src/right.svg);
  bottom: 0;
  right: 10px;
}

.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

.fullscreen-modal.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-modal img,
.fullscreen-modal video {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.arrow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.arrow-nav.left {
  left: 20px;
}

.arrow-nav.right {
  right: 20px;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  overflow-x: auto;
}

.thumbnail {
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  width: 10vh;
  height: 10vh;
  padding: 2vh 1vh;
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
}

.thumbnail img {
  width: 100px;
  height: 60px;
  object-fit: cover;
}

.marquee-2 {
  overflow: hidden;
  width: 100%;
}

.marquee_track {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee_flex-2 {
  display: flex;
  flex-shrink: 0;
}

.marquee_item-2 {
  flex-shrink: 0;
  padding: 0 10px;
}

.marquee_img {
  width: 300px;
  height: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.socialmediaCont {
  top: 60% !important;
}

.project-wrapper {
  z-index: 2;
  cursor: crosshair;
  height: 70%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.prev-next-component {
  z-index: 800;
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  color: transparent;
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content;
  grid-auto-rows: auto;
  justify-content: end;
  align-items: stretch;
  justify-items: center;
  max-width: 35%;
  max-height: 30px;
  margin-right: -1rem;
  font-size: 0.75rem;
  font-weight: 400;
  position: absolute;
  top: auto;
  bottom: 1rem;
  left: auto;
  right: 3%;
}

.white-button {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff;
  border: 0.15px solid transparent;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  min-height: 30px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06);
  position: relative;
}

.white-button:hover {
  background-color: var(--light-grey);
  border: 0.15px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
}

.white-button.is-alternate {
  background-color: var(--white);
  color: #000;
}

.white-button.is-button-small {
  padding: 0.5rem 1.25rem;
}

.white-button.with-icon {
  grid-column-gap: 0.75rem;
  align-items: center;
  display: flex;
}

.white-button.pause.inverted {
  filter: invert();
}

.white-button.play {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.next-button {
  white-space: nowrap;
  min-width: 110px;
  min-height: 30px;
  position: relative;
}

.prev-next-item {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.white-button-copy:hover {
  background-color: var(--light-grey);
  border: 0.15px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
}

.white-button-copy.is-alternate {
  background-color: var(--white);
  color: #000;
}

.white-button-copy.is-button-small {
  padding: 0.5rem 1.25rem;
}

.white-button-copy.with-icon {
  grid-column-gap: 0.75rem;
  align-items: center;
  display: flex;
}

.white-button-copy.pause.inverted {
  filter: invert();
}

.white-button-copy.play {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
}

.project-rich-text.text-color-white.clickable-off {
  max-height: 30vh;
}
