@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

@font-face {
  font-family: "longline";
  src: url("https://assets.codepen.io/756881/Longline+Quart+FREE.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --width: 33%;
  --gap: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;

  font-family: "Nunito", sans-serif;
  background-color: #ffffff;
  color: white;
  overflow-y: auto;
}

h1 {
  font-family: "longline";
}

button {
  padding: 5px 20px;
  font-size: 16px;
}

.slider-section {
  height: 100vh;
  bottom: 0;
  position: relative;
  width: 100%;
}

h1 {
  font-size: 10vw;
}

.wheel {
  position: absolute;
  top: 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300vw;
  height: 300vw;
  max-width: 2000px;
  max-height: 2000px;
  left: 50%;
  transform: translateX(-50%);
}

.texty {
  position: absolute;
  /* top: -555px;
  left: -219px; */
  /* transform: ; */
}

.wheel__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: transparent;
  padding: 2px;
  height: 70vh;
  border-radius: 22px;
}

.wheel__card img {
  width: 100%;
  pointer-events: none;
  z-index: 999;
  cursor: pointer;
  /* position: absolute; */
  will-change: transform;
  height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.header img {
  width: 40vw;
  height: 40vw;
  max-height: 350px;
  max-width: 350px;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.quote-prev {
  width: 31px;
  height: 31px;
  border: 1px solid var(--black);
  background-color: transparent;
  background-image: url(../image/6390455ccedc3f561b2a51a6_left.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  border-radius: 30px;
  padding: 0
}

.backmain small {
  font-size: 1.1em
}

.quote-prev:hover {
  border-color: var(--medium-slate-blue)
}

.quote-next {
  width: 31px;
  height: 31px;
  border: 1px solid var(--black);
  background-color: transparent;
  background-image: url(../image/6390455e538296711408f105_right.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  border-radius: 30px;
  flex: none;
  padding: 0
}

.quote-next:hover {
  border-color: var(--medium-slate-blue)
}

.quote-arrows {
  width: 300px;
  height: 28px;
  grid-column-gap: 16px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 33px;
  left: 0%;
  right: 0%;
  align-items: center;
}

/* SCROLL DOWN */
.scroll-down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  overflow: visible;
}

.scroll-down .arrow {
  position: relative;
  top: 0px;
  margin: 0 auto;
  width: 15px;
  height: 15px;
  filter: invert(1);
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj4KPHBhdGggZmlsbD0iYmxhY2siIGQ9Ik00ODMuMiwxOTIuMmMtMjAuNS0yMC41LTUzLjUtMjAuOC03My43LTAuNkwyNTcsMzQ0LjFMMTA0LjUsMTkxLjZjLTIwLjItMjAuMi01My4yLTE5LjktNzMuNywwLjYKCWMtMjAuNSwyMC41LTIwLjgsNTMuNS0wLjYsNzMuN2wxOTAsMTkwYzEwLjEsMTAuMSwyMy40LDE1LjEsMzYuOCwxNWMxMy4zLDAuMSwyNi43LTQuOSwzNi44LTE1bDE5MC0xOTAKCUM1MDMuOSwyNDUuNyw1MDMuNywyMTIuNyw0ODMuMiwxOTIuMnoiLz4KPC9zdmc+);
  background-size: contain;
}

.logos {
  top: -2px;
}

.log {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuToggle a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.menuToggle a:hover {
  color: tomato;
}

.menuToggle input {
  display: block;
  width: 40px;
  height: 24px;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 999;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

.menuToggle span {
  position: relative;
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 4px;
  position: relative;
  background: #244e9a;
  border-radius: 3px;
  z-index: 99;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menuToggle span:first-child {
  transform-origin: 0% 0%;
}

.menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffffff;
}

.menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

.menuToggle input:checked~.menuItem {
  transform: none;
}

.menuItem {
  position: absolute;
  width: 300px;
  padding: 28px;
  padding-top: 125px;
  background: #121212;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  height: 100vh;
}

.menuItem li {
  padding: 10px 0;
  font-size: 22px;
}

.menu--left {
  position: relative;
  width: 29%;
  text-align: left;
}

.menu--left .menuToggle {
  left: 0;
  position: relative;
}

.menu--left .menuToggle input {
  left: 10px;
}

.menu--left .menuToggle span {
  left: 16px;
}

.menu--left .menuItem {
  left: 36px;
  margin: -100px 0 0 -50px;
  transform: translate(-100%, 0);
  z-index: 9;
  background: #4c4c4c;
}

.menu--right .menuToggle {
  position: fixed;
  right: 0;
  top: unset;
  z-index: 9;
}

.menu--right .menuToggle input {
  right: 23px;
}

.menu--right .menuToggle span {
  right: 23px;
}

.menu--right .menuItem {
  right: 0;
  margin: -100px 0 0 0;
  transform: translate(100%, 0);
}

.menu--right .menuItem li a:hover {
  padding-left: 5px;
}

.menu--bottom--right .menuToggle {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.menu--bottom--right .menuToggle input {
  right: 50px;
  bottom: 50px;
  top: auto;
}

.menu--bottom--right .menuToggle input:checked~.menuItem {
  transform: scale(1);
}

.menu--bottom--right .menuToggle input:checked~.menuItem li:nth-child(1) {
  -webkit-animation: text-slide-in 0.2s;
  -moz-animation: text-slide-in 0.2s;
  animation: text-slide-in 0.2s;
}

.menu--bottom--right .menuToggle input:checked~.menuItem li:nth-child(2) {
  -webkit-animation: text-slide-in 0.3s;
  -moz-animation: text-slide-in 0.3s;
  animation: text-slide-in 0.3s;
}

.menu--bottom--right .menuToggle input:checked~.menuItem li:nth-child(3) {
  -webkit-animation: text-slide-in 0.4s;
  -moz-animation: text-slide-in 0.4s;
  animation: text-slide-in 0.4s;
}

.menu--bottom--right .menuToggle input:checked~.menuItem li:nth-child(4) {
  -webkit-animation: text-slide-in 0.5s;
  -moz-animation: text-slide-in 0.5s;
  animation: text-slide-in 0.5s;
}

.menu--bottom--right .menuToggle input:checked~.menuItem li:nth-child(5) {
  -webkit-animation: text-slide-in 0.6s;
  -moz-animation: text-slide-in 0.6s;
  animation: text-slide-in 0.6s;
}

.menu--bottom--right .menuToggle span {
  right: 50px;
  bottom: 50px;
  top: auto;
}

.menu--bottom--right .menuItem {
  bottom: 0;
  right: 0;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 125px;
  transform-origin: bottom right;
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}

.menu--bottom--right .menuItem li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.menu--bottom--right .menuItem li a:hover {
  padding-left: 5px;
}

.menu--bottom--left .menuToggle {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.menu--bottom--left .menuToggle input {
  left: 50px;
  bottom: 50px;
  top: auto;
}

.menu--bottom--left .menuToggle input:checked~.menuItem {
  transform: scale(1);
}

.menu--bottom--left .menuToggle input:checked~.menuItem li:nth-child(1) {
  -webkit-animation: text-slide-in 0.2s;
  -moz-animation: text-slide-in 0.2s;
  animation: text-slide-in 0.2s;
}

.menu--bottom--left .menuToggle input:checked~.menuItem li:nth-child(2) {
  -webkit-animation: text-slide-in 0.3s;
  -moz-animation: text-slide-in 0.3s;
  animation: text-slide-in 0.3s;
}

.menu--bottom--left .menuToggle input:checked~.menuItem li:nth-child(3) {
  -webkit-animation: text-slide-in 0.4s;
  -moz-animation: text-slide-in 0.4s;
  animation: text-slide-in 0.4s;
}

.menu--bottom--left .menuToggle input:checked~.menuItem li:nth-child(4) {
  -webkit-animation: text-slide-in 0.5s;
  -moz-animation: text-slide-in 0.5s;
  animation: text-slide-in 0.5s;
}

.menu--bottom--left .menuToggle input:checked~.menuItem li:nth-child(5) {
  -webkit-animation: text-slide-in 0.6s;
  -moz-animation: text-slide-in 0.6s;
  animation: text-slide-in 0.6s;
}

.menu--bottom--left .menuToggle span {
  left: 50px;
  bottom: 50px;
  top: auto;
}

.menu--bottom--left .menuItem {
  bottom: 0;
  left: 0;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 125px;
  transform-origin: bottom left;
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}

.menu--bottom--left .menuItem li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.menu--bottom--left .menuItem li a:hover {
  padding-left: 5px;
}

.star {
  padding: 0;
  border: 0;
  background: transparent;
}

@keyframes text-slide-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.desktop {
  display: block;
  background-image: url(../image/banner1.png);
  background-size: contain;
}

.mobile {
  display: none
}

@media screen and (max-width:767px) {
  .menu {
    position: absolute;
    bottom: 12%;
  }

  #Message.w-node-_0af765ca-7b53-bc75-1d36-4e40ff8ce51a-f3361a65,
  #Message.w-node-_902f7880-fee4-bd44-0471-2c1d0d94451b-818513cf {
    grid-area: span 1/span 1/span 1/span 1
  }

  .logos {
    position: absolute;
    bottom: 0;
  }

  .section {
    padding-top: 56px;
  }

  .quote-arrows {
    bottom: 4px;
  }

  .quote-arrows {
    width: 300px;
    height: 28px;
    grid-column-gap: 16px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: absolute;
    top: 50%;
    bottom: 33px;
    left: 0%;
    right: -84%;
    align-items: center;
    transform: rotate(90deg);
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block
  }
}

.main {
  height: 100%;
  /* overflow: hidden; */
}

.main1 {
  height: 100%;
  overflow: hidden;
}


/* ------------------------mobile------------------------------------------------------- */
.slide-sec {
  height: 100%;
  bottom: 0;
  position: fixed;
  width: 100%;
  overflow: hidden;
}

#change {
  position: fixed;
  top: 58%;
  left: 139%;
  width: 320px;
  height: 320px;
  margin-top: -106px;
  margin-left: -106px;
  cursor: pointer;
}

#change .holder {
  position: absolute;
  z-index: 99999;
  top: 40%;
  left: 36%;
  width: 40px;
  margin-left: 0;
  background: #ff000000;
}

#change a {
  position: absolute;
  top: -706px;
  left: 0;
  height: 200px;
  width: 170px;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
}


.holder img {
  border-radius: 10px 10px 0 0;
  height: 253px;
  object-fit: cover;
  transition: height .2s, width .2s;
  z-index: 9;
  position: absolute;
  background: #d1daea;
  left: 0;
}

.holder .text3 {
  border-radius: 0 0 10px 10px;
  height: 46px;
  object-fit: cover;
  transition: height .2s, width .2s;
  color: rgb(35, 35, 35);
  z-index: 9;
  position: absolute;
  width: 100%;
  margin-bottom: 0;
  border: 0;
  left: 0;
  top: 122%;
  font-size: 14px;
  background: #254f9b1c;
  box-shadow: 1px 8px 3px #0000003b;
  padding-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-item-inner {
  position: relative;
  height: 100%;
}

.quote-item-inner a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: rgb(42, 42, 42);
}

.quote-item-inner a:hover {
  color: #fbca01
}

.quote-logo-pill {
  width: 100%;
  height: 50px;
  background-color: var(--white);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -57px;
  left: auto;
  right: 0;
  overflow: hidden;
  z-index: 999;
}

.homep .quote-logo-pill {
  width: 100%;
  height: 50px;
  background-color: var(--white);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -36%;
  left: auto;
  right: 0;
  overflow: hidden;
  z-index: 999;
}

.title {
  margin-bottom: 0px;
}

.line {
  position: relative;
  overflow: hidden;
}

.line h2 {
  font-size: 1.2rem;
  text-align: center;
  padding: 6px;
}

.title1 {
  transform: rotate(-90deg);
  position: absolute;
  left: -52%;
  top: 50%;
  width: 114%;
}

.text5 {
  /* -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
  letter-spacing: 0.1em;
  width: 100%;
}

.text5 span {
  /* display: inline-block; */
}

.title1 h2 {
  font-size: 1.4rem;
}

.imga img {
  width: 100%;
  height: 158px;
  position: unset;
  margin-bottom: 16px;
  border: 1px solid grey;
  padding: 7px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.page-container {
  visibility: hidden;
}

.page {
  cursor: pointer;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  position: fixed;
}

.imga {
  position: relative;
}

.svga {
  position: absolute;
  top: 3%;
  right: 1%;
  color: #ffffff;
  display: none;
  background: red;
  border-radius: 6px;
  padding: 4px 7px;
  line-height: 0;
}

.full-screen .svga {
  display: block;
}

.top::after {
  content: '';
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #ff5de7;
  top: 4px;
  left: 0;
  transform: none;
}

.fsm {
  margin: 7px;
  height: 178px;
  flex: 1;
  display: block;
  color: #f5f5f5;
  font-size: 1.5rem;
  border-radius: 10px;
  transition: 1s;
  cursor: pointer;
}

.fsm .fa {
  transition: 1s;
  color: #f5f5f5;
  font-size: 2.5vw;
}

.fsm .fa:before {
  color: #f5f5f5;
}

.fsm .modal-content {
  height: 0;
  width: 0;
  margin: 0;
}

.fsm h1.modal-content {
  opacity: 0;
  transition: 1s;
}

.fsm.apple {}

.fsm.pied {
  background: linear-gradient(135deg, #6ecdc7 0%, #c7e4ec 100%);
}

.fsm.codepen {
  background: linear-gradient(135deg, #778899 0%, #DCDCDC 100%);
}

.fsm.google {
  background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
}

.fsm.growing h1.modal-content {
  height: auto;
  margin: 0;
  opacity: 0;
  transition-delay: 0.5s;
}

.fsm.full-screen {
  height: 100vh;
  z-index: 100;
  margin: 0;
  border-radius: 0;
  background: #0000005c;
}

.fsm.full-screen .fa {
  font-size: 10vw;
}

.fsm.full-screen .modal-content {
  height: auto;
  width: auto;
  margin: inital;
}

.fsm.full-screen h1.modal-content {
  transition-delay: 0.5s;
  opacity: 1;
}

.fsm.shrinking h1.modal-content {
  transition-delay: 0s;
  transition: 0.5s;
  opacity: 0;
  display: block;
}

.fsm-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.card-grid {
  width: 202px !important;
  height: 100%;
}

@media only screen and (max-device-width: 360px) {

  #change {
    position: fixed;
    top: 50%;
    left: 219%;
    width: 290px;
    height: 290px;
    margin-top: -106px;
    margin-left: -82px;
    cursor: pointer;
  }

}

@media only screen and (min-device-width: 361px) and (max-device-width: 391px) {

  #change {
    position: fixed;
    top: 50%;
    left: 205%;
    width: 290px;
    height: 290px;
    margin-top: -106px;
    margin-left: -82px;
    cursor: pointer;
  }

}

@media only screen and (min-device-width: 392px) and (max-device-width: 700px) {

  #change {
    position: fixed;
    top: 50%;
    left: 190%;
    width: 260px;
    height: 260px;
    margin-top: -106px;
    margin-left: -82px;
    cursor: pointer;
  }

}

@media only screen and (min-device-width: 701px) and (max-device-width: 800px) {
  #change {
    left: 125%;

  }
}

/* --------------------------------------movies---csss---- */
#mainWrap {
  overflow-y: auto;
  height: auto;
}

.cardCont {
  height: 370px;
  float: left;
  margin-right: 10px;
  position: relative;
  width: 100%;
}

.cardFront,
.cardBack {
  position: absolute;
  height: 63vh;
  background: black;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  border-radius: 22px !important;
  width: 100%;
  padding: 0;
  color: white;
}

.cardFront p,
.cardBack p {
  font-size: 14px;
  ;
}

.cardFront h2 {
  color: #161616;
  font-size: 19px;
  padding-top: 10px;
}

.cardBack button {
  background: transparent;
  border: 0px;
  padding: 0px;
}

.meta-data-list {
  padding-left: 0;
  color: #aaaaaa;
}

.cardBack h2 {
  color: #eeb33d;
  font-size: 20px;
  margin-bottom: 13px;
}

.cardBack {
  background: #000000;
}

.back video {
  border: 1px solid white;
  border-radius: 10px;
  padding: 5px
}

.backul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-left: 0px;
}

.backul li {
  list-style: none;
}

.backul li h6 {
  font-size: 14px;
}

.cardFront img {
  border-radius: 12px;
}

/* ----------------------------for mobile-------- */
#change .cardCont1 {
  /* height:370px;
  float:left;
  margin-right: 10px;
  position:relative;
  width: 100%; */
  position: absolute;
  top: -660px;
  left: -50px;
  height: 204px;
  width: 188px;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
}

#change .cardCont1 .text3 {
  border-radius: 0 0 10px 10px;
  height: 34px;
  object-fit: cover;
  transition: height .2s, width .2s;
  color: rgb(35, 35, 35);
  z-index: 9;
  position: absolute;
  width: 189px;
  margin-bottom: 0;
  border: 0;
  left: -67%;
  top: 45%;
  font-size: 14px;
  background: #254f9b1c;
  box-shadow: 1px 8px 3px #0000003b;
  padding-top: 9px;
}

.cardFront1,
.cardBack1 {
  position: absolute;
  height: 29vh;
  background: black;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  border-radius: 22px 22px 0 0 !important;
  width: 100%;
  padding: 0px;
  color: white;
}

.cardFront1 p,
.cardBack1 p {
  font-size: 14px;
  ;
}

.cardFront1 h2 {
  color: #161616;
  font-size: 19px;
  padding-top: 10px;
}

.meta-data-list {
  padding-left: 0;
  color: #aaaaaa;
}

.cardBack1 h2 {
  color: #eeb33d;
  font-size: 24px;
}

.cardBack1 {
  background: #000000;
}

.back video {
  border: 1px solid white;
  border-radius: 10px;
  padding: 5px
}

.backul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-left: 0px;
}

.backul li {
  list-style: none;
}

.backul li h6 {
  font-size: 14px;
}

.cardFront1 img {
  border-radius: 22px 22px 0 0;
  height: 213px;
  width: 100%;
}

.cardCont1.text3 {
  border-radius: 0 0 10px 10px;
  height: 34px;
  object-fit: cover;
  transition: height .2s, width .2s;
  color: rgb(35, 35, 35);
  z-index: 9;
  position: absolute;
  width: 194px;
  margin-bottom: 0;
  border: 0;
  left: -74%;
  top: 50%;
  font-size: 14px;
  background: #254f9b1c;
  box-shadow: 1px 8px 3px #0000003b;
  padding-top: 9px;
}

.fsm video {
  width: 100%;
  height: 100%;
}


/* ----------------------------------------movie-detail----------------------- */

.movie-detail .imgg {
  border: 1px dotted #cecece;
  border-radius: 10px;
  padding: 6px;
  box-shadow: -2px 3px 13px 10px #0000001c;
}

.movie-title {
  background: #fef4ad;
  text-align: center;
  padding: 10px;
}

.movie-title p {
  margin-bottom: 0px;
}

.effect3 .text2 {
  font-weight: 400;
  font-size: 19px;
  display: flex;
  color: #2f2f2f;
}

.effect3 .text2:before,
.effect3 .text2:after {
  content: '';
  margin: auto .3em;
  border-bottom: solid 1px;
  flex: 1;
}

.effect3 .text2 .title {
  position: relative;
  padding: 0.25em 1.4em;
  overflow: hidden;
  background: linear-gradient(currentcolor, currentcolor) no-repeat top center, linear-gradient(currentcolor, currentcolor) no-repeat bottom center;
  background-size: calc(100% - 1.35em) 1px;
  line-height: 1;
  font-size: 23px;
}

.effect3 .text2 .title:before,
.effect3 .text2 .title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: solid 1px;
  border-top: none;
  border-bottom: none;
  transform: skew(45deg)
}

.effect3 .text2 .title:after {
  transform: skew(-45deg)
}

.portfolio-meta li span {
  display: flex;
  width: 25%;
  font-weight: bold;
  color: #333;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
}

.portfolio-meta li span svg {
  color: rgb(69, 69, 69)
}

.portfolio-meta {
  border: 1px dotted #FFEB3B;
  padding: 11px;
}

.portfolio-meta li {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  padding: 7px;
}

.share {

  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  margin-right: 10px;
  padding: 5px 6px;
  border-radius: 22px;
  line-height: 1;
  box-shadow: 1px 3px 10px #0000007d;
  cursor: pointer;
}

.share:hover {
  background-color: #FFEB3B;
}

/* -------- */
/* To disable arrows on first and last slide */
.disabled {
  display: block !important;
}

.carousel-wrap {
  padding: 0 5%;
  width: 90%;
  position: relative;
}

.owl-carousel .item {
  margin: 0 18px 30px 18px;
  position: relative;
  box-shadow: 6px 14px 15px #111;
  border-radius: 10px;
}

.owl-carousel .item .title-related {
  padding: 5px 10px
}

.owl-carousel .item .title-related h4 {
  margin-bottom: 3px;
}

.owl-carousel .item .title-related small {
  margin-bottom: 5px;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-49%);
  background-color: #fff !important;
  color: #000 !important;
  font-size: 1.5em !important;
  width: 40px;
  height: 40px;
  border-radius: 100% !important;
  font-weight: bold;
  padding: 0px !important;
  text-align: center;
  box-shadow: 0px 0px 10px 0px #000;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
  box-shadow: 0px 0px 6px 0px #0003;
  background-color: #FFC107 !important;
  color: #fff !important;
}

.owl-carousel .owl-prev {
  left: -3px;
}

.owl-carousel .owl-next {
  right: -2px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #FFEB3B !important;
  width: 25px;
  transition: 0.2s ease-in-out;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #FFEB3B !important;
  transition: 0.2s ease-in-out;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-bottom: 10px;
}

.owl-carousel .owl-dot {
  width: 10px;
  height: 16px;
  padding: 7px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid #fdb513;
  margin-right: 5px;
}

.owl-carousel .owl-dot.active {
  background: #fdb513;
  border: 1px solid #fdb513;
}

/* Responsive design custom css */
@media only screen and (max-width:480px) {
  .owl-theme .owl-dots .owl-dot {
    display: none;
  }

  .owl-carousel .owl-prev,
  .owl-carousel .owl-next {
    width: 30px;
    height: 30px;
    font-size: 14px !important;
    top: 45%;
    box-shadow: 0px 0px 0px 0px #000;
  }

  .owl-carousel .owl-prev {
    left: 0px;
  }

  .owl-carousel .owl-next {
    right: 0px;
  }

  .owl-carousel .item {
    margin: 0 18px 13px 18px;
    position: relative;
    box-shadow: 1px 3px 15px #11111173;
    border-radius: 10px;
  }
}

/* ------------------------------------------ */
/* .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
   .wrapper .overly {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    z-index: 99;
}

   .wrapper .overly .show {
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    padding: 23px;
    padding-top: 10px;
}

   .wrapper .overly .show svg {
   position: absolute;
   font-size: 25px;
   top: 5px;
   left: 5px;
   cursor: pointer
}
   .wrapper .overly .show img {
    width: 100%;
    height: 200px;

}

   .wrapper .container {
   width: 800px;
   height: 200px;
   margin: 10px 10px
}

   .wrapper .container img {
   display: inline-block;
   width: 190px;
   height: 100%;
   border: 1px solid #b9b5b5;
   cursor: pointer
} */

.mobile .back {
  border-radius: 10px 10px 0 0;
  height: 284px !important;
  object-fit: cover;
  transition: height .2s, width .2s;
  z-index: 9;
  position: relative;
  background: #141414;
  border-radius: 15px;
  padding: 10px;
  text-align: left;
}

.homep .holder .text3 {
  border-radius: 0 0 10px 10px;
  height: 34px;
  object-fit: cover;
  transition: height .2s, width .2s;
  color: rgb(35, 35, 35);
  z-index: 9;
  position: absolute;
  width: 178px;
  margin-bottom: 0;
  border: 0;
  left: -62%;
  top: 48%;
  font-size: 14px;
  background: #254f9b1c;
  box-shadow: 1px 8px 3px #0000003b;
  padding-top: 9px;
}

.homep .holder img {
  border-radius: 10px 10px 0 0;
  height: 221px;
  object-fit: cover;
  transition: height .2s, width .2s;
  z-index: 9;
  position: relative;
  background: #d1daea;
}

.wheel .flip-card {
  width: 100%;
  height: 100%;
  text-align: center;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -o-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wheel .do-flip {
  -o-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.wheel .flip-card .cardFront,
.wheel .flip-card .cardBack {
  width: 100%;
  height: 100%;
  -o-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
  -webkit-box-shadow: 5px 6px 32px 2px rgba(133, 133, 133, 0.71);
  -moz-box-shadow: 5px 6px 32px 2px rgba(133, 133, 133, 0.71);
  box-shadow: 5px 6px 32px 2px rgba(133, 133, 133, 0.71);
}

.wheel .flip-card .cardFront {
  /* background: lightgreen; */
}

.wheel .flip-card .cardBack {

  -o-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.wheel .flip-card-btn-turn-to-back {
  border: 0;
  padding: 0px;
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.wheel .flip-card-btn-turn-to-back .backbtn {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 58px;
  height: 58px;
  background: #ffffff;
  cursor: pointer;
  visibility: visible;
  font-size: 16px;
  padding: 0;
  color: #101010;
  border: 2px solid #ff5de7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 4px 10px #0000002b;
}

.wheel .flip-card-btn-turn-to-front {
  position: absolute;
  bottom: 24px;
  right: 8px;
  width: 58px;
  height: 58px;
  background: #00000082;
  cursor: pointer;
  visibility: hidden;
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  color: #FFEB3B;
  border: 1px solid #FFEB3B;
  border-radius: 50%;
}

video {
  object-fit: contain;
  width: 300px !important;
  height: 175px !important;
}

.wheel .flip-card .cardBack {
  padding: 10px;
}

.backmain {
  position: relative;
  z-index: 99;
}

a {
  text-decoration: none !important;
}

.iframe-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 6px rgb(0 0 0 / 50%);
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  width: 100% !important;
  height: 100% !important;
}

#modelPopup .modal-content {
  background-image: url(../image/popup.png);
  background-size: contain;
  padding: 0 !important;
}

.modal-header {
  padding: 4px 10px !important;
  border: 0;
}

.modal-body {
  padding: 5px !important;
}

#modelBioData .modal-content {
  background-image: url(../image/popup.png);
  background-size: contain;
  padding: 0 !important;
}

.left {
  flex-basis: 100%;
  background: transparent;
}

.left p {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 12px;
  padding: 0px 8px;
  flex-wrap: nowrap;
  border-bottom: 1px dotted #8080806b;
  background: transparent;
}

.left p:last-child {
  border-bottom: 0px;
  margin-bottom: 0;
}

.biodata {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0px 4px 10px #00000030;
  border-radius: 16px;
  padding: 15px;
  background-image: url(../image/popupmodel1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.biodata.show {
  opacity: 1;
  transform: scale(1);
}
.imgbiodata {
  width: 100%
}

#modelPopup .closepop,
#modelBioData .closepop {
  position: absolute;
  top: 10px;
  background-color: #fcbbff;
  opacity: 1;
  padding: 8px;
  z-index: 999;
  right: 6px;
  border-radius: 52%;
  transform: translate(-50%);
  border: 3px solid white;
  box-shadow: 1px 2px 10px #00000042;
}

.modelname {
  position: absolute;
  z-index: 99;
  color: white;
  font-size: 1.5rem;
  font-style: italic;
}

.followlink {
  color: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.left p b {
  white-space: nowrap;
}

.followlink a {
  color: white !important;
  background: #424242;
  padding: 5px 10px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dflexdiv{
  display: flex;
   height: 79vh;
   align-items: center;
   text-align: center;
   justify-content: center;
}

@media only screen and (max-device-width: 1200px) and (min-device-width: 700px) and (orientation: landscape) {

  .slider-section {
    height: 54vh;
  }

  .video-for-ipad {
    position: relative;
    height: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* .myHTMLvideo::-webkit-media-controls-current-time-display {
  background-color: orange;
 }
 .myHTMLvideo::-webkit-media-controls-time-remaining-display  {
  background-color: green;
 }
 .myHTMLvideo::-webkit-media-controls  {
  background-color: blue;
 } */
  .myHTMLvideo::-webkit-media-controls {
    background-color: none
  }

}

/* ----------------details-page-mobile------- */
@media only screen and (max-device-width: 768px) {
  .left p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.left p:nth-child(1) { animation-delay: 0.1s; }
.left p:nth-child(2) { animation-delay: 0.2s; }
.left p:nth-child(3) { animation-delay: 0.3s; }
.left p:nth-child(4) { animation-delay: 0.4s; }
.left p:nth-child(5) { animation-delay: 0.5s; }
.left p:nth-child(6) { animation-delay: 0.6s; }
.left p:nth-child(7) { animation-delay: 0.7s; }
.left p:nth-child(8) { animation-delay: 0.8s; }
.left p:nth-child(9) { animation-delay: 0.9s; }
.left p:nth-child(10) { animation-delay: 1s; } /* Social links */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  .titlemain {
    position: relative;
  }

  .titlemain .firstWord {
    white-space: nowrap;
    overflow: hidden;
    width: 0%;
    animation: widthize100 .8s 1 .3s cubic-bezier(.7, 0, .175, 1) forwards;
    -webkit-animation: widthize100 .8s 1 .3s cubic-bezier(.7, 0, .175, 1) forwards;
  }

  @keyframes widthize100 {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }

  @-webkit-keyframes widthize100 {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }

  @keyframes slideUpSmooth {
    0% {
      transform: translateY(150px);
      opacity: 0;
    }

    60% {
      transform: translateY(10px);
      opacity: 0.8;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .card h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.2s;
  }

  .card .contact-info p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.4s;
  }

  .card .social-media {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.6s;
  }

  .social-media a {
    color: black;
    margin: 0 10px;
    text-decoration: none;
    width: 43px;
    height: 43px;
    color: #fff;
    background: #000;
    line-height: 0;
    text-align: center;
    font-size: 50px;
    transform: rotatex(18deg) rotate(317deg);
    transition: 0.3s ease-in;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    padding: 1px;
  }

  .facebook {
    border-bottom: 3px solid #1976d3;
    border-left: 3px solid #1976d3;
  }

  .insta {
    border-bottom: 3px solid #db6f44;
    border-left: 3px solid #db6f44;
  }

  .twitter {
    border-bottom: 3px solid #03a9f5;
    border-left: 3px solid #03a9f5;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* .mainimage {
    animation: slideUpSmooth 2.5s ease-out forwards;

  } */
  .mainsection{

    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .mainsection.show {
    animation: slideUpSmooth 2.5s ease-out forwards;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
  .portfolio {
    position: relative;
    width: 300px;
    /* Adjust size as needed */
  }

  .portfolio img {
    width: 100%;
    height: auto;
    display: block;
  }

  .card {
    width: 90%;
    padding: 15px;
    box-shadow: 0px -7px 5px #00000024;
  }

  .card {
    width: 600px;
    background: white;
    border: 2px solid black;
    padding: 20px;
    text-align: center;
  }

  .card h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .card p {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 0;
  }

  .divider {
    border-top: 1px solid black;
    margin: 10px 0;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-top: 0;
  }

  .contact-info p {
    margin: 0;
  }

  .website {
    font-weight: bold;
  }

  .social-media {
    margin-top: 10px;
    font-size: 20px;
  }

  .social-media svg {
    color: #ffffff;
    margin: 0 auto;
    text-decoration: none;
    width: 39px;
    height: 39px;
    transform: rotatex(0deg) rotate(45deg);
    padding: 3px;
  }

  .social-media a:hover {
    color: #fcbbff;
    /* Change color on hover */
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    width: 80%;
    margin: 10px auto;
  }

  .portfolio {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: visible;
}
.clip-container {
  width: 326px; /* Increased size */
  height: 365px;
  position: relative;
  overflow: visible;
  clip-path: url(#clip-shape);
  transform: scale(1.5);
}
.clip-content {
  width: 100%;
  height: 100%;
   /* Now applied to this wrapper */
}
.clip-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transform: scale(1.5); */
  opacity: 1;
  /* animation: fadeInScale 1s ease-out forwards; */
}
@keyframes fadeInScale {
  0% {
      opacity: 1;
      transform: scale(0);
  }
  100% {
      opacity: 1;
      transform: scale(1.5);
  }
}
/* Ensure the SVG path scales properly */
.clip-container  svg {
  position: absolute;
  width: 0;
  height: 0;
}
  .portfolio a {
    position: absolute;
    bottom: 14px;
    right: 12px;
    transform: translateX(-8%);
    background-color: rgb(255 255 255);
    color: #000000;
    padding: 5px 16px;
    text-decoration: none;
    border-radius: 34px 0 0 34px;
    font-size: 19px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 26%);
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start completely outside the image */
    animation: slideIn 0.8s ease-in-out forwards;
  }
  @keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%); /* Start from image's right edge */
    }
    to {
        opacity: 1;
        transform: translateX(0); /* Arrive at original position */
    }
}
  .portfolio a:hover {
    background-color: #ff5733;
    color:white !important
  }

  .navbar-brand {
    width: 100px;
    position: absolute;
    top: 8px;
    left: 5px;
  }

  .right {
    display: flex;
    justify-content: end;
    align-items: end;
  }

  #modelPopup .closepop,
  #modelBioData .closepop {
    right: 0
  }

  .details-page .section {
    padding: 5px 0px;
  }

  .details-page .logos {
    position: relative;
    bottom: 0;
  }

  .details-page .portfolio-meta li span {
    display: flex;
    width: 43%;
    font-weight: bold;
    color: #333;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
  }

  .fsm {
    margin: 7px;
    height: 90px;
    flex: 1;
    display: block;
    color: #f5f5f5;
    font-size: 1.5rem;
    border-radius: 10px;
    transition: 1s;
    cursor: pointer;
  }

  .back h2 {
    color: #eeb33d;
    font-size: 17px;
  }

  .back button {
    background: transparent;
    border: 0px;
    padding: 0px;
  }

  .backul li h6 {
    font-size: 10px;
  }

  .backul li p {
    font-size: 10px;
  }

  video {
    object-fit: contain;
    width: 90% !important;
    height: 144px !important;
  }
}

.main {
  width: 100%;
  height: 100%;
  scroll-snap-type: y mandatory;
  overflow: hidden;
  /* overflow-x: hidden; */
}

.fullheight.first {
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  background-image: url(../image/banner1.png);
  background-size: cover;
}

.footer {
  background-color: #000000;
  color: #fff;
  padding: 10px;
  z-index: 999;
  position: relative;
}