@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

body{
    direction: ltr;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0px;
}

.high-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hh-logo-link {
  display: flex;
  flex-direction: row;
  gap:  10px;
  align-items: center;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
} 

.hh-logo-link:hover {
  color: #FFA069;
}

.hh-logo-link h3 {
  margin: 0;
}

.hh-logo-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hh-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 19px;
}

.hh-nav-link {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0px;
  color: #000;
  text-decoration: none;
  margin: 0;
}

.hh-nav-link:hover {
  scale: 1.1;
  color: #FFA069;
}

.mainview-sect {
  overflow: hidden;
  position: relative;
  width:100%;
  background: linear-gradient(357deg, #FFA069 0%, #EF2143 56%, #ccf2f4 100%);
  background-size: cover;
}

.mainview-content {
  position: relative;
  padding-top: 108px;
  padding-bottom: 108px;
  z-index:100;
  display: flex;
  flex-direction: row-reverse;
  gap: 33px;
  align-items: center;
}

.mainview-txtblock {
  width: 50%;
  border-top: 34px solid #fff;
  border: 19px solid #fff;
  border-bottom: 62px solid #fff;
  border-radius: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background: url(imagevault/dir-bg/bg-light-068700c5344f64.jpg);
}

.mainview-txt-overlay {
  position: relative;
  padding: 33px 29px;
  background: rgba(255,255,255,0.5); color: #222;
}

.mainview-title {
  font-size: 27px; 
  font-weight: 700;
}

.mainview-img-wrap {
  width: 48%;
}

.mainview-img {
  width: 80%;
  height: 430px;
  object-fit: contain;
  display: flex;
  margin: auto;
}



.vibrate-img {
	-webkit-animation: vibrate-1 2s linear infinite both;
	        animation: vibrate-1 2s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}


.clouds {
  position: absolute;
  left: 0;
  top: 0;
  width: 170%; 
}

.clouds img {
  width: 50%;
  height: auto;
  object-fit: contain;
  left: 0;
  top: -100px;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;  
  -ms-user-select: none;
  user-select: none;   
  pointer-events: none;
}

.cloud2 {
  left: -70% !important;
}

.cloud4 {
  left: -50% !important;
}

@-webkit-keyframes animCloud {
  from {
      -webkit-transform: translateX(100%)
  }
  to {
      -webkit-transform: translateX(-100%)
  }
}

@-moz-keyframes animCloud {
  from {
      -moz-transform: translateX(100%)
  }
  to {
      -moz-transform: translateX(-100%)
  }
}

@keyframes animCloud {
  from {
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transform: translateX(100%)
  }
  to {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%)
  }
}

.cloud1 {
  -webkit-animation: animCloud 20s infinite linear;
  -moz-animation: animCloud 20s infinite linear;
  animation: animCloud 20s infinite linear;
}
.cloud2 {
  -webkit-animation: animCloud 40s infinite linear;
  -moz-animation: animCloud 40s infinite linear;
  animation: animCloud 40s infinite linear;
}
.cloud3 {
  -webkit-animation: animCloud 60s infinite linear;
  -moz-animation: animCloud 60s infinite linear;
  animation: animCloud 60s infinite linear;
}
.cloud4 {
  -webkit-animation: animCloud 80s infinite linear;
  -moz-animation: animCloud 80s infinite linear;
  animation: animCloud 80s infinite linear;
}

.about-form-section {
  padding-top: 62px;
  padding-bottom: 33px;
}

.about-form {
  display: flex;
  flex-direction: row;
  gap: 33px;
  align-items: center;
  justify-content: center;
}

.about-card {
  width: 65%;
}

.form-card {
  width: 33%;
}

.about-card {
  position: relative;

}

.about-bg-card {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 45%;
  height: 100%;
  object-fit: cover;
}

.about-card-contents {
  margin-top:  23px;
  margin-bottom: 170px;
  border: 10px solid;
  border-left: none;
  width: 80%;
  padding: 29px;
  background: rgba(255,255,255,0.5); color: #222;
}

.about-gall-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 235px;
  object-fit: contain;
}

.about-card-title {
  font-size: 34px;
  font-weight:  700;
  margin-bottom: 39px;
}


.form-card-body {
  background-image: linear-gradient(to bottom, #424242,#212121);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 29px;
}

.form-card-title {
  color: wheat;
  font-size:  34px;
  margin-bottom: 29px;
}

.input-control-row-item {
  font-size: 13px;
  margin-bottom: 20px;
  padding: 13px ;
  width: 90%;
  background-color: inherit;
  color: wheat;
  border: none;
  outline: none;
}
.textarea-control-row-item {
  font-size: 13px;
  margin-bottom: 20px;
  padding: 13px ;
  width: 90%;
  background-color: inherit;
  color: wheat;
  border: none;
  outline: none;
}
.input-control-row-item {
  border-bottom: 2px solid wheat;
  transition: all 400ms;
}
.textarea-control-row-item {
  border-bottom: 2px solid wheat;
  transition: all 400ms;
}
.form-card-body label {
  color: wheat;
}

.input-control-row-item:hover::placeholder {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}

.textarea-control-row-item:hover::placeholder {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}

.form-card-body .form-check-label a {
  color: wheat;
  text-decoration: none;
}

.form-card-body .form-check-label a:hover {
  text-decoration: underline;
}

.gaming-benefits-sect {
  padding-top:  62px;
  padding-bottom:  62px;
  background-attachment: fixed;
  background-image: url(imagevault/dir-bg/bg-all-068700c5345014.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.2s, border 0.2s, border-radius 0.2s, box-shadow 0.2s;
  margin-top: 0em;
  margin-bottom: 0em;
  position: relative;
  width: 100%;
}


.gb-block {
  padding: 39px;
  border-radius: 0px;
  background: rgba(255,255,255,0.5); color: #222;
  backdrop-filter: blur(10px);
}

.gb-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 39px;
}

.gb-listsas {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.gb-card {
  background-color: #fff;
  width: 40%;
  padding: 22px;
  border-radius: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.gb-card-img {
  display: flex;
  margin: auto;
  height: 74px; 
  object-fit: contain;
}

.gb-txt {
  margin: 19px 0;
  font-size:  18px;
  color: #000;
}

.gb-decor {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
}

.gb-decimg {
  width: 100%;
  object-fit: contain;
}

.gam-cat-sect {
  padding-top: 62px;
  padding-bottom: 62px;
}

.gam-cat-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom:  33px;
}

.gam-cat-list {
  display: flex;
  flex-direction: row;
  gap: 29px;
  flex-wrap: wrap;
  justify-content: center;
}

.gam-cat-card {
  position: relative;
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 19px;
  width: 380px;
}

.gc-cards-front {
  display: block;
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  transition-duration: .5s;
  transition-property: transform, opacity;
  transform: rotateY(0deg);
  display: block;
  color: white;
  width: inherit;
  background-size: contain !important;
  background-position: center!important;
  background-repeat: no-repeat !important;
  height: 380px;
  padding: 19px 29px;
  background: #313131;
  border-radius: 13px;
}

.gam-cat-card:hover .gc-cards-front {
  transform: rotateY(180deg);
}

.gc-card-back {
  position: absolute;
      opacity: 0;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      transform: rotateY(-180deg);
      display: block;
      transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
      transition-duration: .5s;
      transition-property: transform, opacity;
      display: block;
    color: white;
    width: inherit;
    background-size: cover!important;
    background-position: center!important;
    height: 380px;
    padding: 19px 29px;
    background: #230338;
    border-radius: 13px;
}

.gam-cat-card:hover .gc-card-back {
  opacity: 1;
  transform: rotateY(0deg);
}

.gc-card-back-content {
  font-size: 15px;
  color: #999;
}

.gc-cards-front-title {
  font-size: 27px;
  font-weight: 900;
  color: white;
  padding: 13px;
  background: #5f9ea08a;
  border-radius: 50%;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}

.dd-sect-video-bg {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.promo-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.promo-video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 51, 83, 0.6);
  opacity: 0.5;
}

.promo-video-bg > video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.disclaiaams-block, .devs-block {
  padding-top: 62px;
  padding-bottom: 62px;
}

.disclaiaams-title, .devs-title {
  font-size: 34px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-bottom:  29px;
}

p.disclaiaams-txt {
  font-size:  22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
}

.disclaiaams-txt{
  padding: 23px;
  background-color: #EF2143;
}

.devs-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 33px;
}

.devs-item {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 29px;
  background: #ffffff52;
  backdrop-filter: blur(10px);
  border-radius: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.dev-tools {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.dev-name {
  font-size: 22px;
  font-weight:  700;
  margin: 0;
}

.footer-threecol-bg {
  padding-top:  62px;
  padding-bottom: 29px;
  background-color:  #000000;
}

.footer-threecol {
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
  justify-content: center;
}

.footer-maincol {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.fmc-logo-link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.fmc-logo-link img {
  width: 50px;
  height: 50px;
}

.fmc-logo-link h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.fmc-navrow {
  display: flex;
  flex-direction: row;
  gap: 23px;
}

.fmc-navrow-link {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.fmc-copy-txt p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.fmc-info {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}

.fmc-info a {
  text-decoration: none;
}

.fmc-disclaiaams-img img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-navcol {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fn-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.footer-contcol {
  width: 30%;
}

.fc-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 29px;
}

.fc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-item p, .fc-item a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.fmc-navrow-link:hover, .fn-link:hover {
  scale: 1.1;
  color: #FFA069;
}

.maincont-wrap {
  display: flex;
}

.devs-block {
  display: none;
}

.about-onepg-bg {
  padding-top: 62px;
  padding-bottom: 62px;
  background: rgba(0,0,0,0.9); color: #fff;
}

.about-onepg {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 33px;
}

.about-onepg-content {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 29px;
}

.aoc-title {
  width: 30%;
}

.aoc-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 62px;
}

.aoc-title img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(10px 10px 34px #000)
}

.bounce-bone {
	-webkit-animation: bounce-top 2s cubic-bezier(0.175, 0.885, 0.320, 1.275) infinite both;
	        animation: bounce-top 2s cubic-bezier(0.175, 0.885, 0.320, 1.275) infinite both;
}

@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

.aoc-txt {
  width: 68%;
  font-size:  18px;
  line-height: 1.2;
}

.about-onepg-faq {
  width: 38%;
}

.accordion-item {
  border-radius: 13px !important;
  margin-bottom: 20px;
  border: 0;
  background-color: #ccf2f4;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  box-shadow: none;
  background-color: #FFA069;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.accordion-button {
  color: #fff;
  font-size: 22px;
  padding: 23px 60px 23px 29px;
  background: #FFA069;
  border-radius: 13px !important;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;

}

.catgam-onepg {
  padding-top: 62px;
  padding-bottom: 62px;
}

.catgam-onepg-title {
  background-image: url(imagevault/dir-bg/bg-light-068700c5344f64.jpg );
  width: 38%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}

.catgam-onepg-title h2 {
  font-size: 45px;
  font-weight: 700;
}

.catgam-onepg-title h2 {
  text-align: right;
  padding: 23px;
  border-radius: 0px;
  color: #fff;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, #FFA069 100%);
}

.catgam-onepg-firstlist {
  width: 60%;
  display: flex;
  gap: 29px;
  justify-content: center;
}

.catgam-onepg-firstlist .co-card {
  width: 45%;
}

.co-img {
  width: 100%;
  height: 430px;
}

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

.catgam-op-wrap {
  display: flex;
  flex-direction: row;
  gap: 33px;
}

.catgam-onepg-list {
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 29px;
  flex-wrap: nowrap;
  margin-top: 29px;
}

.co-card {
  cursor: default;
  background: rgba(255,255,255,0.5); color: #222;
  border-radius: 0px;
  box-shadow: #FFA069 0px 2px 5px 0px, rgba(207, 205, 220, 0.54) 0px 1px 1px 0px;
  overflow: hidden;
  padding: 20px;
}

.co-content {
  margin-top: 15px;
}

.co-content a {
  text-decoration: none;
  color: inherit;
}

.co-title {
  font-size: 18px;
  text-align: center;
}

.co-txt {
  font-size: 13px;
}

.co-btn {
  margin-top: 19px;
}

.sgp-gamtitle-bg {
  background-color: #FFA069;
  padding-top: 19px;
  padding-bottom: 19px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.sgp-gamtitle {
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
  justify-content: center;
}

.sgp-gamtitle img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 13px;
}

.sgp-gamtitle h2 {
  color: #fff;
  margin: 0;
  font-size: 27px;
  font-weight:  700;
}

.single-game-page-bg {
  background-image: url(imagevault/dir-bg/bg-light-068700c5344f64.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-game-page-overlay {
  background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.sgp-gamblock {
  padding-top: 62px;
  padding-bottom: 62px;
}

.sgp-gamblock-wrap {
  display: flex;
  flex-direction: column;
} 

.sgp-gamboard {
  padding-left:  29px;
  padding-right:  29px;
}

.sgp-gamboard h3 {
  font-size:  22px;
  font-weight: 700;
  margin-bottom:  29px;
  text-align: center;
}

.sgp-gamboard iframe {
  border-radius: 13px;
  border: 10px solid #FFA069;
}

.sgp-gaminfo {
  padding-top: 33px;
  padding-bottom: 33px;
}

.sgp-gaminfo img {
  width: 45%;
  max-height: 599px;
  object-fit: contain;
  float: right;
  margin:  22px;
}

.sgp-gamtxt {
  font-size: 15px;
  font-weight: 900;
}

.spg-comments {
  padding-top: 33px;
}

.spg-comments-title {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 33px;
}


.spg-comments-box {
  background-color: #fff;
  padding: 34px 120px 34px 120px;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  border: 10px solid #FFA069;
  border-radius: 15px;
  direction: ltr;
}

.slider__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.spg-comments-pic img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 0%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 10px solid #FFA069;
  box-shadow: 0px 0px 0px #FFA069;

}

.slick-slide{
  height: auto;
}

.slick-prev {
  left: -80px;
}

.slick-next {
  right: -80px;
}

.slick-prev:before, .slick-next:before{
  color: #FFA069;
  font-size: 45px;
}

.slick-prev {
  left: -62px;
}

.slick-next {
  right: -62px;
}

.slick-list {
  overflow-x: clip;
  overflow-y: inherit;
}

.spg-comment-person {
  color: #000 !important;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size:   22px;
  color: inherit;
}

.spg-comment-text {
  color: #000 !important;
  text-align: center;
  margin-bottom: 20px;
  font-size:   18px;
  color: inherit;
}

.contact-gampage-bg {
  padding-top: 62px;
  padding-bottom: 62px;
  background-color: #00000002;
}

.contact-gampage {
  display: flex;
  flex-direction: column;
}

.c-gampage-info {
  margin-top: 39px;
  display: flex;
  flex-direction: row;
  gap: 23px;
}

.c-gampage-data {
flex: 1;
}

.c-gampage-info-map {
 flex: 1;
}

.c-gampage-data-title {
  font-size: 34px;
  letter-spacing: 1px;
  text-transform:  uppercase;
  font-weight: 700;
  margin-bottom: 39px;
}

.contact-data-subtitle {
  font-size: 22px;   
}

.c-gampage-data-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap:  23px;
}

.c-gampage-data-item {
  display: flex;
  gap: 23px;
  padding: 10px 29px;
  border-radius: 10px;
  background-color: #FFA069;
  align-items: center;
} 

.c-gampage-data-item i {
  font-size: 34px;
  color: #fff;
}

.c-gampage-data-item p {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.c-gampage-data-item a {
  color: inherit;
  word-break: break-all;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  
}

.c-gampage-form-block {
  padding-top: 33px;
}


.c-gampage-form {
  margin: 0 auto;
  width: 60%;
  background-color: white;
  padding: 3.125em;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 5px 5px 15px -1px#FFA069;
}

.c-gampage-form-txt {
  color: rgb(77, 75, 75);
  text-transform:  uppercase;
  letter-spacing: 1px;
  display: block;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0.5em;
  text-align: center;
}

.c-gampage-form-input {
  width: 100%;
  margin-bottom: 19px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid gray;
  padding: 10px;
  outline: none;
}

.c-gampage-form-input:focus {
  border: 1px solid #FFA069;
  outline: none;
}

.catgam-onepg.container {
  padding-top: 62px;
  padding-bottom: 62px;
}

.slick-dots li {
  background-color: #000;
  border-radius: 23px;
}
.button-1 {
  --😀: #644dff;
  --😀😀: #4836bb;
  --😀😀😀: #654dff63;
  cursor: pointer;
  padding: 10px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125em;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  background: var(--😀);
  border: 2px solid var(--😀😀);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--😀😀);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--😀😀😀));
}

.button-1:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--😀😀😀);
}


.button-2 {
  color: #fff;
  border-radius:  4px;
  padding: 10px 23px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  border: none;
  overflow: hidden;
  background: #b621fe;
  border: none;
  z-index: 1;
}
.button-2:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #663dff;
  border-radius:  4px;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.2s ease;
}
.button-2:hover {
  color: #fff;
}
.button-2:hover:after {
  left: 0;
  width: 100%;
}
.button-2:active {
  top: 2px;
}

.button-3 {
  font-size: 18px;
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: box-shadow,transform;
  background: radial-gradient( 100% 100% at 100% 0%, #89E5FF 0%, #5468FF 100% );
  box-shadow: 0px 0.01em 0.01em rgb(45 35 66 / 40%), 0px 0.3em 0.7em -0.01em rgb(45 35 66 / 30%), inset 0px -0.01em 0px rgb(58 65 111 / 50%);
  padding: 10px 18px;
  border-radius: 0.3em;
  color: #fff;
  text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.button-3:hover {
  box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #3c4fe0;
  transform: translateY(-0.1em);
}

.button-3:active {
  box-shadow: inset 0px 0.1em 0.6em #3c4fe0;
  transform: translateY(0em);
}

.button-4 {
  border: none;
  color: #fff;
  background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
  border-radius: 23px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 18px;
  padding: 0.6em 1.5em;
 }
 
 .button-4:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
 }
 
 @keyframes pulse512 {
  0% {
   box-shadow: 0 0 0 0 #05bada66;
  }
 
  70% {
   box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }
 
  100% {
   box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
 }

 .button-5,
.button-5:focus {
  font-size: 18px;
  padding: 10px 23px;
  border-radius: 0.7rem;
  background-image: linear-gradient(rgb(214, 202, 254), rgb(158, 129, 254));
  border: 2px solid rgb(50, 50, 50);
  border-bottom: 4px solid rgb(50, 50, 50);
  box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
  transform: translate(0, -3px);
  cursor: pointer;
  transition: 0.2s;
  transition-timing-function: linear;
}

.button-5:active {
  transform: translate(0, 0);
  border-bottom: 2px solid rgb(50, 50, 50);
}

.thumb-privacy{
  padding: 116px 0px;
}
