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

:root {  
  --white: #fff;
  --whiteTen: #f4f9f9;
  --dark-color: #060606;
  --flex-basis-1: 100%;
  --flex-basis-2: calc((100% - 2* 30px) / 2);
  --lightBox-bag-1:#F5E6CC;
  --lightBox-bag-2:#F2D8B3;
  --lightBox-bag-3:#E6E2D3;
  --lightBox-bag-4:#C8B8A5;
  --lightBox-bag-5:#D2C4AD;
  --border-color-1:#B87333;
  --border-color-2:#8B4513;
  --border-color-3:#A0522D;
  --border-color-4:#B87333;
  --border-color-5:#DAA520;
  --how-to-play-bg-1:#d9b77d;
  --how-to-play-bg-2:#a87954;
  --how-to-play-bg-3:#78909C;
  --how-to-play-bg-4:#4C6B3C;
  --how-to-play-bg-5:#6E8F51;
}

body{  
  direction: ltr;
  font-family: 'IBM Plex Sans Condensed', 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; 
  position: relative;
  padding: 10px 20px;
  background-color: #8b4513; 
  color: #fff;
  border-radius: 3px;
  border: 2px solid #4b2e2e;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s;
  
}
.btnWest-1::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background-color: rgba(255, 248, 220, 0.2); 
  transform: skewX(-75deg);
  transition: left 0.5s;
}
.btnWest-1:hover{
  background-color: #a0522d;
}

.btnWest-1:hover::after {
left: 0;
}

.btnWest-2 { 
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 16px;
  padding: 12px 24px;
  background-color: #b22222; 
  color: #fff; 
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
  border: 2px solid #8b0000;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.1s;
}

.btnWest-2:hover {
  transform: scale(0.95); 
  box-shadow: 0 0 10px #8b0000;
}



.btnWest-3{
  text-align: center;
  width: fit-content;
  padding: 10px 20px;
  background-color: #d2b48c; 
  color: #000;
  font-size: 16px;
  font-weight: bold;  
  border: 3px solid #8b4513; 
  box-shadow: inset -3px -3px #cd853f, inset 3px 3px #fff8dc;
  cursor: pointer;
  transition: background-color 0.3s;
} 

.btnWest-3:hover{
  background-color: #c9a77a; 
  box-shadow: inset 3px 3px #8b4513, inset -3px -3px #cd853f; 
  transform: translateY(2px); 
}

.btnWest-4 {
  display: block;
  text-align: center;
  width: fit-content;
 padding: 10px 20px;
  background-color: #f4a460; 
  color: #000;
  font-size: 16px;
  font-weight: bold; 
  border: 2px dashed #8b4513; 
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  
}
.btnWest-4::before, .btnWest-4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #8b4513;
}

.btnWest-4::before {
  top: 0;
  left: 0;
  animation: slide-horizontal 2s infinite linear;
}

.btnWest-4::after {
  bottom: 0;
  left: 0;
  animation: slide-horizontal-reverse 2s infinite linear;
}

@keyframes slide-horizontal {
  0% { left: 0; }
  100% { left: 100%; }
}

@keyframes slide-horizontal-reverse {
  0% { right: 0; }
  100% { right: 100%; }
}

.btnWest-4:hover {
  transform: scale(1.05); 
}


.btnWest-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background-color: #8b4513;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius:  3px;
  transition: transform 0.2s ease;
}

.btnWest-5:hover {
  transform: scale(1.1);
}

.wild-west-section{
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(imagevault/background/bg-light-068a4788ae0955.jpg);
}
.wild-west-section::before,
.wild-west-section::after {
  content: '';
  position: absolute;
  bottom: 0; 
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.7; 
  z-index: 1;
}

.wild-west-section::before {
  left: 0;
  border-width: 0 50vw 150px 0; 
  border-color: transparent transparent var(--border-color-5) transparent; 
}

.wild-west-section::after {
  right: 0;
  border-width: 0 0 150px 50vw; 
  border-color: transparent transparent var(--border-color-5)  transparent; 
}
.bgSection{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(imagevault/background/bg-dark-068a4788ae09d0.jpg);
}

.tumbleweed {
  position: absolute;
  bottom: 10px; 
  left: -100px; 
  width: 100px; 
  height: 100px;
  background-image: url("tumbleweed.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  animation: roll 10s linear infinite, moveAcross 10s linear infinite;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveAcross {
  0% {
    left: -100px;
  }
  100% {
    left: 100%; 
  }
}
.container{
  margin-left: auto;
  margin-right: auto;   
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.wild-west_logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: calc(1.5rem + 3vw);
  font-weight: 700;
  color: #7C4A27;
  font-family: Rye, cursive;
  text-shadow: 2px 2px #ffe4ba;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  img{
    height: 100px;
    width: auto;
    object-fit: contain;
  }
}

.overley{
  position: absolute;
  inset: 0; 
  background-color:#b5b2b263;
 
}
.top-wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 30px 0;
  z-index: 2;
}
.top-text{
  font-size: 30px;

  color: var(--whiteTen);
  text-shadow: 1px 1px #000000;
}
.menu-header{
  padding: 10px 0;
  border-top: 2px solid #D9B77D;
  border-bottom:  2px solid #D9B77D;
  background: #060606;
  
}
.west-menu{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.west-menu li a{
  color: #fff;
  text-shadow: 0 3px 6px #000; 
  padding: 10px 20px;
  font-weight: 600;
  display: block;
  font-size: 18px;
  border-radius:  3px;
  background: transparent;
  transition: all 0.35s ease-in-out;
}
.west-menu li:hover a{
  background-color: #8b4513eb;  
}
.top-imgHead{
   position: absolute;   
   top: -20px; 

  img{    
    height:90px; 
    width: 80px;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.2s ease-in-out;
  }
}
.top-imgHead:hover img{  
  transform: scale(1.1);
}
.head-left{
left: 0;
}
.head-right{
  right: 0;
}
.west-nav{
  width: 100%;
  position: relative;
  padding-left: 80px;
  padding-right: 80px;
}
.lightBox{
  padding: 80px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color:var(--lightBox-bag-5);
  background-image: url(imagevault/background/opacity_bg-068a4788ae0a4b.png);
}
.row-flex{
  
  display: flex;
  flex-direction: row;
}
.flex-rowWest{
  display: flex;
  flex-direction: row-reverse;
}
.gap30HJ{
  gap: 30px;
}
.flex-element{
  flex: 1;
}
.alCenter{
  align-items: center;
}
.title-box{
  padding: 16px 0;
  margin-bottom: 50px;
  text-align: left;
  border-bottom: 1px  dashed #060606;
  border-top: 1px  dashed #060606;
  h2{
    font-weight: 700;
    color: #060606;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #ffffff;
  }

}
.textWest{
  color: #060606;
  font-size: 17px;
  font-style: italic;
  p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
}
.about-imgBox{
  width: 100%;
  height: 400px;
  background:var(--border-color-5); 
  padding:  18px;  
  overflow: hidden;
  border-radius: 5px;
  box-shadow: rgb(0 0 0 / 25%) 0 54px 55px, rgb(0 0 0 / 12%) 0 -12px 30px, rgb(0 0 0 / 12%) 0 4px 6px, rgb(0 0 0 / 17%) 0 12px 13px, rgb(0 0 0 / 9%) 0 -3px 5px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.videoWestBox{
   background-color: #000;
    border: 1px solid #242424;
    box-shadow: 0 0 1em .2em #242424;
    margin: auto;
    position: relative;
    overflow: hidden;
    width: 56%;
    z-index: 2;
    border-radius: 5px;
    height: 350px;
    video {
    height: 100%;
    position: absolute;
    width: 100%;
    object-fit: cover;
    }
}
.how-to-play {
    background-color: var(--how-to-play-bg-5); 
    padding: 50px 0;
    text-align: center;
}



.steps {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  background-color: #FFF3E0;
  background-image: url(imagevault/background/opacity_bg-168a4788ae0a68.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items:  flex-start;
  width: 250px;  
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-10px);
}



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


.icon {
    width: auto;
    height: 64px;
    animation: icon-bounce 1s ease-in-out infinite alternate;
}


@keyframes icon-bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
.hr{
  height: 100px;
  border: 0;
  background-image: url(imagevault/assets/borders_long-068a4788ae0aab.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 30px auto;
  width: 60%;

}
.west-game-list{
  display: flex;
  flex-wrap: wrap; 
  margin: -15px;
  justify-content: center;
}
.west-game_item{
  margin: 15px;
  display: flex; 
  flex-basis: 100%; 
  flex-direction:  row;
  background-color: #FFF3E0;
}
.border{
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 0px dashed #D9B77D;
}
.west-game_content{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.west-game_boxImg{
  position: relative;
  display: block;
  img{
    height: 500px;
    width: 100%;
    object-fit: cover;
  }
}
.triangle-overlay::before,
.triangle-overlay::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 41%;
    opacity: 0.8;
    background: var(--border-color-5) ; 
}


.triangle-overlay::before {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}


.triangle-overlay::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.hex-label-icon-lg{
  display: inline-block;
  overflow: hidden;
  position: relative;
  height: 8em;
  width: 8em;
  overflow: hidden;
  opacity: 0.8;
  background: var(--border-color-5);
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  
}
.hex-label-mask{
  height: 0;
  left: -5%;
  overflow: hidden;
  padding-bottom: 110%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) skew(20deg, 20deg);
  width: 110%;
}
.content-translator{
    position: absolute;
    top: 50%;
    transform: rotate(45deg) scale(.7, 1.4);
    width: 100%;
}
.label{
  color: var(--white);
    font-size: 1.1em;
    font-weight: 700;
    left: 50%;
    line-height: 1.2em;
    margin-top: 0;
    opacity: 1;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: margin-top .2s ease-in, opacity .2s ease-in;
    width: 75%;
}
.arr{
  display: flex;
  justify-content: center;
  padding-top: 0.2em;
    svg{
    height: 1.5em;
    width: 2.8em;
  }
}
.hover{
  margin-top: -100%;
  opacity: 0;
}

.west-game_content:hover .label{
  margin-top: 100%;
  opacity: 0;
    
}
.west-game_content:hover .hover{
  margin-top: 0;
    opacity: 1;
    
}
.color-1{
  fill: var(--white);
}
.flex-colMN{
  display: flex;
  flex-direction:  column-reverse;
}
.box-footer{
  position: relative;
  padding: 30px 0;
  background-image: url(imagevault/background/opacity_bg-068a4788ae0a4b.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
.box-footer::before{
  position: absolute;
  content: "";
  inset: 0;
  background-color: #060606e3;
}
.relet{
  position: relative;
  overflow: hidden;
}
.box-copyright{
  display: flex; 
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center; 

}
.gap20{
  gap: 20px;
}
.age-img{
  display: flex;
  align-items: center;
  justify-content: center;
  
  img{    
    height: 50px;
    object-fit: contain;
  }
}
.footer-menuLK{  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.footer-menuLK li a{
  opacity: 0.6;
  color: var(--white);
}
.footer-menuLK li a:hover {
  opacity: 1;
}
.footer-logo{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.6;
  justify-content: center;
  transition: all 0.5s ;
  margin-bottom: 30px;
  font-size: 35px;text-align: center;
  img{
    height: 90px;
    width: auto;
    object-fit: contain;
  }
}
.footer-logo:hover{
  opacity: 1;
}
.privacy-content{
 word-break: break-word;
 color: #060606;
}
.privacy-content p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacy-content h1{
  font-weight: 500;
  text-align: center;
  margin-bottom:  28px;
}
.privacy-content h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:20px ;
}
.privacy-content table,.privacy-content a{
  word-break: break-word;
  color: inherit;
}
.page-title{ 
  margin-bottom: 20px;
  color: var(--dark-color);
  text-shadow: 2px 2px 0 #ffffff;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  
}
.gap50HJ{
  gap: 50px;
}
.contact-item {
  flex-grow: 1;
  flex-basis: 250px;
  background-color: #d3a07d;
  padding: 10px 20px;
  border: 0px  dashed var(--border-color-5);
  border-radius:  3px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
  display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  p{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  }
}
.contact-item:hover{
  transform: translateY(-10px);
}
.form-btn{
  margin: 0 auto;
  display: block;
}

.contact-item a ,.contact-item span{
  color: #060606;
  font-size: 17px;
  font-weight: 500;
    
}
.contact-form-container {
  display: flex;
  justify-content: center;
}

.cowboy-hat-form {
  position: relative;
  background-color: #fff8dc; 
  padding: 20px;
  width: 60%;
  border: 0px  dashed var(--border-color-5);
  border-radius:  3px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  padding-top: 100px;
}
.cowboy-hat-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(imagevault/assets/interface-068a4788ae0c3c.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  opacity: 0.1; 
  pointer-events: none; 
}

.contact-form label {
  display: block;
  color: #4d3d2f;
}
.check-box{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #4d3d2f;
  margin-bottom: 20px;
}

.formInputLK, .formTextarea,.input-form_wrapperinput,.textarea-form_wrapperinput {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #4d3d2f;
  background-color: #fff7e6;
}

.send-button {
  background-color: var(--border-color-5);
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.disclaimer-section {
  position: relative;
  background-color: #ffcc66; 
  color: #8b0000; 
  padding: 40px 0;  
  border-top: 4px solid var(--border-color-5); 
  border-bottom: 4px solid var(--border-color-5);
  text-align: center; 
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


.disclaimer-text {
  font-size: 1.1em;    
  font-weight: bold;
  margin: 0;
  animation: shake-text 3s infinite; 
  -webkit-animation: shake-text 3s infinite;
  h2{
      text-transform: uppercase;
  }
  
}


.disclaimer-section::before,
.disclaimer-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 100px;
  height: 100px;
 
  background-image: url(imagevault/assets/gold-stone-068a4788ae0c09.svg); 
  background-size: contain;
  opacity: 0.5;
  animation: dust-spin 5s linear infinite; 
  -webkit-animation:dust-spin 5s linear infinite ;
  
}


.disclaimer-section::before {
  left: -50px;
  transform-origin: center;
}

.disclaimer-section::after {
  right: -50px;
  transform-origin: center;
}


@keyframes dust-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@keyframes shake-text {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}
.westPage-content{
  font-size: 17px;
  color:#060606;
  font-style: italic;
 p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
}
.westPage-content ul,ol{
  list-style: inside;
}
.westPage-play iframe{
  width: 100%;
  height: 100vh;
  border:none
}

.flex-element2{
  flex: 2;
}
.westImg-box{
  width: 100%;
  height: 100%; 
  img{
    width: 100%;
    height: 316px;
    object-fit: contain;
  }
}
.west-infa{
  height: 100%;
}
.west-infa_element{
  
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding:18px;
  color: #060606;
  border: 15px solid var(--border-color-5);
  background-color: #FFF3E0;
  border-radius: 5px;
  width: 100%;
  height: calc(50% - 0.125rem);
  transition: transform 0.3s;
  svg{
    width: 25px;
    height: 25px;

  }
}
.west-infa_element:hover{
  transform: translateY(-10px);
}

.main-formWest .cowboy-hat-form{
  width: 100%;
}
.factionimage{
  max-width: 750px;
  position: absolute;
  object-fit: cover;
  object-position: top;
  max-height: 600px;
  bottom: 0;
  z-index: 1;
  width: auto;
  height: auto;
 
}
.flash{  
  opacity: 0;  
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.flash.visible{
  animation-name: flash;
  -webkit-animation-name: flash;
}
.btn-hero{
  display:  block;
}

@keyframes flash {
  0% {
    inset-inline-end: -250px;
    opacity: 0;
}
100% {
    inset-inline-end: 0;
    opacity: 1;
}
}
.form-titleWin{
  width: 80%;
  text-align: center;
}

.reviews-section {
  background-image: url(imagevault/background/bg-light-168a4788ae0978.jpg); 
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; 
  padding: 50px 0;
  position: relative;
  overflow: hidden;   
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}


.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center center;
  filter: blur(1px);   
}


.reviews-section h2 {     
  text-align: center;
  color: #FFFFFF; 
  text-shadow: 2px 2px 0 #0b0b0b;
  letter-spacing: 2px;
  margin-bottom: 50px;  
  text-transform: uppercase;
  font-weight: 700;
}




.review-card {
  background-color: rgba(255, 255, 255, 0.9); 
  padding: 40px 20px;   
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  flex-basis: 300px;
  position: relative;    
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-section .border{
  overflow: unset;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.review-card p {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: #5C4033;
  line-height: 1.6;
  letter-spacing: 1px;
  position: relative;
  animation: review-text 2s ease-out;
}


@keyframes review-text {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.author{
  font-weight: 800;
}
.review-card .avatar {
  position: absolute;
  top: -30px;
  border: 3px solid var(--border-color-5);
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius:  50%;  
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


@media screen and (min-width: 575px) {
  .container{
    max-width: 540px;
  }
}
@media (max-width: 575px){
  .wild-west_logo{
      font-size: 1.9rem;
  }
  .about-imgBox{
    height: 300px;
    padding: 15px;
  }
  .westImg-box{
    border: 15px solid var(--border-color-5);   
    border-radius: 5px;
   img{
    height: auto;
  }
  }
  .videoWestBox{
    height: 300px;
  }
  .review-card {
    padding: 40px 10px;
  }
  .footer-logo {
    font-size: 22px;
  }
}


@media screen and (min-width: 768px) {
   .container{
    max-width: 720px;
  }
}

@media (max-width: 768px){
  .top-text{
    font-size: 20px;
  }
  .west-game_item:nth-child(even),.west-game_item{
    flex-direction: column !important;
  }
  
  .west-game_boxImg img{
    height: 350px;
  }
  .west-game_item{
    flex-basis: 100% !important;
  }
  .cowboy-hat-form ,.step{
    width: 100%;
  }
  .factionimage{
    display: none;
  }
  .main-formWest,.form-titleWin{
    width: 100%;
  }
  
} 
 

@media (max-width: 992px){ 
.top-imgHead{
  display: none;
}
.west-nav{
  padding: 0;
}
.west-menu{
  justify-content: center;
}
.row-flex{
  flex-direction: column;
}
.videoWestBox{
  width: 100%;
}
.west-game_content{
    padding: 20px 10px;
}
.flex-rowWest{
  flex-direction: column-reverse;
}

}
@media (min-width: 992px){ 
 .container{
    max-width: 960px;
  }
  .top-text {
        text-shadow: 2px 2px #000000;
  }
} 

@media (min-width: 769.99px) and (max-width: 1200px){
  .main-formWest{
    width: 55%;
  }
  .factionimage {
      max-height: 500px;
  }
}
@media (min-width: 1200px){   
  .container{
    max-width: 1140px;
  }
  .main-formWest{
    width: 70%;
  }
 
}


.footer-logos {
    display: flex;
    justify-content: center; 
    align-items: center;
   flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-logos a img {
    max-height: 50px;
    width: auto;
    display: block;
  }