*,
*::after,
*::before {
  /* box-sizing: inherit; */
  margin: 0;
  padding: 0;
}


/* Typography =======================*/

/* Headings */

/* Main heading for card's front cover */
/* .card-front__heading {
  font-size: 1.5rem;
  margin-top: .25rem;
} */

/* Main heading for inside page */
/* .inside-page__heading { 
  padding-bottom: 1rem; 
  width: 100%;
} */

/* Mixed */

/* For both inside page's main heading and 'view me' text on card front cover */
/* .inside-page__heading,
.card-front__text-view {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: .2rem;
} */

/* .inside-page__heading--city,
.card-front__text-view--city { color: #ff62b2; }

.inside-page__heading--ski,
.card-front__text-view--ski { color: #2aaac1; }

.inside-page__heading--beach,
.card-front__text-view--beach { color: #fa7f67; }

.inside-page__heading--camping,
.card-front__text-view--camping { color: #00b97c; } */

/* Front cover */

/* .card-front__tp { color: #fafbfa; }

/* For pricing text on card front cover */
/* .card-front__text-price {
  font-size: 1.2rem;
  margin-top: -.2rem;
} */ 

/* Back cover */

/* For inside page's body text */
/* .inside-page__text {
  color: #333;
} */

/* Icons ===========================================*/

/* .card-front__icon {
  fill: #fafbfa;
  font-size: 3vw;
  height: 3.25rem;
  margin-top: -.5rem;
  width: 3.25rem;
} */

/* Buttons =================================================*/

/* .inside-page__btn {
  background-color: transparent;
  border: 3px solid;
  border-radius: .5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  overflow: hidden;
  padding: .7rem .75rem;
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
  width: 90%;
  z-index: 10;
} */
/* 
.inside-page__btn::before { 
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transition: all .3s ease;
  width: 100%;
  z-index: -1;
}

.inside-page__btn--city { 
  border-color: #ff40a1;
  color: #ff40a1;
}

.inside-page__btn--city::before { 
  background-color: #ff40a1;
}

.inside-page__btn--ski { 
  border-color: #279eb2;
  color: #279eb2;
}

.inside-page__btn--ski::before { 
  background-color: #279eb2;
}

.inside-page__btn--beach { 
  border-color: #fa7f67;
  color: #fa7f67;
}

.inside-page__btn--beach::before { 
  background-color: #fa7f67;
}

.inside-page__btn--camping { 
  border-color: #00b97d;
  color: #00b97d;
}

.inside-page__btn--camping::before { 
  background-color: #00b97d;
}

.inside-page__btn:hover { 
  color: #fafbfa;
}

.inside-page__btn:hover::before { 
  transform: scaleY(1);
} */

/* Layout Structure=========================================*/

/* .main {
  background: linear-gradient(
    to bottom right,
    #eee8dd,
    #e3d9c6
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100%;
} */

/* Container to hold all cards in one place */
.card-area {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  height: 40vh;
  justify-content: space-evenly;
  padding: 1rem;
}

/* Card ============================================*/

/* Area to hold an individual card */
/* .card-section {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
} */

/* A container to hold the flip card and the inside page */
/* .card {
  background-color: rgba(0,0,0, .05);
  box-shadow: -.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.5);
  height: 15rem;
  position: relative;
  transition: all 1s ease;
  width: 15rem;
} */

/* Flip card - covering both the front and inside front page */

/* An outer container to hold the flip card. This excludes the inside page */
/* .flip-card {
  height: 15rem;
  perspective: 100rem;
  position: absolute;
  right: 0;
  transition: all 1s ease;
  visibility: hidden;
  width: 15rem;
  z-index: 100;
} */

/* The outer container's visibility is set to hidden. This is to make everything within the container NOT set to hidden  */
/* This is done so content in the inside page can be selected */
/* .flip-card > * {
  visibility: visible;
} */

/* An inner container to hold the flip card. This excludes the inside page */
/* .flip-card__container {
  height: 100%;
  position: absolute;
  right: 0;
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 1s ease;
  width: 100%;
} */

/* .card-front,
.card-back {
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
} */

/* Styling for the front side of the flip card */

/* container for the front side */
/* .card-front {
  background-color: #fafbfa;
  height: 15rem;
  width: 15rem;
} */

/* Front side's top section */
/* .card-front__tp {
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 57% 90%, 50% 100%, 43% 90%, 0 90%);
  display: flex;
  flex-direction: column;
  height: 12rem;
  justify-content: center;
  padding: .75rem;
}

.card-front__tp--city {
  background: linear-gradient(
    to bottom,
    #ff73b9,
    #ff40a1
  );
} */

/* .card-front__tp--ski {
  background: linear-gradient(
    to bottom,
    #47c2d7,
    #279eb2
  );
}

.card-front__tp--beach {
  background: linear-gradient(
    to bottom,
    #fb9b88,
    #f86647
  );
}

.card-front__tp--camping {
  background: linear-gradient(
    to bottom,
    #00db93,
    #00b97d
  );
} */

/* Front card's bottom section */
/* .card-front__bt {
  align-items: center;
  display: flex;
  justify-content: center;
} */

/* Styling for the back side of the flip card */

/* .card-back {
  background-color: #fafbfa;
  transform: rotateY(180deg);
} */

/* Specifically targeting the <video> element */
/* .video__container {
  clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%);
  height: auto;
  min-height: 100%;
  object-fit: cover;
  width: 100%;
} */

/* Inside page */

/* .inside-page {
  background-color: #fafbfa;
  box-shadow: inset 20rem 0px 5rem -2.5rem rgba(0,0,0,0.25);
  height: 100%;
  padding: 1rem;
  position: absolute;
  right: 0;
  transition: all 1s ease;
  width: 15rem;
  z-index: 1;
}

.inside-page__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center; 
  width: 100%;
} */

/* Functionality ====================================*/

/* This is to keep the card centered (within its container) when opened */
/* .card:hover {
  box-shadow:
  -.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.75);
  width: 30rem;
} */
/* 
/* When the card is hovered, the flip card container will rotate */
/* .card:hover .flip-card__container {
  transform: rotateY(-180deg);
} */

/* When the card is hovered, the shadow on the inside page will shrink to the left */
/* .card:hover .inside-page {
  box-shadow: inset 1rem 0px 5rem -2.5rem rgba(0,0,0,0.1);
} */ 



/* //.card */
.card1 {
    width: var(--card-width);
    height: var(--card-height);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 36px;
    perspective: 2500px;
    margin: 0 50px;
    width: 100%;
  }
  
  .cover-image {
    width: 100%;
    height: 40vh;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
  
  }
  
  .wrapper1 {
    transition: all 0.5s;
    position: absolute;
    width: 100%;
    z-index: -1;
   
   
  }
  
  .card1:hover .wrapper1 {
    transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
  }
  
  .wrapper1::before,
  .wrapper1::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 50px;
    transition: all 0.5s;
    position: absolute;
    left: 0;
  }
  .wrapper1::before {
    top: 0;
    height: 100%;
    background-image: linear-gradient(
      to top,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%
    );
  }
  .wrapper1::after {
    bottom: 0;
    opacity: 1;
    background-image: linear-gradient(
      to bottom,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%
    );
  }
  
  .card1:hover .wrapper1::before,
  .wrapper1::after {
    opacity: 1;
  }
  
  .card1:hover .wrapper1::after {
    height: 70px;
  }
  .title {
    width: 100%;
    height: 20vh;
    transition: transform 0.5s;
  }
  .card1:hover .title {
    transform: translate3d(0%, -50px, 100px);
  }
  
  .character {
    width: 100%;
    height: 30vh;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    z-index: -1;
  }
  
  .card1:hover .character {
    opacity: 1;
    transform: translate3d(0%, -30%, 100px);
  }


/* .gameContComm{
  background:url(./image/bg/bgWallpaper.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;flex-direction: row;justify-content: space-around;align-items: center;
}  */

  .commMainCont{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
}
.commMainContNew{
  display: none;
}

.commMainCont2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52vh;
}
.comMainCont2A{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items:   center;
  height: 50vh;
  width: 85%;
}
.formCont{
  width: 90%;
  height: 75vh;
  background: rgba(208, 208, 208, 0.599);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

/* //banner */
.bannerContGame{
  width: 100%;height: 57vh;
}
.txtCont{
  font-size: 18px;
}

.bestContMain{
  height: 120vh;
  background: url(./image/bg/bgBird.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.bestCont1{
  width: 50%
}

.bestCont2{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.imgMobile{
  width: 65%;
  height: 75vh
}
.imgMobile2{
  width: 100%;
  height: 45vh;
}
.bestImg2A{
  position: absolute;
  bottom: -10%;
  right: 0%
}
.bestImg2{
  width: 100%;height: 60vh;
}
.bestImg3{
  width: 100%;height: 60vh
}
.bestImg3A{
  position: absolute;
  bottom: -10%;
  left: -40%;
}
.imgMobile2A{
  position: absolute;bottom:-20%;left: 10%;
}
/* //ourportfolio */
.portfolioContMain{
  background:url(./image/bg/bgColoured.jpg);
  height: 170vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.portFolioCont1{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 25vh;
}

/* //lobi */
.lobiMainCont ,.lobiMainCont2{
  height: 45vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.lobiContContent1A{
  display: none;
}
.lobiContContent1 ,.lobiContContent1D{
  width: 40%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.418);
  border-radius: 5px;
}

.lobiContContent2{
  width: 50%;
  height: 40vh;
}

.lobiContContent2 img{
  height: 40vh
}
.otherdesignMainCont{
  height: 45vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.otherdesignHeadercont{
  width: 40%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.418);
  border-radius: 5px;
}
.otherdesignContentcont{
  width: 50%;
  height: 40vh;
}


/* //ourproducts */
.ourproductsMaincont{
  height: 460vh;
  /* background: #003b46; */
  background: url(./image/bg/bgBlack.jpg);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.ourPorductheaderCont{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 30vh;
  width: 90%;
}
.ourPorductContentCont1{
  height: 50vh;display: flex;flex-direction: row;justify-content: space-around;align-items: center;
}

/* .ourPorductContentCont1 .card{
  height: 60vh;width: 30%;background: #076d7f;border: none;
} */
.ImgCont2{
  height: 31vh;
  width: 100%;
}
/* <!-- //admincontrol --> */
.adminControlMaincont{
  height:50vh
}
.adminHeadercont{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

/* .whatClientMain{
  height: 130vh;background:  #130031;
} */
@media screen and (max-width: 650px) {
  /* .commMainCont{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
} */

 /* .commMainContNew{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59vh;
 } */
.formCont{
  width: 90%;
  height: 70vh;
  background: rgba(208, 208, 208, 0.599);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.bannerContGame{
  width: 100%;
  height: 33vh;
}
.commMainCont2{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.commMainCont2 img{
  width: 50vw;
}
.txtCont{
  font-size: 15px;
}
.bestContMain{
  height: 182vh;
  /* background-color: #245224; */
  background: url(./image/bg/bgBird.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.bestCont1{
  width: 90%;
  height: 92vh;
}

.bestCont2{
  width: 90%;
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgMobile{
  width: 100%;
  height: 40vh
}
.imgMobile2{
  height:25vh;
  width: 100%;
}
.bestImg2{
  width: 100%;height: 30vh;
}
.bestImg2A{
  position: absolute;
  bottom: 0%;
  right: -66%
}
.bestImg3{
  width: 100%;height: 30vh
}
.bestImg3A{
  position: absolute;bottom: 0%;left: -60%;
}
.imgMobile2A{
  position: absolute;bottom:-30%;left: 10%;
}
.gameContComm{
  /* background:url(./image/bg/bgWallpaper.webp); */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;flex-direction: row;justify-content: space-around;align-items: center;
  height: 167vh;
} 
/* //ourportolio */


/* //lobi */
.lobiMainCont{
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.lobiMainCont2{
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.lobiContContent1A ,.lobiContContent1D{
  width: 90%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.418);
  border-radius: 5px;
}
.lobiContContent1A{
  margin-top: 10px;
}
.lobiContContent1{
 display: none;
  
 
}

.lobiContContent2{
  width: 90%;
  height: 40vh;
  margin-top: 10px;
}

.lobiContContent2 img{
  height: auto
}
.otherdesignMainCont{
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  
}
.otherdesignHeadercont{
  width: 90%;
  height: 30vh;
}
.otherdesignContentcont{
  width: 90%;
  margin-top: 10px;
}
.otherdesignContentcont img{
  height: auto;
} 
.portfolioContMain{
  background:url(./image/bg/bgColoured.jpg);
  height: 200vh;
  background-size: cover;
  background-repeat: no-repeat;
}

/* //ourproducts */
.ourproductsMaincont{
  height: 1205vh;
  /* background: #003b46; */
  background: url(./image/bg/bgColoured.jpg);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.ourPorductheaderCont{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 58vh;
  width: 100%;
}
.ourPorductheaderCont h2{
  font-size: 18px;
}

.ourPorductContentCont1{
  height: 189vh;display: flex;flex-direction: column;justify-content: space-between;align-items: center;
}


.ourPorductContentCont1 .card{
  height: 60vh;width: 90%;background: #076d7f;border: none;
}
 .imgCont1{
  position: absolute;
  bottom: -20%;
  left: 35%;
}

.ImgCont2{
  height: auto;
  width: 100%;
}

/* //admincotnrol */
.adminControlMaincont{
  height: 296vh;
}
.adminHeadercont{
  color: #fff;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 20vh;
}
.card-area {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 135vh;
  justify-content: space-around;
  padding: 1rem;

}

.navbar-collapse{
  background: #0C0127;
  padding: 20px;
  }



/* .whatClientMain{
  height: 200vh;
  background:  #130031;
} */
}


.modal-backdrop.show {
  z-index: auto;
}
.modalCss{
  z-index: 99;
}
