/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family: "Dosis", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
    background: #fff7e0;
}
ol, ul { 
	list-style: none;
}
blockquote, q { 
	quotes: none; 
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}
/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
.nopad {
	padding:0;
}
.nopadleft {
	padding-left:0;
}
.nopadright {
	padding-right:0;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 3px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #fff;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.tabs {
    margin: 0;
    border: none;
}
.tabs-content {
    border: none;
    background: transparent;
    color: #000;
}
.tabs-panel {
    padding: 0;
}

.prev-scroll {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.grid-container {
    width: 100%;
    max-width: 1040px;
    padding: 0 0;
}

header .grid-container,
footer .grid-container {
    max-width: 1230px;
    padding: 0 24px;
}

header {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 999;
    background: rgba(249, 194, 18, 1);
    padding: 10px 0;
}
header::before {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/bg-header.png) no-repeat bottom center / cover;
    position: absolute;
    top: 0; left: 0;
}
header > .grid-container {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}
.header-left {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}
.header-logo {
    margin-right: 42px;
}
.header-logo a {
    display: block;
}
.header-logo a img {
    max-height: 50px;
}
.header-nav ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    gap: 36px;
}
.header-nav ul li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    transition: 0.2s ease-in-out;
}
.header-nav ul li a:hover {
    color: #fff;
    opacity: 0.7;
}
.header-right {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    gap: 12px;
}
.header-right a {
    display: block;
    line-height: 1;
    transition: 0.2s ease-in-out;
}
.header-right a:hover {
    opacity: 0.7;
}
.mobile-nav {
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: rgba(249, 194, 18, 1);
    padding: 24px 0;
    display: none;
}

main {
    padding-top: 70px;
    position: relative;
}
main::before,
main::after {
    content: '';
    width: calc((100vw - 1040px)/2);
    height: 100%;
    position: absolute;
    top: 0; bottom: 0;
    z-index: -1;
}
main::before {
    left: 0;
    background: url(../img/bg-main-left.png) no-repeat top right / cover;
}
main::after {
    right: 0;
    background: url(../img/bg-main-right.png) no-repeat top right / cover;
}

footer {
    background: rgba(249, 194, 18, 1);
    position: relative;
    padding: 35px 0;
}
footer::before {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/bg-footer.png) no-repeat bottom center / cover;
    position: absolute;
    top: 0; left: 0;
}
footer .grid-container {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}
.footer-left {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    padding-right: 20px;
}
.footer-logo {
    margin-right: 28px;
}
.footer-logo img {
    max-height: 86px;
}
.footer-text {
    font-size: 14px;
    line-height: 1.286;
}
.footer-text a {
    color: #000;
    transition: 0.2s ease-in-out;
}
.footer-left .footer-text a {
    text-decoration: underline;
}
.footer-text a:hover {
    opacity: 0.7;
    color: #000;
}
.footer-right .footer-text {
    margin-top: 8px;
}
.footer-right-socials {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;

    gap: 12px;
}
.footer-right-socials a {
    transition: 0.2s ease-in-out;
}
.footer-right-socials a:hover {
    opacity: 0.7;
}

.section-title {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 38px;
    margin-bottom: 24px;
}
.section-title::before {
    content: '';
    width: 100%;
    height: 16px;
    background: url(../img/icon-wave.svg) no-repeat center center / contain;
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
}

.section-box {
    padding: 17px 24px 34px;
}

.btn-yellow,
.btn-yellow:focus,
.btn-yellow:active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    min-width: 164px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    background: rgba(255, 195, 18, 1);
    transition: 0.2s ease-in-out;
    padding: 10px;
}
.btn-yellow:hover {
    color: #000;
}
.btn-play span {
    display: inline-block;
    width: 22px; height: 17px;
    position: relative;
    transition: 0.2s ease-in-out;
}
.btn-play span.btn-play-left {
    margin-right: 10px;
}
.btn-play span.btn-play-right {
    margin-left: 10px;
}
.btn-play span.btn-play-left::before,
.btn-play span.btn-play-left::after {
    content: '';
    width: 11px; height: 17px;
    background: url(../img/icon-chev-to-right.svg) no-repeat center center / contain;
    position: absolute;
    top: 0; right: 0;
}
.btn-play span.btn-play-left::before {
    right: 7px;
}
.btn-play span.btn-play-right::before,
.btn-play span.btn-play-right::after {
    content: '';
    width: 11px; height: 17px;
    background: url(../img/icon-chev-to-left.svg) no-repeat center center / contain;
    position: absolute;
    top: 0; right: 0;
}
.btn-play span.btn-play-right::before {
    right: 7px;
}
.btn-play:hover .btn-play-left {
    margin-right: 5px;
}
.btn-play:hover .btn-play-right {
    margin-left: 5px;
}

.home-game-box {
    background: rgba(246, 244, 233, 1) url(../img/bg-game.png) no-repeat center center / cover;
}
.home-game-box .section-title {
    color: rgba(225, 37, 27, 1);
}
.home-game-box .section-text {
    max-width: 557px;
    margin: 0 auto;
}
.home-game-imgs {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 28px;
    padding-top: 20px;
    margin-bottom: 26px;
}
.home-game-items {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 26px;
    margin-bottom: 29px;
}
.home-game-item {
    max-width: 180px;
}
.home-game-item-img {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 120px;
}
.home-game-item-img img {
    max-height: 120px;
}
.home-game-item-number {
    font-size: 35px;
    font-weight: 500;
}
.home-game-item-text {
    font-size: 20px;
    font-weight: 500;
}

.home-game-list {
    margin-top: 27px;
}
.home-game-list ul {
    max-width: 630px;
    margin: 0 auto;
}
.home-game-list ul li {
    position: relative;
    padding-left: 24px;
}
.home-game-list ul li strong {
    font-weight: 600;
}
.home-game-list ul li::before {
    content: '';
    width: 4px; height: 4px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 7px; left: 10px;
}

.home-number-box {
    background: rgba(255, 231, 160, 1);
}
.home-number-box .section-text {
    max-width: 580px;
    margin: 0 auto;
}

.home-tastes {
    overflow: hidden;
}
.home-tastes-box {
    background: #fff;
}
.tastes-owl {
    padding: 10px 154px 0;
}
.tastes-owl .owl-stage {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    height: 454px;
}
.tastes-owl .item {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 394px;
    transition: 0.2s ease-in-out;
}
.tastes-owl .center .item {

    transform: scale(1.15);
}
.tastes-owl .item img {
    width: auto !important;
    max-height: 100%;
}
.tastes-owl-item-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 100%; width: 100%;
}
.tastes-owl .owl-nav button {
    display: inline-block;
    width: 52px; height: 52px;
    border: 5px solid rgba(255, 195, 18, 1) !important;
    border-radius: 50%;
    position: absolute;
    top: 50%; transform: translateY(-50%);
}
.tastes-owl .owl-nav {
    display: block !important;
}
.tastes-owl .owl-nav button.owl-prev {
    left: 41px;
    background: url(../img/icon-owl-prev.svg) no-repeat center center / 33px;
}
.tastes-owl .owl-nav button.owl-next {
    right: 41px;
    background: url(../img/icon-owl-next.svg) no-repeat center center / 33px;
}
.tastes-owl .owl-nav button span {
    display: none;
}
.home-tastes-piehold {
    margin-top: 18px;
    padding: 0 140px 0;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.home-tastes-spin-img {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    position: relative;
    width: 116px;
    height: 108px;
    min-width: 116px;
    max-height: 108px;
    margin-right: 67px;
}
.home-tastes-spin-img-1 {
    width: 55px;
    height: 46px;
}
.home-tastes-spin-img-2 {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.home-tastes-spin-img-2 img {
    width: 100%; height: 100%;
    animation: spin 8s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.home-tastes-piehold-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.home-tastes-piehold-text {
    max-width: 468px;
}

.home-intro-box {
    background: rgba(255, 231, 160, 1);
    padding: 0 calc(9.5% + 24px);
}
.home-intro-box a {
    display: block;
    padding-bottom: 56.6%;
}
.home-intro-box a::after {
    content: '';
    width: 86px; height: 86px;
    border-radius: 50%;
    background: url(../img/icon-play.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: 0.2s ease-in-out;
}
.home-intro-box a:hover::after {
    opacity: 0.8;
}

.rules-page {
    background: #fff;
    padding: 18px 63px 54px;
}
.entry {
    font-size: 16px;
    line-height: 1.15;
}
.entry > :last-child {
    margin-bottom: 0;
}
.entry > :first-child {
    margin-top: 0;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}
.entry h1 {
    font-size: 40px; 
}
.entry h2 {
    font-size: 32px;
}
.entry h3 {
    font-size: 26px;
}
.entry h4 {
    font-size: 24px;
}
.entry h5 {
    font-size: 20px;
}
.entry h6 {
    font-size: 18px;
}
.entry p {
   margin-bottom: 16px;
}
.entry p + h1, .entry p + h2, .entry p + h3, .entry p + h4, .entry p + h5, .entry p + h6,
.entry ul + h1, .entry ul + h2, .entry ul + h3, .entry ul + h4, .entry ul + h5, .entry ul + h6,
.entry ol + h1, .entry ol + h2, .entry ol + h3, .entry ol + h4, .entry ol + h5, .entry ol + h6,
.entry table + h1, .entry table + h2, .entry table + h3, .entry table + h4, .entry table + h5, .entry table + h6 {
    margin-top: 20px;
}
.entry a {
    color: #000;
    text-decoration: underline;
    transition: 0.2.s ease-in-out;
}
.entry a:hover {
    color: #000;
    text-decoration: none;
}
.entry ul,
.entry ol {
    margin-left: 0;
    padding-top: 8px;
}
.entry > ul,
.entry > ol {
    margin-bottom: 16px;
    padding-top: 0;
}
.entry ul li,
.entry ol li  {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
}
.entry ol {
    counter-reset: item;
}
.entry ul > li:before  {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    background: #000;
}
.entry ol > li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
}

.entry .table-scroll {
    margin-bottom: 30px;
}
.entry table {
    width: 100%;
    min-width: 400px;
    color: #353535;
}
.entry table th {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #000;
    background: #353535;
    padding: 9px 21px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}
.entry table th:last-child {
    border-right: none;
}
.entry table tbody tr:nth-child(even) {
    background-color: #e0e0e0;
}
.entry table tbody tr:nth-child(odd) {
    background-color: #f3f3f3;
}
.entry table tbody, table tfoot, table thead {
    border: none;
    background-color: transparent;
}
.entry table tr td {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    padding: 9px 21px;
    font-size: 15px;
    line-height: 22px;
}
.entry table tr td:first-child {
    font-weight: 500;
}
.entry table tr td:last-child {
    border-right: none;
}
.entry table p {
    margin-bottom: 0;
}

.home-tastes-piehold-textbox {
    position: relative;
    width: 100%;
}
.home-tastes-piehold-textbox-item {
    position: absolute;
    top: 50%; right: 0; left: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.home-tastes-piehold-textbox-item.is-active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease-in-out;
}
.fade-up.fade-up-later {
    transition-delay: 600ms;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: 1s ease-in-out;
}
.fade-in.in-view {
    opacity: 1;
}

/* Media */
@media only screen and (max-width: 1023px) {
	.hamburger {
		display: inline-block;
	}
    .header-left .header-nav {
        display: none;
    }
    .header-right a {
        display: none;
    }
    .header-nav {
        margin-bottom: 24px;
    }
    .header-nav ul  {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;

        gap: 24px;
    }
    .header-nav ul li {
        width: 100%;
    }
    .header-nav ul li a {
        font-size: 24px;
    }
    .mobile-nav-socials {
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;

        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;

        gap: 16px;
    }
    .tastes-owl {
        padding: 10px 15% 0;
    }
    .tastes-owl .owl-nav button.owl-prev {
        left: 0;
    }
    .tastes-owl .owl-nav button.owl-next {
        right: 0;
    }
    .home-tastes-piehold {
        padding: 0;
    }
    .tastes-owl .owl-nav button {
        position: relative;
        top: 0;
        transform: none;
    }
    .tastes-owl .owl-nav {
        width: 100%;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        gap: 24px;
        margin-top: 24px;
    }
    .rules-page {
        padding: 18px 24px 54px;
    }
} /* end of max-width 1023 */

@media screen and (max-width:767px) {
    .tastes-owl {
        padding: 10px 5% 0;
    }
}
@media screen and (max-width:639px) {
	footer .grid-container {
        display: block;
    }
    .footer-left {
        padding-right: 0;
        margin-bottom: 28px;
        display: block;
    }
    .footer-logo {
        margin-right: 0;
        margin-bottom: 28px;
    }
    .footer-right-socials {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .footer-right .footer-text {
        text-align: left;
    }
    .footer-text {
        line-height: 1.7;
    }
    .section-title {
        font-size: 32px;
    }
    .tastes-owl .owl-nav {
        margin-top: 16px;
    }
    .tastes-owl .owl-nav button {
        width: 42px; height: 42px;
        border: 3px solid rgba(255, 195, 18, 1) !important;
        background-size: 23px !important;
    }
    .home-tastes-piehold {
        display: block;
        margin-top: 30px;
    }
    .home-tastes-spin-img {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .home-intro-box {
        padding: 0 24px;
    }
    .home-intro-box a::after {
        width: 56px;
        height: 56px;
    }
    .entry h1 {
        font-size: 32px; 
    }
    .entry h2 {
        font-size: 26px;
    }
    .entry h3 {
        font-size: 24px;
    }
    .entry h4 {
        font-size: 22px;
    }
    .entry h5 {
        font-size: 20px;
    }
    .entry h6 {
        font-size: 18px;
    }
    .home-tastes-piehold-textbox-item {
        top: 0;
        transform: translateY(0);
    }
    .tastes-owl .owl-stage-outer {
        overflow: visible;
    }
    .tastes-owl {
        padding: 10px 15% 0;
    }
} /* end of max-width 639 */

@media screen and (max-width:400px) {
    .tastes-owl {
        padding: 10px 0 0;
    }
}