@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "https://unpkg.com/jolty-ui/dist/jolty-ui.min.css";
* {
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
  color: #0c0c0c;
  background-color: #f4f5f8;
  overflow-x: hidden;
}


.space-holder {
  position: relative;
  width: 100%;
}

.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.horizontal {
  position: absolute;
  height: 100%;
  will-change: transform;
}

.cards {
  position: relative;
  height: 100%;
  padding: 0 0 0 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.sample-card {
  position: relative;
  height: 400px;
  border-radius: 28px;
  padding: 22px;
  width: 400px;
  background-color: #4a27271f;
  margin-right: 75px;
  flex-shrink: 0;
}
.lei{
  padding: 8px 8px 8px 8px;
  border-bottom: 0.5px rgba(80, 0, 0, 0.287) solid;
  font-size: 18px;
  color: rgb(0, 0, 0);
  filter: contrast(20);
  font-family: Poppins, sans-serif;
  text-decoration: none;
}




.navigation {
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
}

.menuToggle {
    position: relative;
    width: 60px;
    height: 60px;
    background-image: url("/images/hmi_voice\ image.gif");
   background-position: center;
    background-size: cover;
    border-radius: 70px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.menuToggle::before {
    content: '';
    position: absolute;
    font-size: 2.8em;
    font-weight: 550;
    color: #087fe0;
    transition: 1.5s;
}

.menuToggle.active::before {
    transform: rotate(315deg);
}

.menu {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 70px;
    z-index: -1;
    transition: transform 0.5s, width 0.5s, height 0.5s;
    transition-delay: 1s, 0.5s, 0.5s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menuToggle.active~.menu {
    width: 270px;
    height: 70px;
    z-index: 1;
    transform: translateY(-80px);
    transition-delay: 0s, 0.5s, 0.5s;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.menu::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    left: calc(85% - 8px);
    bottom: 4px;
    transform: rotate(45deg);
    border-radius: 2px;
    transition: 0.5s;
}

.menuToggle.active~.menu::before {
    transition-delay: 0.3s;
    bottom: -6px;
}

.menu ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    gap: 30px;
}

.menu ul li {
    list-style: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: 0.25s;
    transition-delay: calc(0s + var(--i));
}

.menuToggle.active~.menu ul li {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition-delay: calc(0.75s + var(--i));
}

.menu ul li a {
    display: block;
    font-size: 2.2em;
}

.app-collapse{
  --padding: 7px;
  --transition-time: 200ms;
  --title-foni-size: 25px;
  --title-color: #111;
  --bckground-color: #f4f5f8;
  --collapse-timing-function: cubic-bezier(0.83, 0.02, 0.81, 0.42);
  outline: none;
 
}
.collapse-panel{
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all var(--transition-time) var(--collapse-timing-function);
  background-color: #ffffff;
  border: none;
  opacity: 0;
  margin-bottom: 10px;
  background-color: var(--bckground-color);
outline: none;
  
}
.collapse-header-button{
  display: block;
  width: 100%;
  text-align: left;
  color:#007bff;
  padding-inline: var(--padding);
  padding-block: var(--padding);
  transition: var(--transition-time);
  cursor: pointer;
  outline: none;
  background-color: var(--bckground-color);

}
.collapse-header-button[aria-expanded="false"]{
   border:none;
   outline: none;
}
.collapse-title{
  font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 740;
    line-height: 125%;
    letter-spacing: -.03em;
    position: relative;
    z-index: 2;
    padding-right: 14px;
    color: black;
    pointer-events: none;
    outline: none;
}
.collapse-header-button:hover
{
  color: #007bff;
}
.collapse-icon{
  position: absolute;
  width: 14px;
  left: 280px;
  top: 21px;
  font-weight: bold;
  transform-origin: center;
  transition: var(--transition-time);
}
.collapse-header-button[aria-expanded="false"] .icon-path-line{
  d: path('M4 4L78 76.5L152 4');
}
.icon-path-line {
  d:path('M4 78 78 7l74 71');
  stroke: var(--title-color);
  stroke-linecap: round;
  stroke-width: 8px;
  transition: var(--transition-time);
}
.collapse-panel-inner-wrapper {
  padding-inline: var(--padding);
  overflow: hidden;
  outline: none;
}
.collapse-panel.app-collapse-expanded{
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: var(--padding);
}
.abt_col-7
{
  height: 100%; padding: 20px 70px;
}
.coll-pz{
font-size: 22pt; font-weight: 400;}
.coll-p{
  
  font-size: 22px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -.01em;
  z-index: 2;
  color: rgb(165, 165, 188);  
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;

}
/* END : accordian style */

button:hover
{
  
  border: none;
  outline: none;
}






.accordion .accordion-item {
  border-bottom: 1px solid #b3b3b3;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #ffffff9a;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #ffffff ;
  font-size: 19pt;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #ffffff83;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #ffffff92;
  border: 1px solid #ffffffd2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #f7feffb6;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -.01em;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);

  margin-right: 2px;
  margin-bottom: 16px;opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 2em 0;
}







.line-title {
  position: relative;
  width: 400px;
}
.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.line-title::after {
  width: 32px;
  background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  padding: 20px 20px;
}
.game-section .owl-stage {
  margin: 1px 0;
  display: flex;
  display: -webkit-flex;
}
.game-section .item {
  margin: 0 15px 60px;
  width: 400px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.game-section .item h3
{
  font-size: 30px;
  font-family: Poppins, sans-serif 
}
.game-section .item.active {
  width: 400px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: 0px;
  position: relative;
  z-index: 5;
}


.twogame-section {
  padding: 20px 20px;
}
.twogame-section .owl-stage {
  margin: 1px 0;
  display: flex;
  display: -webkit-flex;
}
.twogame-section .item {
  margin: 0 15px 60px;
  width: 400px;
  height: 200px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #ffffff no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.twogame-section .item.active {
  width: 400px;
}
.twogame-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  
}
.twogame-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.twogame-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.twogame-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.twogame-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.twogame-section .owl-theme.custom-carousel .owl-dots {
  margin-top: 0px;
  position: relative;
  z-index: 5;
}

.short
  {
    font-family: Poppins, sans-serif ; font-weight: 600; color: #000000; font-size: 20pt; text-align: justify;
  }


 .about_hero
{
  text-align: center; position: absolute; top: 30%; left: 2%;  color: rgb(0, 0, 0); font-size: 55pt; 
  font-weight: bold;
}
.about_hero p
{
  font-size: 14pt; 
  font-weight: 100;
  text-align: center;
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 30px;
  padding-bottom: 30px ;
}

.p_serivce
{
font-family: Poppins, sans-serif;
font-size: 22px; 
color: #000000;
}
.section_service 
{background-color:#f4f5f8; height: 100%; padding: 150px 90px; position: sticky;}
 /******** Middle section CSS End *******/

/***** responsive css Start ******/

.sample-card {
  position: relative;
  height: 80%;
  width: 400px;
}
.why_sec
  {
    background-color:#f4f5f8; height: 100%; padding: 30px 9px;
  }
.why
  {
    font-family: Poppins, sans-serif ; font-weight: 600; color: #000000; font-size: 45px; text-align: center; padding: 35px; padding-bottom: 2px;
  }
  .whyh3
  {
    text-align: center; color: gray; margin-top: 1px; font-size: 17pt; text-align: center;
  }
.clients-section {
  margin-top: 50px;
}
.clients {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.clients-border>li {
  position: relative;
}
.clients li {
  height: 100px;
  margin: 0 41px;
  width: 100px;
  display: inline-block;
  cursor: pointer;
}
.clients>li img {
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  position: relative;
  z-index: 9;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.industry
{
  color: rgb(255, 255, 255); padding: 30px 15px; border-bottom: .1px solid rgb(102, 102, 102); font-size: 18px; 
}
.clients li img {
  max-width: 90%;
    -webkit-transition: all .35s ease-in-out;
  -o-transition: .35s all ease-in-out;
  transition: all .35s ease-in-out;
}
.clients-border>li:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #eee;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  top: 0;
}






.col_service
{padding: 60px; background-size: cover; height: 700px; border-radius: 28px;}


.button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 1em 1.5em;
  position: relative;
  transition: filter var(--motion-duration);
}

.button:hover {
  filter: brightness(1.1);
}

.button:active {
  filter: brightness(0.9);
}

.button > span {
  display: block;
  position: relative;
  transition: transform var(--motion-duration) var(--motion-ease);
  z-index: 1;
}

.button:hover > span {
  transform: scale(1.05);
}

.button:active > span {
  transform: scale(0.95);
}

.button > svg {
  fill: #007bff;
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}

.button > svg > path {
  transition: var(--motion-duration) var(--motion-ease);
}

.button:hover > svg > path {
  d: path("M0,0 C0,-5 100,-5 100,0 C105,0 105,100 100,100 C100,105 0,105 0,100 C-5,100 -5,0 0,0");
}

.button:active > svg > path {
  d: path("M0,0 C30,10 70,10 100,0 C95,30 95,70 100,100 C70,90 30,90 0,100 C5,70 5,30 0,0");
}




.hero_sec{padding: 0% 0% 0% 0% ; height: 100vh; margin-bottom: 0%;}







a, button{
  transition:0.5s;
}

em{
  font-style:normal;
  color:var(--primary_lite);
}



a, button, input, textarea, select{
  outline:none !important;
}




.flex, .fixed_flex{
  display:flex;
}

.flex_content{
  width:100%;
  position:relative;
}

.padding_1x{
  padding:1rem;
}

.padding_2x{
  padding:2rem;
}

.padding_3x{
  padding:3rem;
}

.padding_4x{
  padding:4rem;
}

.big{
  font-size:3.5em;
}

.medium{
  font-size:2em;
}

.small{
  font-size:1.3em;
}

.btn{
  padding:1rem;
  border-radius:5px;
  color:var(--white);
  position: absolute;
  border:0;
  text-align: left;
  
}

.btn_3{
  display:block;
  background-color:0;
  color:var(--white);
  position:relative;
  font-family:var(--default_font);
  font-weight:400;
  text-transform:uppercase;
}

.btn_3:before{
  content:"";
  border-radius:50%;
  background-color:rgba(255,255,255,0.2);
  position:absolute;
  left:0;
  top:50%;
  width:40px;
  height:40px;
  transition:0.5s;
  transform:translate(0%, -50%);
}

.btn_3:after{
  content:"\f178";
  font-family:"FontAwesome";
  margin-left:5px;
}

.btn_3:hover:before{
  border-radius:40px;
  width:100%;
}

@media (max-width:920px){
  .flex{
      flex-wrap:wrap;
  }
  
  .padding_1x, .padding_2x, .padding_3x, .padding_4x{
      padding:1rem;
  }
  
  .big{
      font-size:1.8em;
  }
  
  .medium{
      font-size:1.3em;
  }
  
  .small{
      font-size:1.1em;
  }
  
  .btn{
      padding:0.5rem 1rem;
  }
  
 
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

ul{
  padding:0;
  margin:0;
}

.slider .title{
  font-weight:400;
}

.slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: clip .7s ease-in-out, z-index 0s .7s;
  clip: rect(0, 100vw, 100vh, 100vw);
  display:flex;
  align-items:center;
  justify-content:left;
}

.slider li:nth-child(1){
  background: rgba(5, 3, 44, 0.973);
  background-size: cover;
  background-position:top left;
}

.slider li:before{
  content:"";
  position:absolute;
  top:-20px;
  right:0;
  width:250px;
  height:250px;
  background-image:url("https://i.postimg.cc/02zcww6c/slider-shape.png");
  background-size:100% 100%;
  transition-delay: 1s;
  transform: rotate(-90deg);
  z-index:1;
}

.slider li:after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:300px;
  height:300px;
  background-image:url("https://i.postimg.cc/KjKbwDfR/slider-shape-2.png");
  background-size:100% 100%;
  transform:rotate(360deg);
transition: all 1.5s cubic-bezier(0,0,.2,1);
  z-index:1;
  background-position:center left;
}

.slider li:nth-child(2){
  background:linear-gradient(to right, rgba(1,1,1,1) 10%, rgba(1,1,1,0.8) 51%, rgba(1,1,1,0.2) 100%);
  background-size: cover;
  background-position:top left;
}

.slider li:nth-child(3){
  background:linear-gradient(to right, rgb(1, 1, 1) 10%, rgba(1,1,1,0.8) 51%, rgba(1, 1, 1, 0.801) 100%), url("https://jupsoft.com/images/IFP_Banner.png");
  background-size: cover;
  background-position:top left;
}

.slider article{
  width:100%;
  margin-top:4rem;
  color: #fff;
  z-index:11;
}

.slider h3 {
  display: inline-block;
  color: var(--lite);
  font-weight: 600;
  font-size: 55pt;
}
.slider p {
  width: 600px;
  margin-bottom: 30px;
}

.slider h3, .slider h3 + p, .slider p + .btn, li:after{
  opacity: 0;
  transition: opacity .7s 0s, transform .5s .2s;
  transform: translate3d(0, 50%, 0);
}

li.current h3, li.current h3 + p, li.current p + .btn, li.current:after {
  opacity: 1;
  transition-delay: 1s;
  transform: translate3d(0, 0, 0);
}

.slider li:before{
  transition: 0.5s;
  top:-250px !important;
}

li.current:before{
  transition-delay: 1s;
  transform: rotate(-90deg);
  top:-20px !important;
}

li.current {
  z-index: 1;
  clip: rect(0, 100vw, 100vh, 0);
}

li.prev {
  clip: rect(0, 0, 100vh, 0);
}

.slider aside {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  text-align: center;
  z-index: 10;
}

.slider aside a {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--white);
  margin: 0 0.2rem;
  transition: transform .3s;
}

.slider em{
  background: var(--primary);
  
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

a.current_dot {
  transform: scale(1.4);
  background:var(--primary) !important;
}

@media screen and (max-width: 920px) {
  header{
      height:70vh;
      position:relative;
  }
  
  .cs-down{
      display:none;
  }

  .slider{
      height:100vh;
  }
  
  .slider article{
      width:100%;
      margin-top:2rem;
  }
  .slider p{
  width: 370px;
  }
  .slider li:nth-child(2){
      background-position:top center;
  }
  
  .slider li:nth-child(3){
      background-position:top center;
  }
  .slider em{
    background: var(--primary);
    line-height: 1.8;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  li.current:before{
      top:-30px;
      right:-10px;
  }
}





















.scrolsection {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f5f8;
  width: 100%;
  height: auto;

}

.sscc {
  display: flex;
  justify-content: center;
  align-items: center;
}

video {
  width: 100%;
}

/* FIRST EFFECT */

.scrolsection:nth-child(1) {
  align-items: flex-start;
  overflow: clip;
}

.bigger {
  position: sticky;
  height: 50%;
  width: 50%;
}


.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: #007bff;
    margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #007bff;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}






.nav {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  position: fixed;
  z-index: 1000;
  padding: 15px 5px 15px 5px;

  align-items: center;
}
.nav > .nav-header {
  flex: 0.30;
  padding-left: 1rem;
}
.nav > .nav-header > .nav-title {
  font-size: 22px;
  color: #8e2929;
  width: 200px;
  margin-right: 50px;
}
.nav > .nav-list {
  display: flex;
  width: 50%;
  gap: 2rem;
}
.nav > .icon {
  display: grid;
  width: 30%;

  grid-auto-flow: column; 
  justify-content: end;
  float: right;
  gap: 2rem;
}
.nav > .icon > li {
  list-style-type: none;
  border-right: #17162037 solid .5px;
  padding-right: 9px;
  font-size: 20pt;
  cursor: pointer;
}
.nav > .icon > li:hover {
  list-style-type: none;
  color: #570808;
  transition: .2s;
}

.nav > .nav-list > li {
  list-style-type: none;
}
.nav > .nav-list > li:hover {
  list-style-type: none;
  border-bottom: .2px solid red;
  color: #007bff;
  transition: 2s;
}
.nav > .nav-list > li a {
  text-decoration: none;
  font-size: 18px;
  color: #000000;
  cursor: pointer;
}
.nav > #nav-check {
    display: none;
}
@media (max-width: 680px) {
  .nav {
    padding: 1rem;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 0.2rem;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #560000;
  }
  .nav > .nav-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 500;
    width: 100%;
    background-color: #ffffff3c;
    height: 0;
    transition: all 0.3s ease-in;
    top: 40px;
    left: 0;
    overflow: hidden;
  }
  .nav > .icon {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 500;
    width: 100%;
    background-color: #ffffff3c;
    height: 0;
    transition: all 0.3s ease-in;
    top: 40px;
    left: 0;
    overflow: hidden;
  }
  .nav > .nav-list > li {
    width: 100%;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-top: 1.5rem;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(100vh - 50px);
  }
}
/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 90px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002c3e;
    line-height: 70px;
}

.slider_section .detail-box h1 span {
  color: #007bff;
}

.slider_section .detail-box p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 1.5rem;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 12px 45px;
    background-color: #007bff;
    border: 1px solid #007bff;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 10px;
    font-weight: 700;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #007bff;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  margin-top: 45px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #007bff;
}

.slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}

.product_section .heading_container {
  margin-bottom: 20px;
}

.product_section .box {
    position: relative;
    margin-top: 25px;
    padding: 35px 35px;
    background-color: #f7f8f9;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    box-shadow: 5px 5px 5px -5px rgba(0,0,0,.2);
    border: solid #fff 10px;
}

.product_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px;
}

.product_section .box .img-box img {
  max-width: 100%;
  max-height: 160px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.product_section .box .detail-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_section .box .detail-box h5 {
  font-size: 18px;
  margin-top: 10px;
}

.product_section .box .detail-box h6 {
  margin-top: 10px;
  color: #002c3e;
  font-weight: 600;
}

.product_section .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_section .box:hover .option_container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.arrival_section {
    background-color: #d4ced0;
}
.product_section .option_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.product_section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_section .options a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  width: 165px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 5px 0;
}

.product_section .options .option1 {
  background-color: #007bff;
  border: 1px solid #007bff;
  color: #ffffff;
}

.product_section .options .option1:hover {
  background-color: transparent;
  color: #007bff;
}

.product_section .options .option2 {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.product_section .options .option2:hover {
  background-color: transparent;
  color: #000000;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #007bff;
  border: 1px solid #007bff;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #007bff;
}

.arrival_section .heading_container {
  color: #002c3e;
  margin-bottom: 10px;
}

.arrival_section .box {
  padding: 120px 45px;
  position: relative;
}

.arrival_section .arrival_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.arrival_section .arrival_bg_box img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}

.arrival_section a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #007bff;
  border: 1px solid #007bff;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrival_section a:hover {
  background-color: transparent;
  color: #007bff;
}

.why_section .box {
    text-align: center;
    margin-top: 45px;
    background-color: #002c3e;
    padding: 45px 50px;
    border-radius: 5px;
    color: #ffffff;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

.remove_line_bt h2::after {
    display: none;
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}

.subscribe_section {
  text-align: center;
}

.subscribe_section .box {
  background-color: #d4ced0;
  padding: 75px 45px;
}

.subscribe_section .subscribe_form .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #002c3e;
}

.subscribe_section .subscribe_form .heading_container h2 {
  padding: 0 25px;
}

.subscribe_section .subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribe_section .subscribe_form form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 90px;
    outline: none;
    padding: 5px 25px;
    background-color: #ffffff;
    margin-top: 15px;
    text-align: left;
}

.subscribe_section .subscribe_form form input::-webkit-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input:-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #007bff;
  border: 1px solid #007bff;
  color: #ffffff;
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
  font-weight: 600;
  width: 100%;
  max-width: 285px;
}

.subscribe_section .subscribe_form form button:hover {
  background-color: transparent;
  color: #007bff;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.client_section .box .img_container .img-box {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  background-color: #007bff;
  border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  left: 25%;
}

.client_section .carousel-control-next {
  right: 25%;
}


a{
  text-decoration:none;
  outline:none !important;
  color:#fff;
  }
  
  .border-shape {
  background: #790000 none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 3px;
  left: 0;
  margin: 20px auto;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 80px;
  }
  
  .border-shape::before {
  background: #790000 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 80px;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 100px;
  }
  
  .border-shape::after {
  background: #790000 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  margin: 0 auto;
  position: absolute;
  right: 80px;
  text-align: center;
  top: 1px;
  width: 100px;
  }
  
  
  
  
  
  
  
  
  
  
  
  /*FOOTER*/
  footer{
  width:100%;
  background-color:#121619;
  color:#fff;
  }
  
  .top_header{
  padding:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  }
  
  .top_header section{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  }
  
  .top_header span{
  padding:0 1rem;
  }
  
  .top_header .fa{
  color:#ff1515;
  font-size:35px;
  }
  
  footer .border-shape {
  width: 40%;
  }
  
  footer .border-shape::before {
  width: 100%;
  left:120px;
  }
  
  footer .border-shape::after {
  width: 100%;
  right:120px;
  }
  
  footer .bottom_content section{
  padding:1.5rem 2rem;
  display:flex;
  align-items:center;
  justify-content:Center;
  }
  
  .bottom_content a{
  margin:0 20px;
  color:rgba(255,255,255,0.7);
  transition:0.5s;
  }
  
  .bottom_content a:hover{
  color:rgba(255,255,255,1);
  }
  
  
  .copyright{
  padding:0.8em 0;
  background-color:#1e1e1e;
  text-align:center;
  color:rgba(255,255,255,0.7);
  font-size:12px;
  }
  
  
  
  @media (max-width:820px){
  .top_header{
  padding:1rem;
  display:block;
  }
  
  .top_header section{
  margin:40px 0;
  align-items:left;
  justify-content:left;
  }
  footer .bottom_content section{
  padding:1rem;
  display:block;
  }
  footer .bottom_content section a{
  padding:1rem;
  font-size:12px;
  margin:0 5px;
  display:inline-block;
  }
  }
  
  
  
.information_f p {
    margin-bottom: 1.2rem;
    line-height: 25px;
    font-size: 15px;
}

.widget_menu h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
}

.widget_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_menu ul li {
    float: left;
    width: 100%;
}

.widget_menu ul li a {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 5px;
}

.field {
    display: flex;
}

.widget_menu {
    float: left;
    width: 100%;
}

div.form_sub .field input[type="email"], div.form_sub .field input[type="email"]:hover, div.form_sub .field input[type="email"]:focus {
    padding: 10px 110px 10px 15px;
    border-radius: 0;
    border: solid #ccc 1px;
    font-size: 14px;
    position: relative;
    box-shadow: none;
    width: 100%;
    height: 48px;
}

.form_sub {
    position: relative;
}

.form_sub input[type="email"] + input[type="submit"] {
    position: absolute;
    right: 0;
    background: #007bff;
    color: #fff;
    border: none;
    top: 0px;
    font-size: 14px;
    height: 48px;
    font-weight: 600;
    padding: 0 15px;
}

form input {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form textarea {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    min-height: 150px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form input[type="submit"] {
    border: none;
    padding: 15px 45px;
    width: auto;
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 auto;
    display: flex;
    background: #333;
    color: #fff;
    font-weight: 600;
    transition: ease all 0.1s;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
    background: #007bff;
    color: #fff;
}


@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
 

  .twogame-section {
    padding: 50px 30px;
  }
  .twogame-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .twogame-section .item.active {
    width: 400px;
  }
  .twogame-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
  .line-title {
    width: 330px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 360px;
    height: 360px;
  }
  .game-section .item.active {
    width: 360px;
    height: 360px;

  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }

  .twogame-section {
    padding: 50px 30px 40px;
  }
  .twogame-section .item {
    margin: 0 12px 60px;
    width: 290px;
    height: 290px;
  }
  .twogame-section .item.active {
    width: 360px;
  }
  .twogame-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
  .game-section .item h3
  {
    font-size: 20px;
    font-family: Poppins, sans-serif 
  }
  .short
  {
    font-family: Poppins, sans-serif ; font-weight: 600; color: #000000; font-size: 22px; text-align: justify;
  }
}
.hero_btn{
  top: 75%; left: 3%; width: 200px; border-radius: 20px;
}

.abt_btn{
  width: 200px; background-color: #0059ff; font-size: 27px; padding: 5px 25px; border-radius: 50px; cursor: pointer; color: white;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h2 {
    margin-bottom: 20px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 10px;
    line-height: 24px;
  }
  .about_hero h3 {
    margin: 0 0 8px;
    font-size: 34pt;
    padding-left: 20px;
    line-height: 74px;
  }
  .about_hero p {
    font-size: 14pt;
    font-weight: 100;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.abt_btn{
  margin-left: 20px;
  
  width: 200px; background-color: #0059ff; font-size: 27px; padding: 5px 25px; border-radius: 50px; cursor: pointer; color: white;
}
  .line-title {
    width: 250px;
  }
  .carousel-control i {
    font-size: 20px;
    background: #71717147;
    padding: 30px;
    border-radius: 100%;
    position: relative;
    display: inline-block;
	color: rgba(255, 255, 255, 0.8);
}
  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }
  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
  .twogame-section {
    padding: 30px 15px 20px;
  }
  .twogame-section .item {
    margin: 0 10px 40px;
    width: 190px;
    height: 150px;
  }
  .twogame-section .item.active {
    width: 190px;
  }
  .twogame-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
  .col-md-12
  {
    margin-bottom: 20px;
    
  }
  .game-section .item h3
  {
    font-size: 16px;
    font-family: Poppins, sans-serif 
  }
  .short
  {
    font-family: Poppins, sans-serif ; font-weight: 600; color: #000000; font-size: 20px; text-align: justify;
   
  }
  .why_sec
  {
    background-color:#f4f5f8; height: 100%; padding: 30px 9px;
  }
  .why
  {
    font-family: Poppins, sans-serif ; font-weight: 600; color: #000000; font-size: 45px; text-align: center; padding: 35px; padding-bottom: 2px;
  }
  .whyh3
  {
    text-align: center; color: gray; margin-top: 1px; font-size: 12pt; text-align: center;
  }

  .game-section .item.active .item-desc p {
   font-size: 9px;
  }
  .whitelow
{
  background: #f4f5f81b;
}
.carousel .item {
	color: #ffffff;
	font-size: 20px;
  font-weight: 400;
    text-align: left;
	overflow: hidden;
    min-height: 290px;
    font-family: Poppins, sans-serif;
}
.accordion .accordion-content {
  overflow: scroll;
}

.section_service 
{background-color:#f4f5f8; height: 100%; padding: 50px 40px; position: sticky;}
.col_service
{padding: 60px; background-size: cover; height: 400px; border-radius: 28px;}

.about_hero
{
  text-align: left; position: absolute; top: 30%; left: 2%;  color: rgb(0, 0, 0); font-size: 44px; 
}
.p_serivce
{
font-family: Poppins, sans-serif;
font-size: 12px; 
color: #000000;
}
.hero_sec {padding: 0% 0% 0% 0% ; height: 100vh; margin-bottom: 22%;}

.hero_sec .col-md-6 .hero_h1{
text-align: left; position: absolute; top: 55%; left: 2%;  color: rgb(0, 0, 0); font-size: 30px; 
}
.hero_btn{
  top: 100%; left: 3%; width: auto; height: 40px; border-radius: 20px;
}

  .scrolsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f5f8;
    width: 100%;
    height: 100%;
  
  }
  
  .sscc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  video {
    width: 100%;
    height: auto;
  }
  .lei{
    padding: 8px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    filter: contrast(20);
    font-family: Poppins, sans-serif;
    text-decoration: none;
  }
  /* FIRST EFFECT */
  
  .scrolsection:nth-child(1) {
    align-items: flex-start;
    overflow: clip;
  }
  
  .bigger {
    position: sticky;
    height: 100%;
    width: auto;
  }

  .coll-pz{
    font-size: 20px; font-weight: 600;}

    .abt_col-7
    {
      height: 100%; padding: 70px 9px;
    }

}
/** cpy **/

.cpy_ {
    background: #222;
    text-align: center;
    padding: 20px 0;
}

.cpy_ p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.cpy_ p a {
    margin: 0;
    color: #007bff;
    font-size: 15px;
    font-weight: 400;
}

button{ border: none;}