/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Verdana", sans-serif;
  background-color: rgba(35, 41, 49, 1);
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

/* Типография */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
figure,
.general-table-wrapper,
.faq-container {
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  padding: 15px 0;
  color: #f1d18a;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 22px;
  line-height: 1.2;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
}
h4 {
  font-size: 17px;
  line-height: 1.2;
}
h5,
h6 {
  font-size: 14px;
  line-height: 1.2;
}

p,
span,
li,
a {
  font-size: 13px;
  line-height: 1.6;
  color: #ddd;
}

p {
  padding-bottom: 20px;
}
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #ff4d4d;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6666;
}

/* Изображения */
.general-image {
  display: block;
  border-radius: 15px;
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px;
}

.vertical .general-image {
  max-height: 500px;
  max-width: 70%;
}

.horizontal .general-image {
  max-width: 100%;
}

figure {
  margin-bottom: 20px;
  text-align: center;
}

figcaption {
  color: #ddd;
  font-size: 12px;
}

/* Списки */
.content .general-ol {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  padding-left: 30px;
}

.content .general-ol li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  counter-increment: counter-ol;
  color: #ddd;
  font-size: 13px;
}

.content .general-ol li:before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background-color: #ff4d4d;
  border-radius: 50%;
  top: 0;
  left: -30px;
  font-size: 12px;
}

.content .general-ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 15px;
  color: #ddd;
  font-size: 13px;
}

.content .general-ul li:before {
  content: no-open-quote;
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 6px;
  background-color: #ff4d4d;
  border-radius: 50%;
}

/* FAQ */
.faq-container {
  margin: 30px auto;
}

.faq-container .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: #121519;
  border: 1px solid #444;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-container .faq-item:hover {
  border-color: #ff4d4d;
}

.faq-container .faq-question {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 15px 40px 15px 20px;
  position: relative;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.faq-container .faq-answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  padding-bottom: 0;
}

.faq-container .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

.faq-container .icon:before,
.faq-container .icon:after {
  content: no-open-quote;
  position: absolute;
  background-color: #ff4d4d;
  transition: all 0.3s ease;
}

.faq-container .icon:before {
  width: 14px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-container .icon:after {
  width: 2px;
  height: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;}

.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 1;
  padding: 0 20px 15px 15px;
}

.faq-container .toggle:checked ~ .icon:after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-container .toggle:checked ~ .faq-question {
  color: #ff4d4d;
}

/* Кнопки */
button,
input {
  font-family: "Verdana", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-play {
  background-color: #ff4d4d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-play:hover {
  background-color: #ff6666;
}

/* Обёртка */
.wrapper {
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
}

/* Header */
.header1 {
  background-color: rgba(29, 33, 40, 1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
}

.logo__container {
  display: flex;
  align-items: center;
}

.logoButton {
  background: none;
  border: none;
  padding: 0;
}

.logo__container amp-img {
  max-width: 235px;
  height: auto;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.menu a:hover,
.menu a.active {
  color: #ff4d4d;
}

.header__dropdown {
  display: none;
}

/* Бургер-меню (для AMP нужно заменить на amp-accordion или другой компонент) */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .header__dropdown {
    display: block;
  }

  .header__burger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }

  .header__burger span {
    background-color: #fff;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }

  .top {
    top: 0;
  }
  .meat {
    top: 8px;
  }
  .bottom {
    top: 16px;
  }

  .menu-list {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #2a2a2a;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #444;
  }

  .menu-list a {
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
    display: block;
    text-align: center;
  }

  .menu-list a:hover,
  .menu-list a.active {
    color: #ff4d4d;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  .logo__container img {
    width: 113px;
    height: auto;
  }
}

/* Mainbanner */
.mainbanner {
  background-color: rgba(29, 33, 40, 1);
  padding: 30px 0 10px 0;
  margin-bottom: 24px;
}

.mainbanner-inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
}

.mainbanner-image {
  width: 30%;
  max-width: 400px;
}

.roulette-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.mainbanner-content {
  width: 100%;
  padding-left: 40px;
}

.mainbanner-title {
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #f1d18a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mainbanner-content p {
  font-size: 13px;
  color: #ddd;
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
}

/* Таблицы */
.general-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #2a2a2a;
  border-radius: 18px;
  overflow: hidden;
}

.general-table th,
.general-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #444;
}

.general-table th {
  background-color: #ff4d4d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.general-table td {
  color: #ddd;
  font-size: 12px;
}

.general-table a {
  color: #ff4d4d;
  font-weight: bold;
}

.general-table a:hover {
  color: #ff6666;
}

/* Casinos */
.casinos {
  padding: 40px 0;
}

.casinos h2 {
  font-size: 22px;
  text-align: center;
}

/* PlusMinus */
.plusMinus {
  padding: 40px 0;
}

.plusMinus-title {
  font-size: 18px;
  text-align: left;
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #121519;
  padding: 30px 0;
  border-top: 1px solid #444;
}

.footerInner {
  text-align: center;
}

.footer-info {
  margin-bottom: 20px;
}

.info {
  font-size: 13px;
  margin-bottom: 15px;
}

.info-imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.info-imgs amp-img {
  height: 40px;
}

.copyright {
  font-size: 12px;
  color: #999;
}

.footer .scrollTop {
  background: #b5392e;
  box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 60px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}
.footer .scrollTop.pam_content {
  opacity: 1;
}

.footer-block-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  padding: 20px 0;
  text-align: center;
  display: none;
}


.footer-block-btn button {
  background-color: #ff4d4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Адаптивность */
@media (max-width: 1250px) {
  .wrapper,
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .faq-container {
    width: calc(100% - 32px);
  }


}

@media (max-width: 1250px) {
  .footer {
    margin-bottom: 80px;
  }
  .footer-block-btn {
    display: block;
  }
  .header .buttons {
    display: none;
  }
}

@media (max-width: 1020px) {
  .mainbanner {
    padding: 30px 0;
  }

  .mainbanner-inner {
    flex-direction: column;
    width: calc(100% - 40px);
  }

  .mainbanner-content {
    width: 100%;
    padding-left: 0;
  }

  .mainbanner-title {
    font-size: 24px;
    text-align: center;
  }

  .mainbanner-content p {
    font-size: 12px;
    text-align: center;
  }

  .mainbanner-image {
    width: 250px;
  }
  .mainbanner-image img {
    width: 100%;
    height: auto;
  }


}

@media (max-width: 600px) {
  .wrapper,
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .faq-container {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  h5,
  h6 {
    font-size: 12px;
  }



  .content .general-ol,
  .content .general-ul {
    padding-left: 25px;
  }


  .content .general-ol li:before {
    width: 18px;
    height: 18px;
    font-size: 10px;
    left: -25px;
  }

  .content .general-ul li:before {
    width: 5px;
    height: 5px;
    top: 5px;
  }

  .faq-container .faq-question {
    padding: 10px 30px 10px 15px;
  }

  .faq-container .faq-answer {
    padding: 0 15px 10px;
  }

  .faq-container .icon {
    right: 10px;
    width: 12px;
    height: 12px;
  }

  .faq-container .icon:before {
    width: 12px;
    height: 2px;
  }

  .faq-container .icon:after {
    width: 2px;
    height: 12px;
  }


}

@media (max-width: 460px) {
  .mainbanner {
    padding: 15px 0;
  }

  .mainbanner-image {
    width: 200px;
  }

  .mainbanner-title {
    font-size: 20px;
  }

}

/* PlusMinus */
.plusMinus {
  padding: 10px 0;
}

.plusMinus-inner {
  display: flex;
  gap: 10px;
}

.plusMinus-column {
  height: min-content;
  flex: 1;
  background-color: #232931;
  border-radius: 4px;
}

.plusMinus-title {
  border-radius: 0 0 4px 4px;
  display: block;
  width: 100%;
  color: #fff;
  padding: 10px 15px;
}

.plusMinus-list {
  margin: 0;
  width: 100%;
}

.plusMinus-title--advantages {
  border-bottom: 4px solid #00cc00;
}

.plusMinus-title--disadvantages {
  border-bottom: 4px solid #ff4d4d;
}

.plusMinus-list li {
  border-radius: 0 0 4px 4px;
  position: relative;
  padding: 5px 15px;
  color: #ddd;
  font-size: 13px;
}
.plusMinus-advantages .plusMinus-list li {
  border-bottom: 1px solid #00dd0b;
}
.plusMinus-disadvantages .plusMinus-list li {
  border-bottom: 1px solid #dd0000;
}

@media (max-width: 768px) {
  .plusMinus-inner {
    flex-direction: column;
    gap: 20px;
  }

  .plusMinus-title {
    font-size: 16px;
  }
}


.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 24px;
  margin-bottom: 24px;
}
.casino-card {
  background-color: #121519;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
  gap: 16px;
}
.casino-card .casino-card:hover {
  transform: translateY(-5px);
}
.casino-card .casino-logo {
  height: 74px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.casino-card .casino-logo img {
  margin: 0 auto;
}
.casino-card .casino-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  display: block;
  padding-bottom: 10px;
}
.casino-card .bonus-title,
.casino-card .advantages-title {
  padding-bottom: 12px;
  text-align: left;
  width: 100%;
}
.casino-card .bonus {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 16px;
  text-align: left;
}
.casino-card ul.advantages {
  width: 100%;
  margin-bottom: 16px;
}
.casino-card ul.advantages li {
  text-align: left;
  position: relative;
  list-style: none;
  padding-left: 24px;
  padding-bottom: 12px;
}
.casino-card ul.advantages li::before { 
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  background: url(/list-casino.svg)no-repeat;
  background-size: cover;
}

.casino-card .play-button {
  background-color: #ff3333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.casino-card .play-button:hover {
  background-color: #e60000;
}

@media (max-width: 950px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .casino-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}



.block {
  background-color: #121519;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  align-items: center;
  gap: 20px;
  display: grid;
  min-height: 72px;
  grid-template-columns: 215px 1fr;
  overflow: hidden;
}

.block-title {
  background-color: #d6b262;
  color: #1d2128;
  font-weight: 700;
  font-size: 18px;
  height: 100%;
  padding: 22px 0;
  text-align: center;
}

.block .bonus-details,
.block .stats-items,
.block .payment-items,
.block .crypto-items {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.block .info-items {
  display: grid;
  grid-template-columns: 6fr 6fr 10fr 9fr;
}

.block .info-item,
.block .stat-item,
.block .payment-item,
.block .crypto-item {
  display: flex;
  flex-direction: column;
}

.block .label {
  font-size: 12px;
  color: #888;
}

.block .value {
  font-size: 14px;
  font-weight: bold;
}

.block-bonus .bonus-details {
  flex-direction: column;
  gap: 10px;
}

.block-bonus .bonus {
  display: flex;
  align-items: center;
  gap: 10px;
}

.block-bonus .bonus-icon {
  font-size: 20px;
}

.block-bonus .additional-info {
  background-color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .block {
    grid-template-columns: 1fr;
  }

  .block .info-items {
    grid-template-columns: minmax(200px, 0.9fr) 1fr;
  }

  .block-title {
    padding: 4px 0;
    height: auto;
  }
  .info-items {
    padding: 10px 20px;
  }

  .block .info-items,
  .block .stats-items,
  .block .payment-items,
  .block .crypto-items {
    gap: 10px;
    justify-content: space-between;
    padding: 0 10px 12px 10px;
  }

  .block-bonus .bonus-details {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .block .stats-items {
    flex-direction: column;
    align-items: center;
  }
  .block .value {
    text-align: center;
  }
}


.quote {
  background-color: #121519;
  border-left: 50px solid #d6b262;
  border-radius: 12px;
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
  margin-bottom: 24px;
  padding: 20px;
}
.quote p {
  width: 100%;
}
.quote:before {
  content: '';
  width: 32px;
  height: 32px;
  top: 12px;
  left: -42px;
  position: absolute;
  background: url(/quoteOpen.svg)no-repeat;
  background-size: cover;
}


.section {
  background: rgba(29, 33, 40, 1);
  padding: 24px 0;
  margin-bottom: 24px;
}

.container {
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
}



.author {
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1280px;
	margin-bottom: 32px;
}
.author_wrapper {
	background: #121519;
	padding: 32px 32px;
	border-radius: 16px;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.author p {
	width: 100%;
}
.author_inner {
	display: flex;
	gap: 20px 24px;
}
.author_left {
	width: 197px;
	background: #232931;
	border-radius: 10px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.author_right {
	width: calc(100% - 197px);
}
.author_left .author_img {
	width: 96px;
	height: 96px;
	border: 2px solid rgba(231, 244, 242, 1);
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 12px;
}
.author .author_name {
	color: rgba(247, 247, 247, 1);
	font-size: 20px;
	font-weight: bold;
	display: block;
	width: 100%;
	text-align: center;
}
.author .reviewer {
	color: rgba(247, 247, 247, 1);
	font-size: 12px;
	text-transform: uppercase;
	display: block;
	width: 100%;
	text-align: center;
}
.author .rating,
.author .reviews {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.author .rating span, .author .reviews span {
	color: rgba(247, 247, 247, 1);
	font-size: 12px;
}

@media (max-width: 900px) {
	.author_inner {
		flex-wrap: wrap;
	}
	.author_right,
	.author_left {
		width: 100%;
	}
	.author_wrapper {
		padding: 24px 24px;
	}
}

@media (max-width: 1250px) {
  .quote,
  .container,
  .casino-grid,
  .author {
    width: calc(100% - 32px);
  }
}

.button-block {
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}
.button-block button {
  background-color: #ff4d4d;
  color: #fff;
  padding: 16px 32px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}


.button-block button:hover {
  opacity: 0.8;
}

.burger {
  display: none;
  position: relative;
}
.mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #000;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}
.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}
.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}
.mobileMenu[hidden] {
  right: -200%;
}
.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.mobileMenu .mobileMenuLinks a {
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 10px;
  text-transform: uppercase;
}
.mobileMenu .mobileMenuLinks button {
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 10px;
  text-transform: uppercase;
}
.mobileMenu .mobileMenuLinks .btn-bonus-buy {
  font-size: 15px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 2px solid #ffb801;
  padding: 0px 20px;
  color: #fff;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s ease;
}
.mobileMenu .mobileMenuLinks .btn-bonus-buy img {
  margin-right: 8px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}
.overlay[hidden] {
  display: none;
}
@media screen and (max-width: 1250px) {
  /* .burger {
    display: block;
  } */
}

.content404Page {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.content404Page .button404 {
	background: #ff4d4d;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	padding: 16px 32px;
	font-weight: bold;
	transition: 0.4s;
	margin: 0 auto;
}
.content404Page .button404:hover {
	opacity: 0.8;
}
.content404 {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.content404 img {
	margin:  0 auto;
}
.content404Page h1 {
	width: 100%;
	text-align: center;
}
@media (max-width: 599px) {
	.content404Page h1 {
		padding-left: 0;
		padding-right: 0;
	}
}