@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');
@import url("https://fonts.googleapis.com/css?family=Sancreek");

:root {   
  --colorWhite: #e8eaeb;
  --colorDark: #180707;
  --white:#fff;
 --bg-section-1:#1b1f24;
 --bg-section-2:#b68b5a;
 --bg-section-3:#a6896c;
 --colorBorder-1:#6a4b35;
 --colorBorder-2:#8b4513;
 
 --hover:#ffcc00;

}

body{  
  direction: ltr;
  font-family: 'Changa', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;    
  line-height: 1.5; 
    
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 200ms linear;
}
input:focus, textarea:focus, select:focus {
  outline: none;
}

img, video{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  list-style: none;   
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
h2{
font-size: clamp(21px,4vw,36px)
}

.btnWest-1 {
  display: block;
  width: fit-content;
  text-align: center; 
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1b1f24;
  font-size: 16px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  
}

.btnWest-1:hover {
  background: linear-gradient(135deg, #ff8c00, #ffd700);
}
.btnWest-2 { 
  display: block;
  width: fit-content;
  text-align: center;
  background: #8b4513;
  color: #ffd700;
  font-size: 16px;
  padding: 10px 40px;
  border-radius: 10px;
  border: 4px solid #ffd700;
  position: relative;
  cursor: pointer;
}
.btnWest-2:hover::after {
  content: '★';
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  animation: sparkle 1s infinite;
}

@keyframes sparkle {
  0% { opacity: 1; }
  100% { opacity: 0; }
}


.btnWest-3{
  text-align: center;
  width: fit-content;
  display: block;
 background-color: #a66b3f;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
} 



.btnWest-3:hover {
   background-color: #814c2c;
}

.btnWest-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: #1b1f24;
  color: #fff;
  padding: 10px 30px;
  border: 2px solid #ff4500;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  
}

.btnWest-4:hover:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: #ff4500;
  animation: bulletTrail 0.5s ease-in-out forwards;
}
@keyframes bulletTrail {
  0% { left: 100%; }
  100% { left: -100%; }
}


.btnWest-5 {
  width: fit-content;
  display: block;
  text-align: center;
 background: linear-gradient(90deg, #8b0000, #ff4500);
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.btnWest-5::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: yellow;
  border-radius: 50%;
  animation: flicker 0.2s infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.btnWest-5:hover {
  background: linear-gradient(90deg, #ff4500, #8b0000);
  color: #fff;
  box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6347;
}

.btnWest-5:hover::before {
  animation: fuse-flicker 0.1s infinite alternate;
}


.containerLol {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
 
}
.header {
  text-align: center;
  background-color: #1b1f24; 
}  


.top-nav {
  background-color: var(--colorBorder-1); 
  padding: 10px;
}

.top-nav ul {      
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 20px;  
}
.m-t20{
  margin-top:  18px;
}

.top-nav ul li a {  
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  padding: 5px 10px;
  transition: color 0.3s;
}

.top-nav ul li a:hover {
  color: var(--hover); 
}
.nav-icon{
  display: block;
  fill: #fff;
  width: 25px;
  height: 25px;
  transform: translateZ(0);
  transition: all 0.3s;
}

.top-nav ul li a:hover .nav-icon{
  fill: var(--hover);
  animation-name: hvr-icon-up;
  -webkit-animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;

}
@keyframes hvr-icon-up {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
25%, 75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}
}


.logo-section {
  position: relative;
  background-color: #F4E1C1; 
  padding: 20px 0 0;
  border-top: 2px dashed #9C1313; 
  border-bottom: 2px dashed #9C1313;
}

.logo-section .logo {
  position: relative;
  display: inline-block; 
  font-size: 24px;
  font-weight: bold;
  padding: 0 30px;
  color:  #b85b3f; 
  font-family: 'Sancreek', cursive;
}
.logo span{  
  display: block;
  padding: 0 0.3em;
  position: relative;
  
}

.logo::before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  border-bottom: 2px dashed #9C1313; 
  transform: translateX(-50%);
  width: 100%;
  height: 30px;
  padding: 0 10px;
  background-color: #F4E1C1; 
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.logo span::after,.logo span::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;  
  top: 50%;
  width: 20px;
  border-bottom: 3px solid #b85b3f;
}
.logo span::after{
left: -20px;
}
.logo span::before{
  right: -20px;
}

.header-bottom {
  padding: 30px;
  background-color:var(--colorBorder-1); 
}

.heroLol{
  padding: 200px 0 60px;
  color: #fff;
}
.imgBgTop{
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-image: linear-gradient(0deg, black, transparent), url(pixelpantry/dir-bg/bg-dark-068516f24c288e.jpg);

}

.filtr,.effect{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.45px) drop-shadow(0px 0px 0px #fff1);
}
.filtr:after, .effect:after {
	content: '';
  position: absolute;
	width: 120%;
	height: 100%;
	top: 0;
	left: 0;
	padding-left: 100px;
	opacity: 0.5;
	animation: film-scratch 0.45s steps(1) infinite;
	background: repeating-linear-gradient(90deg, #0002 0 2px, transparent 4px 37vmin);
}

.effect:after {
	left: 30%;
	animation: effect-scratch 2s infinite;
}

.grain {
	width: 100%;
	height: 100%;
}

.grain:after {
  position: absolute;
	content: '';
	width: 110%;
	height: 110%;
	top: -5%;
	left: -5%;
	opacity: .25;
	background-image: 
		repeating-conic-gradient(#000 0%, transparent .00003%, transparent .0005%, transparent .00095%),
		repeating-conic-gradient(#000 0%, transparent .00005%, transparent 0.00015%, transparent 0.0009%);
	animation: grain 0.5s steps(1) infinite;
	filter: drop-shadow(0px 0px 1px black);
}

@keyframes grain {
	0%, 100% { transform: translate(0, 0); }
	10% { transform: translate(-1%, -1%); }
	20% { transform: translate(1%, 1%); }
	30% { transform: translate(-2%, -2%); }
	40% { transform: translate(3%, 3%); }
	50% { transform: translate(-3%, -3%); }
	60% { transform: translate(4%, 4%); }
	70% { transform: translate(-4%, -4%); }
	80% { transform: translate(2%, 2%); }
	90% { transform: translate(-3%, -3%); }
}

@keyframes film-scratch {
	0%, 100% { transform: translateX(0); opacity: 0.5; }
	10% { transform: translateX(-1%); }
	20% { transform: translateX(1%); }
	30% { transform: translateX(-2%); opacity: 0.75; }
	40% { transform: translateX(3%); }
	50% { transform: translateX(-3%); opacity: 0.5; }
	60% { transform: translateX(8%); }
	70% { transform: translateX(-3%); }
	80% { transform: translateX(10%); opacity: 0.25; }
	90% { transform: translateX(-2%); }
}

@keyframes effect-scratch {
	0% { transform: translateX(0); opacity: 0.75; }
	10% { transform: translateX(-1%); }
	20% { transform: translateX(1%); }
	30% { transform: translateX(-2%); }
	40% { transform: translateX(3%); }
	50% { transform: translateX(-3%); opacity: 0.5; }
	60% { transform: translateX(8%); }
	70% { transform: translateX(-3%); }
	80% { transform: translateX(10%); opacity: 0.25; }
	90% { transform: translateX(20%); }
	100% { transform: translateX(30%); }
}
.heroLol-title{
  font-size: clamp(25px,4.3vw,50px) ; 
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}
.heroLol-text{
font-size: clamp(17px,3vw,25px) ; 
margin-top: 40px;
font-style: italic;
 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.heroLol_content{
  position: relative;
  text-align: end;
}
.sectionLol{
  padding: 60px 0;
}
.darkSection{
  background-color: var(--bg-section-3);
}
.about-us-wild-west {
  background: linear-gradient(to bottom, #f8f1e0, #d9c2a0);
  padding: 50px 20px;
  border: 5px solid var(--colorBorder-1);
  border-radius:  4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  
  color: #4b3d2a;
}

.about-us-wild-west__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction:  row-reverse;
  gap: 20px;
}

.about-us-wild-west__poster {
  background: url(pixelpantry/dir-bg/bg-light-068516f24c27bc.jpg) no-repeat center/cover;
  width: 40%;
  padding: 20px;
  text-align: center;
  border: 1px  solid var(--colorBorder-1);
  border-radius: 4px;
 
}

.about-us-wild-west__info {
  flex: 1;
  
}
.about-us-wild-west__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.about-us-wild-west__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

}



.about-us-wild-west__btn-secondary {
  background-color: transparent;
  color: #a66b3f;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #a66b3f;
  border-radius: 5px;
  transition: background 0.3s;
}

.about-us-wild-west__btn-secondary:hover {
  background-color: #a66b3f;
  color: #fff;
}

.section-title {
  text-align: center;  
  position: relative;
  padding-bottom: 30px;
}
.title-container{
 display: inline-block;
}

.title-text {
 position: relative;  
  color: #4b3d2a;
  padding: 0 30px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0; 
  display: block;
}
.title-text::before,.title-text::after{
  
  content: "★";    
  display: block;
  position: absolute;  
  width: 30px;
  top: 0;
  color: #d17e3f;
}
.title-text::before{
  left: 0;
}
.title-text::after{
  right: 0;
}
.title-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d17e3f, #c09a61);
  margin: 10px auto 0;
  border-radius: 2px;
  position: relative;
}


.title-underline:before {
  content: "";
  width: 50px;
  height: 3px;
  background: #4b3d2a;
  position: absolute;
  border-radius: 2px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.advantages {
  background: linear-gradient(180deg, #f4e8c1, #8b4513);
}
.rowLol{
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.colLol {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.col{
  flex-grow: 1;
  max-width: 100%;
  flex-basis: 0;
}
.benefit-item{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--colorWhite);
  border: 1px solid var(--colorBorder-1);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: all 0.3s;
  
}
.box-tex{
  font-size: 16px;
  padding: 20px; 
  color: #4b3d2a; 
  text-align: center;
  border-top: 2px solid #8b4513; 
 
}
.benefit-imgBox{
  width: 100%;
  height: 250px;
}
.imgBox{
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.benefit-item:hover{
  animation-name: hvr-icon-up;
  -webkit-animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.how-to-play {
  background-image:url(pixelpantry/dir-bg/opacity_bg-068516f24c29b4.png),linear-gradient(to bottom, #f8f1e0, #d9c2a0); 
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}


.steps-container {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;   
  margin: 0 auto;
}

.step {
  background: var(--colorWhite);
  border: 1px solid #8b4513; 
  padding: 20px;
  border-radius: 4px;
  min-height: 100px;
  transition: transform 0.3s, background-color 0.3s;
  
}


.step:hover {
  transform: translateY(-10px);
  background-color: #fcebc4; 
 
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorBorder-1); 
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon img {
  width: 70%;
  height: auto;
}

.step h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #8b4513;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.step2-box{
 
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row-reverse;
}
.flexElement{
  flex: 1;
}
.step2_icon{
  display: block;
  margin: 15px;
  margin-top: 0;
  margin-bottom:0;
  margin-left: 0;
  float: left;
  background-color:transparent;
  border-radius: 0;
  box-shadow:none;
  img{
    width: 100%;
  }
}
.imgSection{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  img{
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
  }
}
.step-list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card-list{
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  
}
.cardLol{
  position: relative;
  padding: 30px;
  transition: all 150ms ease-in-out;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.cardLol_link{
  position: absolute;
  inset: 0;
}
.card-border{
  border-bottom-left-radius: 8px 255px;
  border-bottom-right-radius: 225px 8px;
  border-top-left-radius: 255px 8px;
  border-top-right-radius: 8px 225px;
  border-color: var(--colorDark);
  border-style: solid;
  border-width: 4px;
}
.paper{
  background-color: var(--colorWhite);
  border: 4px solid var(--colorDark);
}
.bigShadow{
   box-shadow: 12px 12px 0px 0px var(--colorDark);
}
.cardLol-img{
  width: 100%;
  height: 250px;
  object-fit: cover; 
 
}
.cardLol-title{
  font-size: clamp(21px, 4vw, 25px);
  text-align: center;
  color: var(--colorBorder-1);
  font-family: 'Sancreek', cursive;
}
.card-list:has(li:hover) li:not(:hover) {
   filter: blur( 5px);
}

.footerLol{
  color: var(--colorWhite);
  padding: 50px 0 20px;
  background-color: var(--colorBorder-1);
}
.box-copyright{
  display: flex; 
  align-items: center;
  gap: 8px;  
  flex-wrap: wrap;
  justify-content: center;
   

}
.flex-row{
  flex-direction: row-reverse;
}
.col:first-child .footerLol-nav{
 text-align: end !important;
}
.footerLol_img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  img{
    height: 200px;
    width: auto;
    object-fit: contain;
  }

}
.footerLol-nav{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  
}
.footerLol-nav li a{
  font-size: 16px;
}
.footerLol-nav li a:hover{
  color: var(--hover);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.mobil{
  margin-bottom: 10px;
  display: none;
}

.disclaimer-section {
  background: linear-gradient(145deg, #ff7700, #ff5733); 
  color: var(--white);
  padding: 48px 0;
  border-top: 5px solid var(--colorBorder-1); 
  border-bottom: 5px solid var(--colorBorder-1);
  position: relative;
  overflow: hidden;
  text-align: center;
}


.disclaimer-section:before,
.disclaimer-section:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: url(pixelpantry/tematik/cowboy-mult-068516f24c2eba.svg) no-repeat center;
  opacity: 0.2;
}

.disclaimer-section:before {
  top: -50px;
  left: -50px;
  transform: rotate(45deg);
}

.disclaimer-section:after {
  bottom: -50px;
  right: -50px;
  transform: rotate(-45deg);
}
.disclaimer-container{
  position: relative;
}

.disclaimer-title {  
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  color: #8b0000; 
  text-shadow: 2px 2px #e4ddd8;
}


.disclaimer-text {
  font-size: 1.2rem;
  line-height: 1.6; 
  padding: 0 15px;
}
.flex-col{
  display: flex;
  flex-direction:  column;
}
.gap-big{
  gap:  48px;
}
.page-contentLol{
  min-height: 350px;
}
.contentLol-img{  
  object-fit: contain;    
  border-radius: 4px;
  float: left;
  width: 40%;
  margin: 15px;
  margin-top: 0;
  margin-left: 0;
  
}
.border-smol{
  border-color: var(--colorDark);
  border-style: solid;
  border-width: 2px;
  border-bottom-right-radius: 225px 8px;
  border-top-left-radius: 255px 8px;
  border-top-right-radius: 8px 225px;
}
.contentLol{
  font-size: 17px;
  
 p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
}
.contentLol ul,ol{
  list-style: inside;
}
.playingLol{
  height: 450px;	
  width: 85%;  
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border:  1px solid var(--colorBorder-1);
  border-radius: 4px;
 
  iframe{
    height: 100%;
    width: 100%;
    border:none
  }
}
.age-imgLol{
  display: flex;
  align-items: center;
  justify-content: center;
  
  img{    
    height: 50px;
    object-fit: contain;
  }
}
.footerLol-bottom{
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  align-items: center;
  gap: 25px;justify-content: center;
}
.privacyLol{
 word-break: break-word;
 
}
.privacyLol p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacyLol h1{
  font-weight: 500;
  text-align: center;
  margin-bottom:  21px;
}
.privacyLol h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:15px ;
}
.privacyLol table,.privacyLol a{
  word-break: break-word;
  color: inherit;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;  
}

.contact-item {
  margin: 15px;
  text-align: center;
  color: #fff;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1b1f24;
  text-shadow: 1px 1px var(--hover);
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--colorDark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f8f1e0, #d9c2a0);
}

.form-input,
.form-textarea,.input-userfield--input,.textarea-userfield--input {
  width: 100%;
  padding: 10px;  
  outline: none;
  font-size: 1rem;
  border: 2px solid var(--colorDark);
  border-radius: 8px;
  background-color: var(--colorWhite);
}
.form-btn{
  margin: 0 auto;
}

.check-box{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--colorDark);
  margin-bottom: 20px;
}

.wanted-form-section {  
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.poster-frame {   
  width: 65%; 
}

.poster-frame h3 {  
  font-size: 2rem;
  margin-bottom: 20px;
  color: #8b4513;
}

.poster-frame input::placeholder,.poster-frame textarea::placeholder {
  color: #8b4513;
}
.form-container form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.wanted-form-section::before {
  content: '';
  position: absolute;
  top: 6%;
  left: -2%;
  width: 300px;
  height: 300px;
  background: url(pixelpantry/tematik/svg_cowboy-068516f24c2dda.svg ) no-repeat center;
  background-size: contain;
  opacity: 0.3;
  transform: rotate(25deg);
  pointer-events: none;
  animation: move-left 10s infinite linear;
}

.wanted-form-section::after {
  content: '';
  position: absolute;
  bottom: -4%;
  right: -2%;
  width: 300px;
  height: 300px;
  background: url(pixelpantry/tematik/gold-stone-068516f24c2f7b.svg ) no-repeat center;
  background-size:  contain;
  opacity: 0.3;
  transform: rotate(-25deg);
  pointer-events: none;
  animation: move-right 10s infinite linear;
}


@keyframes move-left {
  0%, 100% {
    transform: translateX(-10px) rotate(25deg);
  }
  50% {
    transform: translateX(10px) rotate(25deg);
  }
}

@keyframes move-right {
  0%, 100% {
    transform: translateX(10px) rotate(-25deg);
  }
  50% {
    transform: translateX(-10px) rotate(-25deg);
  }
}
.timBox{
  flex-direction: column;
}
.timBox .box-tex{
  border: none;
}
.timBox .benefit-imgBox{
  padding:  0px;
}
.timBox .imgBox{
  border: 1px solid var(--colorBorder-1);
}




  
@media (max-width: 575px){
  .about-us-wild-west{
    padding: 50px 15px;
  }
  .about-us-wild-west__poster{
   width: 100%;
  }
  .about-us-wild-west__description{
    font-size: 16px;
  }
  .darkSection .containerLol{
    padding: 0;
  }
  .about-us-wild-west__buttons a{
    width: 100%;
  }
  .flex-row{
    gap: 20px;
    flex-direction:  column;
  }
  .contact-form,.poster-frame{
    padding: 50px 10px;
  }
  .contact-item h3,.poster-frame h3{
    font-size: 1.3rem;
  }
  .bigShadow{
      box-shadow: 5px 5px 0px 0px var(--colorDark);
  }
  .cardLol{
   padding: 30px 20px;
  }
  .disclaimer-text{
    padding: 0;
    font-size: 1.1rem;
  }
  .footerLol-nav{
    text-align: center;
  }
  
}
@media (min-width: 575px) and (max-width: 992px){
  .about-us-wild-west__poster{
   width: 80%;
  }
   .col_lol-sm-12 {
     width: 100%;
  }
  .col_lol-sm-6{
    width: 50%;
  }
  .col_lol-sm-2{
    width: 25%;
  }
  .col_lol-sm-4 {
    width: 33.33333333%;
  }
  .contentLol{
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px){
  .steps-container,.card-list {
        grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 768px){
 .heroLol{
  padding: 100px 0 60px;
 }
 .steps-container,.card-list {
      grid-template-columns: repeat(1, 1fr);
  }
  .mobil{
    display: flex;
  }
  .dis-none{
    display: none;
  }
  .contentLol-img{
  float: none;
  width:100%;
  margin: 0 0 20px 0;  
  }
  .playingLol{
    width: 100%;
    height: 300px;
  }
  .contact-form ,.poster-frame{
    width: 100%;
  }
  .top-nav ul li a {
    font-size: 15px;
  }
} 


@media (max-width: 992px){ 
.top-nav ul{
  justify-content: center;
}
.about-us-wild-west__container{
  flex-direction:  column;
}
.about-us-wild-west__poster{
  margin: 0 auto;
  height: 300px;
  
}
.step2-box{
  flex-direction: column;
}
.imgSection{
  height: 300px;
}
 
}
@media (min-width: 992px){ 
 .col_lol-md-4 {
      width: 33.33333333%;
  }
  .col_lol-md-6{
    width: 50%;
  }
  .col_lol-md-2{
    width: 25%;
  }
} 


@media (min-width: 1200px){   
  .col_lol-lg-4 {
    width: 33.33333333%;
  }
  .col_lol-lg-6{
    width: 50%;
  }
  .col_lol-lg-2{
    width: 25%;
  }
 
}


