@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
ol,
ul,
li {
}
body {
	line-height: 1;
	height: 100%;
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	text-decoration: none;
	background-color: transparent;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.btn-1 {
    width: 140px;
    height: 40px;
    border: dotted 5px;
    border-radius: 10px;
    background: linear-gradient(to right,#77530a,#ffd277,#77530a,#77530a,#ffd277,#77530a);
    background-size: 250%;
    background-position: left;
    color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
  }
  

  
  .btn-1:hover {
    background-position: right;
    transition-duration: 1s;
  }
  
  .btn-1:hover::before {
    background-position: right;
    transition-duration: 1s;
  }
  
  .btn-1:active {
    transform: scale(0.95);
  }

  .btn-2 {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #7d2ae8;
    transition: all 0.2s ease;
  }
  
  .btn-2:active {
    transform: scale(0.96);
  }
  
  .btn-2:before,
  .btn-2:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
  }
  
  .btn-2:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
      10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
  }
  
  @keyframes greentopBubbles {
    0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }
  
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }
  
    100% {
      background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  .btn-2:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%),
      radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
  }
  
  @keyframes greenbottomBubbles {
    0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }
  
    50% {
      background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }
  
    100% {
      background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }

  .btn-3 {
    --green: #1BFD9C;
    font-size: 15px;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  .btn-3:hover {
    color: #82ffc9;
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
  }
  
  .btn-3:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
  }
  
  .btn-3:hover:before {
    transform: translateX(15em);
  }

 

  .btn-4 {
    background-color: #00BFA6;
    padding: 14px 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 10px;
    border: 2px dashed #00BFA6;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .4s;
   }
   
   .btn-4 span:last-child {
    display: none;
   }
   
   .btn-4:hover {
    transition: .4s;
    border: 2px dashed #00BFA6;
    background-color: #fff;
    color: #00BFA6;
   }
   
   .btn-4:active {
    background-color: #87dbd0;
   }
   
   

  .btn-5 {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    color: rgb(193, 163, 98);
    border: 2px solid rgb(193, 163, 98);
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
  }
  
  .btn-5::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: rgb(193, 163, 98);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .btn-5:hover::before {
    scale: 3;
  }
  
  .btn-5:hover {
    color: #212121;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
  }
  
  .btn-5:active {
    scale: 1;
  }

* {
    box-sizing: border-box;
}

body{
    direction: ltr;
    font-family: 'Sawarabi Mincho', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    line-height: 1.3;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-inline-start: 0;
}

img {
    display: block;
}

.link {
    text-decoration: none;
}

.link:hover,
.link:focus {
    color: inherit;
    cursor: pointer;
}

.title-g03 {
    font-size: 33px;
    font-weight: 700;
    text-shadow: 7px 9px 10px rgba(0,0,0,0.3);
    color: white;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .title-g03 {
        font-size: 40px;
    }
}

.sub-title-g03 {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6em;
    color: #111111;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .sub-title-g03 {
        font-size: 18px;
    }
}

@media screen and (min-width: 992px) {
    .sub-title-g03 {
        font-size: 20px;
    }
}

.main-btn-g03 {
    display: inline-block;
}

@media screen and (min-width: 576px) {
    .main-btn-g03 {
        padding: 10px 20px;
    }
}

@media screen and (min-width: 992px) {
    .main-btn-g03 {
        font-size: 20px;
    }
}

.main-btn-g03:hover,
.main-btn-g03:focus {
    background-color: #000000;
    color: #00ADE7;
}

.main-btn-g03:hover a,
.main-btn-g03:focus a {
    color: #fff !important;
}

:root {
  --brand-color: #E07250;
  --anim: 800ms cubic-bezier(0.4, 0, 0.2, 1);
--size: 80px;
--speed: 3s;
--peakopacity:0.7;
}

.container-g03 {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .container-g03 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 992px) {
    .container-g03 {
        padding-left: 19px;
        padding-right: 19px;
    }
}

.header-g03 {
    background-color: #111111;
}

.nav-inner-g03 {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.logo-link-g03 {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: #ffffff;
    align-items: center;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
    font-size: 29px;
}

@media screen and (min-width: 425px) {
    .logo-link-g03 {
        font-size: 28px;
    }
}

.logo-link-g03:hover,
.logo-link-g03:focus {
    color: var(--brand-color);
}

.logo-link-g03 img {
    display: inline-block;
    max-height: 50px;
    filter: drop-shadow(0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de);
}

.menu-btn-g03 .icon-menu,
.menu-btn-g03 .icon-cross {
    fill: #ffffff;
}

.menu-btn-g03 {
    border: none;
    background-color: transparent;
    padding: 0;
}

@media screen and (min-width: 992px) {
    .menu-btn-g03 {
        display: none;
    }
}

    .menu-btn-g03:hover .icon-menu {
        fill: #ffffff;
    }

    .menu-btn-g03 .icon-cross {
        display: none;
    }

    .menu-btn-g03.is-active .icon-cross {
        display: block;
    }

    .menu-btn-g03.is-active .icon-cross:hover .icon-cros {
        fill: var(--accent-color);
    }

    .menu-btn-g03.is-active .icon-menu {
        display: none;
    }

    .menu-btn-g03:hover .icon-menu,
    .menu-btn-g03:hover .icon-cross {
        fill: var(--accent-color);
    }

    .mob-menu-g03 {
        display: none;
        z-index: 9;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        padding: 48px 0;
        overflow-y: scroll;
        background-color: #292929;
        color: #ffffff;
        }

    .btn-cross {
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        background-color: transparent;
        padding: 0;
    }

    .btn-cross .icon-cross {
        fill: #ffffff;
    }

@media screen and (max-width: 991px) {
    .mob-menu-g03.is-open {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 992px) {
    .mob-menu-g03 {
        display: none;
    }
}

.mob-nav-bar-g03 {
    margin-top: 30px;
}

.mob-nav-bar-g03__item {
    position: relative;
    border-bottom: 1px solid #3F3F46;
}

.mob-nav-bar-g03__list .mob-nav-bar-g03__item::before {
    color: var(--text-g01-color);
    font-size: 18px;
    font-weight: 700;
    left: 10px;
    position: absolute;
}

.mob-nav-bar-g03__link {
    display: block;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.02em;
    font-size: 15px;
    padding: 14px 16px;
    color: #ffffff;
    text-transform: uppercase;
 }

.mob-nav-bar-g03__item:hover .mob-nav-bar-g02__link{
    color: var(--brand-color);
}

.nav-bar-g03 {
    display: none;
}

@media screen and (min-width: 992px) {
    .nav-bar-g03 {
        display: block;
        width: unset;
    }
}

.nav-bar-g03__list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-bar-g03__link {
    color: #f7f9fc;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px 0;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
}

.nav-bar-g03__link:hover,
.nav-bar-g03__link:focus {
    color: var(--brand-color);
}

.hero-g03 {
    background-color: #111111;
}

.hero-area-g03 {
    background-color: #111111;
    background-image: url("assets/img/welcome.png");
    background-repeat: no-repeat;
    background-size: contain;
}



@media screen and (min-width: 768px) {
    .hero-area-g03 {
        min-height: 550px;
    }
}

.hero-inner-g03 {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 5px 0;
    text-align: center;
    margin-left: auto;
}

@media screen and (min-width: 450px) {
    .hero-inner-g03 {
        padding: 100px 35px;
        width: 80%;
    }
}

@media screen and (min-width: 575px) {
    .hero-inner-g03 {
        padding: 20px;
        width: 50%;
    }
}

@media screen and (min-width: 768px) {
    .hero-inner-g03 {
        padding: 100px 35px;
    }
}


.welcome-title-g03 {
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: 2.7px;
    text-shadow:
 0 1px 5px rgb(88,92,42),
 0 -1px 0 rgba(0,0,0,1),
 0 -3px 0 rgba(0,0,0,0.45),
 0 1px 0 rgba(255,255,255,0.5),
 0 2px 2px rgba(255,255,255,0.2);
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
}

@media screen and (min-width: 575px) {
    .welcome-title-g03 {
        font-size: 25px;
    }
}

@media screen and (min-width: 992px) {
    .welcome-title-g03 {
        font-size: 26px;
    }
}

.features-g03 {
    padding: 120px 0;
    background-image: linear-gradient(to bottom, #111111 20%, transparent), url(visualtreasure/back/bg-all-067e3c12c86a49.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.features-g03-title {
    margin-bottom: 60px;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
}

.features-g03-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (min-width: 575px) {
    .features-g03-list {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

@media screen and (min-width: 992px) {
    .features-g03-list {
        flex-wrap: nowrap;
        flex-direction: row;
    }
}


.features-g03-it {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border: 0;
    margin-bottom: 30px;
    margin-top: 30px;
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 575px) {
    .features-g03-it {
        flex-basis: calc(100% / 2 - 15px);
    }
}

@media screen and (min-width: 992px) {
    .features-g03-it {
        flex-basis: calc(100% / 4 - 30px);
    }
}

.features-g03-img__wrap {
    margin: -50px auto 0;
    border-radius: 50%;
    overflow: hidden;
    width: 130px;
    height: 130px;
    background: linear-gradient(40deg, #097525 30%, #082805);
}

.features-g03__img {
    width: 70px;
    height: auto;
    max-height: 100px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.features__img-ltr {
    transform: translate(-133%, -50%);

}

.features-g03-item__text-wr {
    padding: 20px;
    text-align: center;
    color: #3C4858;
}

.special {
    text-transform: uppercase;
    font-style: italic;
    color: #3C4858;
}

.about-us-g03,
.page-g03 {
    padding: 120px 0;
    background-color: #530404;
    background-image: linear-gradient(to top, #0000007a, #000000), url(assets/img/fleur-de-lis.png);
    background-size: 75px;
    background-repeat: round;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .about-flex {
        flex-direction: row;
    }
}

.about-us-g03-wraper {
    flex: 100%;
}

.about-us-g03-wraper img{
    width: 100%;
}

@media screen and (min-width: 450px) {
    .about-us-g03-wraper img{
        height: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 992px) {
    .about-us-g03-wraper img{
        width: 100%;
        height: unset;
    }
}

.border-out {
    padding: 15px;
    background-image: radial-gradient(ellipse at center, #c1b403 60%, #391f08 89%);
    border-radius: 30px;
    border: solid 1px #2c1602;
}

@media screen and (min-width: 575px) {
    .border-out {
        padding: 20px;
    }
}

@media screen and (min-width: 992px) {
    .border-out {
        padding: 20px;
       }
}

.border-in {
    padding: 30px 10px;
    border-radius: 21px;
    border: solid 1px #643001;
    background: linear-gradient(40deg, #097525 30%, #082805);
}

@media screen and (min-width: 575px) {
    .border-in {
        padding: 30px;
        }
}

@media screen and (min-width: 992px) {
    .border-in {
        padding: 30px;
           }
}


.aboutus-g03-title {
    color: #ff515a;
}
.about-g03-text {
    color: #f3c014;
    line-height: 1.3;
}

.games-g03 {
    border-top: solid 1px #643001;
    border-bottom: solid 1px #643001;
    padding: 20px 0;
    background-image: radial-gradient(ellipse at center, #c1b403 60%, #391f08 89%);
    overflow: hidden;
}

.games-g03-in {
    padding: 80px 0;
    background: linear-gradient(40deg, #097525 30%, #082805);

}

.games-g03-title {
    margin-bottom: 60px;
}
.games-g03-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.games-g03-item {
    flex: 47%;
    display: flex;
}

@media screen and (min-width: 576px) {
    .games-g03-item {
        flex-basis: calc(100% / 2 - 30px);
    
        }
}

@media screen and (min-width: 992px) {
    .games-g03-item {
        flex: 46%;
        }
}


.card {
    flex-basis: calc(100% / 2 - 20px);
    height: 200px;
    box-sizing: border-box;

}

@media screen and (min-width: 400px) {
    .card {
        height: 300px;
        }
}

@media screen and (min-width: 568px) {
    .card {
        height: 200px;
        }
}
@media screen and (min-width: 768px) {
    .card {
        height: 300px;
        }
}

@media screen and (min-width: 992px) {
    .card {
        height: 400px;
    }
}


.card-back {
    position: relative;
    perspective: 1000px;
    text-align: center;
    margin-right: auto;
}

.games-g03-description,
.games-g03-shirt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 1s;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-style: solid;
    border-width: 2px;
    border-color: #FF7B7B;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);

}

.games-g03-shirt{
    background-image: url(assets/img/card.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.card-back:hover .games-g03-shirt,
.card-back:focus .games-g03-shirt {
    transform: rotateY(180deg);
}

.card-back:hover .games-g03-description,
.card-back:focus .games-g03-description {
    transform: rotateY(360deg);
}



.games-g03-shirt h3 {
    font-size: 20px;
    color: #180c96;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
}

@media screen and (min-width: 400px) {
    .games-g03-shirt h3 {
        font-size: 30px;

        }
}
@media screen and (min-width: 576px) {
    .games-g03-shirt h3 {
        font-size: 20px;

        }
}
@media screen and (min-width: 768px) {
    .games-g03-shirt h3 {
        font-size: 25px;
        }
}

@media screen and (min-width: 992px) {
    .games-g03-shirt h3 {
        font-size: 36px;
    }
}



.games-g03-shirt h2 {
    font-size: 80px;
    color: #fff;
    margin-top: 10px;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
}

.games-g03-description {
    transform: rotateY(180deg);
    padding: 10px;
    background-color: #fff;
}

@media screen and (min-width: 400px) {
    .games-g03-description {
        padding: 15px;

        }
}
@media screen and (min-width: 576px) {
    .games-g03-description {
        padding: 5px;

        }
}
@media screen and (min-width: 768px) {
    .games-g03-description {
        padding: 20px;
        }
}

@media screen and (min-width: 992px) {
    .games-g03-description {
        padding: 30px 20px;
    }
}

.games-g03-description img {
    display: none;
    width: 80px;
}
@media screen and (min-width: 400px) {
    .games-g03-description img {
        display: block;
        max-height: 50px;
    }
}
@media screen and (min-width: 576px) {
    .games-g03-description img {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .games-g03-description img {
        display: block;
        max-height: 100px;
    }
}

@media screen and (min-width: 992px) {
.games-g03-description img {
    max-height: 100px;
    }
}

.games-g03-text {
    font-size: 10px;
}
@media screen and (min-width: 400px) {
    .games-g03-text {
        font-size: 12px;
    }
}
@media screen and (min-width: 576px) {
    .games-g03-text {
        font-size: 10px;
    }
}
@media screen and (min-width: 768px) {
    .games-g03-text {
        font-size: 10px;
    }
}
    
@media screen and (min-width: 992px) {
    .games-g03-text {
        font-size: 14px;
        line-height: 1.3;
    }
}

.read-more {
    font-size: 10px;
    padding: 5px 10px;
}
@media screen and (min-width: 400px) {
    .read-more {
        font-size: 12px;
        padding: 7px 12px;
    }
}
@media screen and (min-width: 576px) {
    .read-more {
        font-size: 10px;
        padding: 5px 10px;
                }
    }
@media screen and (min-width: 768px) {
    .read-more {
        font-size: 12px;
        padding: 15px 20px;
            }
    }
    


.card-face {
    rotate: -8deg;
    padding: 10px;
    background-color: #fff;
    border-style: solid;
    border-width: 2px;
    border-color: #FF7B7B;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    margin-left: auto;
}


.games-g03-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.games-g03-item.position-1 .card-back {
    rotate: 2deg;
}
.games-g03-item.position-2 .card-back {
    rotate: 8deg;
}


.games-g03-item.position-3 .card-face {
    rotate: -2deg;
}
.games-g03-item.position-3 .card-back {
    rotate: 8deg;
}

.forma-g03 {
    background-image: url(visualtreasure/vector-dir/bones-067e3c12c86f58.svg);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 10%;
    background-color: #5f0d24;
    padding: 120px 0;
}

.form-g03__title {
    margin-bottom: 60px;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
    text-align: right;
}

.form-g03 {
    background-color: #E07250a6;
    padding: 40px 20px;
    border-radius: 60px;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-left: auto;
    background-image: url(visualtreasure/other-dir/chips-067e3c12c86d1d.png);
    background-repeat: no-repeat;
    background-size: 38%;
    background-position: 98% 45px;
}
    
@media screen and (min-width: 576px) {
    .form-g03 {
        padding: 40px 40px 40px 40px;
        width: 70%;
    }
}

.input-userrowcomponent,
.textarea-userrowcomponent,
.input-g03,
.textarea-g03 {
    border: none;
    outline:none;
    width: 100%;
    height: 40px;
    border-radius: 29px;
    color: #ffffff;
    line-height: 1;
    padding: 10px 33px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-size: 18px;
    margin: 15px 0 25px 0;
    background-color: #E07250;
    box-shadow: #be8794 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

@media screen and (min-width: 991px) {
    .input-userrowcomponent,
    .textarea-userrowcomponent,
    .input-g03,
    .textarea-g03 {
        width: 80%;
    }
}

.textarea-g03 {
    height: 50px;
}

@media screen and (min-width: 576px) {
    .input-g03,
    .textarea-g03 {
        width: 100%;
        margin: 15px 0;
        }
}

.form-g03 label {
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    display: block;
    font-weight: 500;
    line-height: inherit;
}

.form-g03-check {
    color: var(--text-g01-color);
    margin-bottom: 30px;
    display: flex;
    gap: 14px;
}

.form-g03-check .form-g03-check-label  {
    display: inline-block;
    font-size: 16px;
}

.input-userrowcomponent::placeholder,
.textarea-userrowcomponent::placeholder {
    font-family: inherit;
    font-size: 20px;
    line-height: inherit;
    color: #ffffff;
}

.form-g03-check-label a {
    color: #f1eed3;
    font-weight: 500;
}

.form-g03-btn-wrap {
    display: flex;
    align-items: center;
    gap: 40px
}

.arrow-left span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 7px solid #ff00de;
    border-left: 7px solid #ff00de;
   
    margin: -2px;
    animation: arrow-left 1s infinite;
    float: left;
}
 
.arrow-left span:nth-child(2){
    animation-delay: -0.1s;
}
.arrow-left span:nth-child(3){
    animation-delay: -0.2s;
}
@keyframes arrow-left {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-0px,-0px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(0px,0px);
    }
}

.footer-g03 {
    color: red;
    background: linear-gradient(#5f0d24, #686565ad), conic-gradient(#ff2400 5%, #050505 5%, #050505 10%, #ff2400 10%, #ff2400 15%, #050505 15%, #050505 20%, #ff2400 20%, #ff2400 25%, #050505 25%, #050505 30%, #ff2400 30%, #ff2400 35%, #050505 35%, #050505 40%, #ff2400 40%, #ff2400 45%, #050505 45%, #050505 50%, #ff2400 50%, #ff2400 55%, #050505 55%, #050505 60%, #ff2400 60%, #ff2400 65%, #050505 65%, #050505 70%, #ff2400 70%, #ff2400 75%, #050505 75%, #050505 80%, #ff2400 80%, #ff2400 85%, #050505 85%, #050505 90%, #ff2400 90%, #ff2400 95%, #050505 95%, #050505 0);
    padding: 80px 0 20px 0;
}

.disclamer-g03 {
    background-color: #3a6e14;
    border: dashed 6px #f8e220;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    border-radius: 12px;
    text-align: center;
}

@media screen and (min-width: 576px) {
    .disclamer-g03 {
        flex-direction: row;
        padding: 47px;
        gap: 47px;    
    }
}

.disclamer-g03-text {
    color: #f4f8e9;
    line-height: 1.3;
    text-transform: uppercase;
}

.adult {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-g03-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 10px;
}

.footer-g03-item .logo-link-g03 {
    margin: 0 auto;
}

.politics {
    margin-top: 30px;
}

@media screen and (min-width: 576px) {
    .footer-g03-item {
        flex-direction: row;
    }

    .footerNav li:first-child,
    .footerNav li:last-child {
        margin-top: 20px;
    }
    .politics {
        margin-top: -30px;
    }
    .politics__item {
        flex: 1;
    }
    
    .politics__item:nth-child(3),
    .politics__item:nth-last-child(3) {
        margin-top: 70px;
    }
    
    .politics__item:nth-child(2),
    .politics__item:nth-last-child(2) {
        margin-top: 50px;
    }
}

.footerNav {
    padding: 60px 10% 30px 10%;
}

.footerNav li {
    flex: 1;
}

.footerNav__link {
    color: #f4f8e9;
    font-size: 16px;
    text-shadow: 0 0 5px #5eff00, 0 0 10px #ffffff, 0 0 40px #5eff00, 0 0 80px #5eff00, 0 0 90px #5eff00, 0 0 100px #5eff00, 0 0 150px #5eff00;
}

.politics__item a {
    color: #f4f8e9;
    font-size: 16px;
    text-shadow: 0 0 5px #0558f1, 0 0 10px #ffffff, 0 0 40px #0558f1, 0 0 80px #0558f1, 0 0 90px #0558f1, 0 0 100px #0558f1, 0 0 150px #0558f1;
}

.footerBottom-g03 {
    margin-top: 30px;
    text-align: right;
}

.footerBottom-g03 h3 {
    font-size: 17px;
    font-style: italic;
    color: #e4bc0a;
}

.comments-g03 {
    position: relative;
    background-image: linear-gradient(to bottom, transparent, #000000 10%, #000000 90%, transparent);
    margin-top: -120px;
    margin-bottom: -120px;
    z-index: 1;
}

.comments-g03__list {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

@media screen and (min-width: 991px) {
    .comments-g03__list {
        flex-direction: row;
    }
}

.comments-g03__item {
    display: flex;
    align-items: center;
    gap: 22px;
    background-color: #E07250a6;
    padding: 20px;
    border-radius: 60px;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
    flex: 1;
    flex-direction: column;
}

@media screen and (min-width: 576px) {
    .comments-g03__item {
        flex-direction: row;
        gap: 47px;
    }
}

.comments-g03-text {
    color: #ffffff;
    text-align: center;
}

.comments-g03-img__wrap {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: dashed 9px #a40395;
    background: #dfd20e;
    padding: 20px;
}

.comments-g03-img__wrap img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: solid 3px #a40395;
}

.doppad-bottom {
    padding-bottom: 240px;
}

.doppad-top {
    padding-top: 240px;
}

.nick {
    color: #dfd20e;
}

.nick::before,
.nick::after {
    display: inline-block;
    content: '';
    background-image: url(visualtreasure/vector-dir/icons-067e3c12c86e63.svg);
    width: 25px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.nick::before {
    margin-right: 10px;
}
.nick::after {
    margin-left: 10px;
}

.comments-ltr {
    transform: translate(-27%, -50%) !important;
}

.page-g03-cont {
    border: solid 1px #643001;
    padding: 20px;
    background-image: radial-gradient(ellipse at center, #c1b403 60%, #391f08 89%);
    border-radius: 50px;
}

.page-g03-in {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px;
    background: linear-gradient(40deg, #097525 30%, #082805);
    border-radius: 30px;
}

@media screen and (min-width: 768px) {
    .page-g03-in {
        flex-direction: row;
        gap: 47px;
    }
}

@media screen and (min-width: 991px) {
    .page-g03-in {
        padding: 80px;
    }
}


.circle {
    border-radius: 50%;
}

.page-g03-in2 {
    border-radius: 50%;
    background: linear-gradient(#442e3482, #442e3482), conic-gradient(#27a10d 5%, #050505 5%, #050505 10%, #ff2400 10%, #ff2400 15%, #050505 15%, #05050B 20%, #ff2400 20%, #ff2400 25%, #050505 25%, #050505 30%, #ff2400 30%, #ff2400 35%, #050505 35%, #050505 40%, #ff2400 40%, #ff2400 45%, #050505 45%, #050505 50%, #ff2400 50%, #ff2400 55%, #050505 55%, #050505 60%, #ff2400 60%, #ff2400 65%, #050505 65%, #050505 70%, #ff2400 70%, #ff2400 75%, #050505 75%, #050505 80%, #ff2400 80%, #ff2400 85%, #050505 85%, #050505 90%, #ff2400 90%, #ff2400 95%, #050505 95%, #050505 0);
}

@media screen and (min-width: 768px) {
    .page-g03-in2 {
        padding: 50px;
    }
}

.page-g03-text-wraper {
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-g03-title {
    font-size: 40px;
    background-color: #27a10d;
    border-radius: 12px;
    padding: 20px;
    border: solid 2px #68cb34;
    text-align: center;
    color: #ffffff;
}

.page-g03-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    color: #008AF8;
    border-radius: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    max-height: 450px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

@media screen and (min-width: 576px) {
    .page-g03-img {
        width: 300px;
        height: 300px;
        }
}

@media screen and (min-width: 768px) {
    .page-g03-img {
        width: 200px;
        height: 200px;
        }
}

@media screen and (min-width: 991px) {
    .page-g03-img {
        width: 300px;
        height: 300px;
        }
}


.page-g03-text p{
    color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    line-height: 1.3;
}
.page-g03-text p:nth-child(even) {
    background-color: #1d1d1d;
    border: solid 2px #6a6969;
}

.page-g03-text p:nth-child(odd) {
    background-color: #d70707;
    border: solid 2px #f35858;
}

.play-game .doppad iframe {
    width: 100%;
    height: 700px;
}

.cont-g03 {
    background-color: #111111;
    padding: 80px 0;
}

.cont-flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media screen and (min-width: 768px) {
    .cont-flex {
        flex-direction: row;
    }
}

.cont-item {
    flex: 1;
}

.cont-form {
    width: 100%;
}

.contacts-g03-list {
    text-align: right;
}

.contacts-g03-item__text {
    font-size: 20px;
    padding: 15px 20px;
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: dashed;
    border-width: 3px;
    border-color: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de;
    padding: 20px 10px;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ffffff, 0 0 40px #ff00de, 0 0 80px #ff00de, 0 0 90px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
    margin-bottom: 1em;
}

.contacts-g03-item__text svg {
    width: 24px;
    margin-right: 15px;
}


.section-priv {
    background-color: #111111;
    color: #ffffff;
    padding: 97px 0px;
}

.content-block li {
    margin-left: 30px;
    list-style: none;

}

@media (max-width: 767px) {
    .games-g03-list {
        flex-direction: column !important;
    }
    .section-priv h1 {
        font-size: 22px;
    }
}


    .games-g03-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6; 
        overflow: hidden;
        text-overflow: ellipsis;
    }


