@import url('https://fonts.googleapis.com/css2?family=Noticia+Text:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  background-color: #E2703A66;
  direction: ltr;
  font-family: 'Noticia Text', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
}


a {
  text-decoration: none;
  cursor: pointer;
}
  
img {
  width: 100%;
}

.flex-style{
  display: flex;
  flex-direction: column-reverse;
}

.header-lay{
  background-color: #E2703Ae6;
  width: 100%;
}

.fixed-header {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 26px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: top 2s ease;
}

.header{
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.logoImg img{
  object-fit: contain;
  max-width: 40px;
  max-height: 40px;
}

.logo a{
  color: #fff; 
  display: flex; 
  align-items: center; 
  gap: 19px;
}

.logoTitle h2{
  transition: 0.5s ease;
  font-size: 18px;
  margin: 0;
}

.logoTitle h2:hover{
   opacity: 0.6; 
 }

.header-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
 flex-wrap: wrap;
  padding: 20px;
}

.footer-logos a img {
  max-height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 576px){
.footer-logos a img {
  height: 30px;
}
}

.topnav{
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.topnav li{
  margin: 0;
  padding: 0;
}

.topnav-link {
  transition: 0.5s ease;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.topnav-link:hover{
  color: #fff;
  opacity: 0.7;
}

.header-content{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
  padding: 40px 0;
}

.baner-hed {
  position: relative;
  flex: 2;
  overflow: hidden; 
  height: 80vh;
}

.baner-hed-img {
  direction: initial;
  width: 100%;
  height: 80vh;
  border-radius: 11px;
  position: relative;
  z-index: 1; 
}

.baner-hed-img img {
  object-fit: cover;
  position: relative;
  border-radius: 11px;
  width: 100%;
  height:80vh;
}

.baner-hed-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 11px;
  height: 80vh;
  opacity: 0.7;
  background-color: #060606; 
  z-index: 2; 
}

.baner-hed-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3; 
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.baner-hed-text h2,
.baner-hed-text p {
  font-weight: bold;
  margin: 0;
}

.baner-hed-text p{
  opacity: 0.9;
}

.tables-lider{
  background-color: #E2703Ae6;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
}

.tables-lider h2{
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
  text-align: center;
}

.table-lider-box{
  justify-content: space-between;
  flex: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.table-lider-card{
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.table-lider-card-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.order {
  font-size: 18px;
  color: #fff;
}

.table-lider-card-box img{
  border-radius: 50%;
  width: 59px;
  height: 59px;
  object-fit: cover;
}

.table-lider-card-box h5{
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.table-lider-card p{
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.background-content{
  display: flex;
  flex-direction: column-reverse;
  background-color: #E2703A33;
}

.benefits{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.benefits-card{
  background-color: #E2703Ae6;
  border: 1px solid #fff;
  transform: scale(1);
  transition: 0.5s ease;
  padding: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 11px;
  gap: 24px;
}

.benefits-card:hover{
  transform: scale(1.05);
}

.benefits-card img{
  flex: 1;
  object-fit: contain;
  max-width: 40px;
  max-height: 40px;
}

.benefits-card p{
  opacity: 0.8;
  margin: 0;
  flex: 1;
  color: #fff;
  text-align: center;
  margin: 0;
}

.top-games{
  display: block;
  padding: 40px 0;
}

.top-games h2{
  letter-spacing: 2px;
  color: #fff;
  font-weight:800;
  margin-bottom: 40px;
}

.top-games-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.top-games-card{
  height: 302px;
  transition: 0.5s ease;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
}

.games-card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  border-radius: 11px;
}

.games-card-text{
  transition: 0.5s ease;
  opacity: 0;
  width: 100%;
  padding: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translate(-50%, 0);
}

.rating{
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}

.rating i{
  color: gold;
}

.games-card-text h2{
  letter-spacing: 2px;
  font-weight:800;
  color: #fff;
  margin: 0;
}

.games-card-text a{
  padding: 11px 19px;
  font-size: 18px;
}

.top-games-card:hover .games-card-text{
  opacity: 1;
}

.top-games-card:hover .rating{
  opacity: 1;
}

.top-games-card:hover .games-card-img{
  filter: brightness(0.5);
}

.about-us-box{
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
}

.about-us{
  border-radius: 11px;
  padding: 19px;
  background-color: #E2703Ae6;
  border: 1px solid #fff;
  flex: 1;
}

.titleUs{
  text-align: center;
  color: #fff;
  margin-bottom: 28px;
}

.us-content{
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.video-about{
  flex: 1;
}

.video-about video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-box{
  padding: 40px 0;
}

.slider-for{
  direction: initial;
}

.slider-for div{
  margin-bottom: 28px;
 width: 100%;
 overflow: hidden;
 height: 528px;
}

.slider-for img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav{
  direction: initial;
}

.gallery-box .slick-initialized .slick-slide{
  margin: 0 11px;
}

.slider-nav div{
  height: 176px;
  cursor: pointer;
  overflow: hidden;
}

.slider-nav img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 18px;
  height: 18px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  outline: none;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 8px;
  line-height:18px;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: '•';
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 18px;
  height: 18px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.slick-prev:before, .slick-next:before{
  font-size: 19px !important;
}

.slick-prev:before {
  content: '\2190';
  color: #fff;
}

.slick-next, .slick-prev{
  z-index: 0;
}

.slick-next:before {
  content: '\2192';
  color: #fff;
}

.faq-content{
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
  flex-direction: row;
}

.faq-content-img{
  overflow: hidden;
  flex: 1;
}

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

.faq{
  flex: 2;
}

.faq h2{
  font-weight:800;
  color: #fff;
  margin-bottom: 28px;
}

.faq-box{
  display: flex;
  gap: 19px;
  flex-direction: column-reverse;
}

.faq-card {
  display: block;
  overflow: hidden;
}

.question {
  padding: 11px;
  background-color: #E2703Ae6;
  border: 1px solid #fff;
  display: flex;
  gap: 11px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.question i{
  color: #fff;
}

.question h5{
  margin: 0;
  color: #fff;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.answer p{
  background-color: #fff;
  padding: 11px;
  margin: 0;
  color: #000;
}

.faq-card.active .answer {
  max-height: 1000px; 
  transition: max-height 0.5s ease;
}

.osn-form {
  width: 70%;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 28px;
  text-align: center;
}

.title-container h3{
  color: #fff;
  margin: 0;
  font-weight:800;
}

.input-container {
  position: relative;
}

.input-container label{
  color: #fff;
}

.input-container .input-custom__area__element, .input-container .textarea-custom__area__element, .form button {
  outline: none;
  margin: 8px 0;
}

.input-container .input-custom__area__element {
  color: rgba(255,255,255,0.8);
  background-color: transparent;
  padding:  2rem;
  border: 1px solid rgba(255,255,255,0.8);
  padding-right:  2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}

.input-container .textarea-custom__area__element {
  color: rgba(255,255,255,0.8);
  background-color: transparent;
  padding:  2rem;
  border: 1px solid rgba(255,255,255,0.8);
  padding-right:  2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}

.input-container .input-custom__area__element::placeholder, .input-container .textarea-custom__area__element::placeholder{
  color: #fff;
}

.check{
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.submit-form {
  margin: 0 auto;
}

.footer-lay{
  padding: 40px 0;
}

.footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.privacy{
  display: flex;
  flex-direction: column;
  gap: 19px;
  justify-content: center;
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 19px;
}

.privacy ul li a {
  transition: 0.5s ease;
  text-decoration: none;
  color: #000;
}

.privacy ul li a:hover{
  color: #000;
  opacity: 0.5;
}

.copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  justify-content: space-between;
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
}

.copyright-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
}

.copyright-text p {
  color: #000;
  margin: 0;
}

.disclaimers{
  background-color: #790a9f;
  border: 1px solid #fff;
  border-radius: 19px;
  padding: 40px ;
}

.disclaimers h2{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 28px;
}

.disclaimer-text{
  position: relative;
}

.disclaimer-text h5{
  line-height: inherit;
  text-align: center;
  color: #fff;
  margin: 0;
  position: relative;
}

.disclaimer-img{
  margin: 9px;
  float: left;
  max-width:142px;
}

.top-games-two{
  display: none;
  padding: 40px 0;
}

.top-games-two h2{
  letter-spacing: 1px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 40px;
}

.top-games-two-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

section.card {
  position: relative;
  background-color: #f2f2f2;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card img {
  width: 100%;
  height: 100%;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 11px;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px #000000;
  background-color: #f2f2f2;
  color: #ffffff;
}

.card__content {
  color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 26px;
  color: #000000;
  font-weight: 800;
}

.card:hover img {
  scale: 0;
}

.card__description {
  margin: 11px 0 0;
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
}

.art{
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  flex: 1;
}

.titleArt {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

.picture-art-img {
  border: 1px solid #000;
  transition: 0.5s ease;
  float: left;
  width: 38%;
  margin: 40px;
  margin-top: 0;
  margin-left: 0;
}

.picture-art-img:hover{
  box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 25px;}

.art-content {
  color: #000;
  font-size: 18px;
}

.playing{
  padding: 24px 0;
  width: 100%;
  height: 413px;
}

.playing iframe{
  width: 100%;
  height: 100%;
}

.contact-box{
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-direction: column-reverse;
}

.contact-us {
  border: 1px solid #fff;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: #E2703Ae6;
  border-radius: 11px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-us-card {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 19px;
  background-color: #fff;
  border-radius: 11px;
  transition: all 0.5s ease;
}

.contact-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
}

.contact-us-card i {
  font-size: 28px;
  color: #009A44;
}

.contact-us-card a {
  text-decoration: none;
  color: #333;
}

.contact-us-card a:hover {
  color: #009A44;
}

.contact-us-card h5 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.contact-us-card i,
.contact-us-card h5 {
  transition: color 0.5s ease;
}

.contact-form{
  width: 70%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.title-contact-form h2{
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.title-contact-input{
  display: flex;
  flex-direction: column;
}

.title-contact-input {
  width: auto;
}

.submit{
  margin: 0 auto;
}

.title-contact-input label{
  color: #fff;
}

.title-contact-input .inputs-contact, .title-contact-input .textarea-contact {
  outline: none;
  margin: 8px 0;
}

.title-contact-input .inputs-contact {
  color: rgba(255,255,255,0.8);
  background-color: transparent;
  padding:  2rem;
  border: 1px solid rgba(255,255,255,0.8);
  padding-right:  2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}

.title-contact-input .inputs-contact:focus , .title-contact-input .textarea-contact:focus{
  color: rgba(255, 255, 255, 0.7);
}

.title-contact-input .textarea-contact {
  color: rgba(255,255,255,0.8);
  background-color: transparent;
  padding:  2rem;
  border: 1px solid rgba(255,255,255,0.8);
  padding-right:  2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}

.title-contact-input .inputs-contact::placeholder, .title-contact-input .textarea-contact::placeholder{
  color: #fff;
}

.menu-btn {
  cursor: pointer;
  display: none;
	width: 30px;
	height: 30px;
	position: relative;
	z-index:100;
	overflow: hidden;
}

.menu-btn span {
	width: 20px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 7px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 7px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  background-color: #222;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  background-color: #222;
  transform: translate(-50%, 0%) rotate(-45deg); 
}
.plak {
  width: 100%;
}
.menu {
  z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
  opacity: 0.9;
  background: #fff;
	transform: translateX(-100%);
	transition: transform 0.5s; 
}

.menu.active {
	transform: translateX(0);
}

.menu nav{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.menu ul{
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: center;
  padding: 0;
}

.menu li {
	list-style-type: none;
}

.menu li a{
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight:800;
  text-align: center;
  font-size: 25px;
	color: #321D2F;
}

.menu li a:hover{
  opacity: 0.6;
  color: #321D2F;
}


  @media (max-width: 991px) {
    .header-content{
      flex-direction: column;
    }

    .top-games-box{
      grid-template-columns: repeat(2, 1fr);
    }

    .top-games-two-box{
      grid-template-columns: repeat(2, 1fr);
    }

    .benefits{
      grid-template-columns: repeat(2, 1fr);
    }

    .about-us-box{
      flex-direction: column-reverse;
    }

    .osn-form{
      width: 100%;
    }

    .contact-form{
      width: 100%;
    }

    .copyright{
      flex-direction: column;
    }

    .privacy{
      align-items: center;
    }
  }
  
  @media (max-width: 767px) {
    .card__content{
      transition: none;
    }

    .rules-game{
      display: none !important;
    }

    .header-nav{
      display: none;
    }

    .menu-btn{
      display: block;
    }

   .games-card-text{
      opacity: 1;
    }

    .rating{
      opacity: 1;
    }

    .games-card-img{
      filter: brightness(0.5);
    }

    .top-games-box{
      grid-template-columns: repeat(1, 1fr);
    }

    .top-games-two-box{
      grid-template-columns: repeat(1, 1fr);
    }

    .benefits{
      grid-template-columns: repeat(1, 1fr);
    }

    .faq-content{
      flex-direction: column-reverse;
    }

    .faq-content-img{
      display: none;
    }

    .privacy ul{
      flex-direction: column-reverse;
      align-items: center;
    }

    .picture-art-img{
      width: 100%;
      margin-right: 0;
    }

    .playing{
      height: 80vh;
    }
  }

  @media (max-width: 575px) {
    .slider-nav{
      display: none;
    }
  }

  .but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
}

.button-1 {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #d3aa03;
  color: #fff;
  padding: 13px 18px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.button-1:hover {
  color: #fff;
  background-color: #ff9900aa;
}

.button-2 {
  background-color: #fbd597;
  color: #fff;
  padding: 13px 18px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.5s ease;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.button-3 {
  background-color: rgb(83, 53, 28);
  color: #fff;
  padding: 13px 18px;
  border: none;
  border-radius: 3px;
  font-size:  12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.5s ease;
}

.button-3:hover {
  color: #fff;
  box-shadow: 0 0 10px rgba(83, 53, 28, 0.8);
}

.button-4 {
  transition: 0.3s ease;
  background-color: #7b2117;
  color: #fff;
  padding: 13px 26px;
  border: none;
  border-radius:  19px;
  font-size:  19px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.button-4:hover {
  opacity: 0.5;
  color: #fff;
}

.button-5 {
  background-color: rgba(255, 166, 0, 0.537);
  color: #fff;
  padding: 13px 26px;
  border: 1px solid #fff;
  border-radius: 42px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.5s ease;
}

.button-5:hover {
  box-shadow: rgb(196, 128, 0) 0px 3px 8px;
  color: #fff;
  border-color: rgb(196, 128, 0);
}

@media screen and (max-width: 600px) {
  .button-1,
  .button-2,
  .button-3,
  .button-4,
  .button-5 {
    width: 100%;
  }
}
.dop-page-privacy{
  color: #000;
  overflow: hidden;
  text-align: justify;
  padding: 100px 0px;
  width: 100%;
}

.dop-page-privacy a{
  color: #000;
}

.dop-page-privacy a:hover{
  color: #000;
  opacity: 0.5;
}


