@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,regular,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Urbanist:100,200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Kumbh+Sans:100,200,300,regular,500,600,700,800,900);
:root {
  --font-poppins: "Poppins", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-urbanist: "Urbanist", sans-serif;
  --font-kumbh: "Kumbh Sans", sans-serif;
  --color-primary: #fff;
  --color-black: #000000;
  --bg-wrapper: #1E1E1E;
  --transition: .3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

button {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: var(--color-primary);
  background: #000000;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
body.hidden {
  overflow-y: hidden;
}

.container {
  max-width: 1295px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1320px) {
  .container {
    padding: 0 16px;
  }
}

section {
  position: relative;
  overflow-x: hidden;
}

.to-move {
  transition: transform 0.8s ease;
}
.to-move:nth-child(odd) {
  position: absolute;
  transform: translateX(-400%);
}
.to-move:nth-child(even) {
  position: absolute;
  transform: translateX(400%);
}
.to-move.show {
  transform: translateX(0);
  position: relative;
}

.box {
  transform: scale(0);
  transition: transform 0.8s ease;
}
.box.show {
  transform: translateX(0);
  transform: scale(1);
  position: relative;
}

main {
  flex: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

h1 {
  font-weight: 700;
  font-size: 80px;
  line-height: 1.12;
  text-align: right;
  margin-bottom: 10px;
}
@media (max-width: 590px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.23;
  margin: 0 0 16px;
}
@media (max-width: 590px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 2;
  margin: 20px 0 16px;
}
@media (max-width: 590px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 16px;
  line-height: 1.71;
  text-transform: uppercase;
}

.arrow-btn-up {
  width: 50px;
  height: 50px;
  background: url(../img/arrow.svg), linear-gradient(#0092fb, #92929d) padding-box, linear-gradient(to bottom, #92929d, #0c0b0b) border-box;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 50%;
  border: 5px solid transparent;
  z-index: -1;
  bottom: 45px;
  right: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
.arrow-btn-up.btn-visible {
  opacity: 1;
  z-index: 1;
}

.site-header {
  height: 64px;
}
@media (max-width: 768px) {
  .site-header {
    height: 66px;
  }
}
.site-header .fixed-top-bar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  transition: 0.3s ease;
  background: #000000;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .brand-logo {
  display: block;
  max-width: 135px;
  width: 100%;
  padding-left: 40px;
  background: url(../img/sweet-bonanza-logo.png) no-repeat left center;
  cursor: pointer;
  font-family: var(--font-kumbh);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.site-header .menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .site-header .menu-toggle {
    display: flex;
    position: relative;
    z-index: 3;
    width: 36px;
    height: 36px;
    background: url(../img/open.svg) no-repeat center;
    transition: var(--transition);
  }
  .site-header .menu-toggle.active {
    background: url(../img/close.svg) no-repeat center;
  }
}
@media (max-width: 768px) {
  .site-header .main-navigation {
    height: 192px;
    position: absolute;
    width: 0;
    left: 100%;
    right: 0;
    top: 50px;
    z-index: 2;
    background: #000 url(../img/mob-menu.jpg) no-repeat center/cover;
    padding: 12px 16px 0;
    overflow-x: hidden;
    transition: var(--transition);
  }
  .site-header .main-navigation.open {
    left: 0;
    width: 100%;
  }
}
.site-header .navigation-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-header .navigation-list {
    flex-direction: column;
    gap: 0;
  }
}
.site-header .nav-item {
  font-weight: 600;
  line-height: 1.7;
  text-transform: uppercase;
  text-align: center;
  color: #f6f8ff;
}
@media (max-width: 768px) {
  .site-header .nav-item {
    max-width: 360px;
    width: 100%;
    padding: 16px 0;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
  }
}
.site-header .auth-button {
  text-align: center;
  border: 1px solid #044664;
  background: #fff;
  border-radius: 4px;
  padding: 8px 0px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  text-align: center;
  width: 91px;
  height: 34px;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .site-header .auth-button {
    max-width: 195px;
    width: 100%;
    padding: 8px 60px;
  }
}

.main-banner {
  background: #000000;
}
.main-banner .banner-container {
  padding: 31px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/hero-bg.png) no-repeat top center;
}
@media (max-width: 980px) {
  .main-banner .banner-container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 50px 0 40px;
  }
}
.main-banner .banner-image-wrapper {
  width: 300px;
}
.main-banner .banner-text-content {
  max-width: 835px;
  width: 100%;
}
.main-banner p {
  text-align: right;
  margin-top: 10px;
}
.main-banner img {
  border-radius: 12px;
}
.main-banner .secondary-image-wrapper {
  margin: 60px auto;
  max-width: 900px;
  width: 100%;
}
.main-content .info-section-1 {
  padding: 157px 0 60px;
  background: url(../img/polygon.png) no-repeat top 60px center, url(../img/section-table-bg-grey.png) no-repeat center/cover;
}
.main-content .info-container {
  margin: 40px 0;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.main-content .info-block {
  padding: 61px 21px;
  max-width: 636px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 580px) {
  .main-content .info-block {
    padding: 25px 21px;
  }
}
.main-content .info-block span {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.48;
  text-align: center;
  color: #fff;
}
.main-content .info-block p {
  color: #f7f8ff;
  text-transform: none;
  font-size: 16px;
  line-height: 1.48;
  text-align: center;
}
.main-content .info-link {
  display: block;
  border: 1px solid #044664;
  border-radius: 4px;
  padding: 8px 0px;
  width: 192px;
  height: 34px;
  background: #fff;
  margin: 0 auto;
  font-family: var(--font-urbanist);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #000;
}
.main-content ul {
  list-style: disc;
  line-height: 1.7;
  color: white;
  margin-left: 20px;
}
.main-content .info-section-2 {
  background: #000 url(../img/section-text-bg-2.png) no-repeat center/cover;
  padding: 60px 0;
}
.main-content section.info-section-3 {
  padding: 60px 0;
  background: #000 url(../img/section-table-bg-grey.png) no-repeat center/cover;
}
.main-content .info-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.main-content .info-wrapper figure {
  max-width: 509px;
  width: 100%;
}
.main-content .secondary-info-container {
  max-width: 696px;
  width: 100%;
  padding: 77px 0 30px;
  background: url(../img/polygon.png) no-repeat left top 30px;
}
.main-content .secondary-info-container ul {
  margin-top: 16px;
}
@media (max-width: 980px) {
  .main-content .secondary-info-container {
    max-width: 100%;
  }
}
.main-content section.info-section-4 {
  padding: 60px 0;
  background: #000 url(../img/section-text-bg-2.png) no-repeat center/cover;
}
.main-content .info-section-5 {
  padding: 60px 0;
  background: #000 url(../img/section-text-bg.png) no-repeat center/cover;
}
.main-content .info-section-5 .container {
  padding-top: 73px;
  background: url(../img/polygon.png) no-repeat left 15px top;
}
.main-content section.info-section-6 {
  padding: 60px 0;
  background: url(../img/section-text-bg-2.png) no-repeat center/cover;
}
.main-content ol {
  font-size: 16px;
  line-height: 1.48;
  color: #f7f8ff;
  margin: 16px 0 16px 20px;
}
.main-content p:last-of-type {
  margin-bottom: 0;
}
.main-content .data-table + p {
  margin-bottom: 0;
}

.info-section-img {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.data-table {
  display: block;
  border-collapse: collapse;
  border-spacing: 0;
  padding: 16px;
  margin-top: 40px;
}
.data-table:last-of-type {
  padding-bottom: 0;
}
.data-table tbody {
  display: block;
}
.data-table tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
  gap: 8px;
}
.data-table th {
  padding: 16px 0 12px;
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #000;
  background: #fff;
}
@media (max-width: 590px) {
  .data-table th {
    font-size: 16px;
  }
}
.data-table td {
  background: #000;
  padding: 16px 0px;
  font-family: var(--font-roboto);
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 590px) {
  .data-table td {
    font-size: 14px;
  }
}

.breed-table {
  margin-bottom: 16px;
}
.breed-table tr {
  grid-template-columns: repeat(3, 1fr);
}

.activity-table {
  margin-bottom: 16px;
}
.activity-table tr {
  grid-template-columns: repeat(2, 1fr);
}
.footer {
  background: url(../img/footer-bg.png) no-repeat center/cover;
  padding: 20px 0;
}
.footer p {
  font-family: var(--font-urbanist);
  font-size: 18px;
  line-height: 1.56;
  color: #f2f5ea;
  text-align: center;
  opacity: 0.5;
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */