:root {
    --main-font-family: 'Open Sans', sans-serif;
    --hover-color: #0056b3;
    --container-width: 1440px;
    --container-pad: min(8vw, 100px);
    --main-color: #d2184c;
    --secondary-color: #fbb944;
    --alt-white-color: #f0f8ff;
    --header-color: #4283b6;
    --header-text-color: #ffffff;
    --footer-color: #000;
    --footer-sec-color: #141414;
    --footer-text-color: #ffffff;
    --page-background-color: #ffffff;
    --main-font-size: 16px;
    --main-font-color: #2b2b2b;
    --body-background: #f2f3f5;
}
@media only screen and (max-width: 500px) {
    :root {
        --container-pad: 20px;
    }
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-visible {
    overflow: visible;
}
.position-static {
    position: static;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.d-block {
    display: block;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.d-none {
    display: none;
}
@media screen and (max-width: 1200px) {
    .text-xl-center {
        text-align: center;
    }
    .text-xl-left {
        text-align: left;
    }
    .text-xl-right {
        text-align: right;
    }
    .float-xl-left {
        float: left;
    }
    .float-xl-right {
        float: right;
    }
    .overflow-xl-hidden {
        overflow: hidden;
    }
    .overflow-xl-visible {
        overflow: visible;
    }
    .position-xl-static {
        position: static;
    }
    .position-xl-relative {
        position: relative;
    }
    .position-xl-absolute {
        position: absolute;
    }
    .d-xl-block {
        display: block;
    }
    .d-xl-inline-block {
        display: inline-block;
    }
    .d-xl-flex {
        display: flex;
    }
    .d-xl-inline-flex {
        display: inline-flex;
    }
    .d-xl-none {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .text-lg-center {
        text-align: center;
    }
    .text-lg-left {
        text-align: left;
    }
    .text-lg-right {
        text-align: right;
    }
    .float-lg-left {
        float: left;
    }
    .float-lg-right {
        float: right;
    }
    .overflow-lg-hidden {
        overflow: hidden;
    }
    .overflow-lg-visible {
        overflow: visible;
    }
    .position-lg-static {
        position: static;
    }
    .position-lg-relative {
        position: relative;
    }
    .position-lg-absolute {
        position: absolute;
    }
    .d-lg-block {
        display: block;
    }
    .d-lg-inline-block {
        display: inline-block;
    }
    .d-lg-flex {
        display: flex;
    }
    .d-lg-inline-flex {
        display: inline-flex;
    }
    .d-lg-none {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .text-md-center {
        text-align: center;
    }
    .text-md-left {
        text-align: left;
    }
    .text-md-right {
        text-align: right;
    }
    .float-md-left {
        float: left;
    }
    .float-md-right {
        float: right;
    }
    .overflow-md-hidden {
        overflow: hidden;
    }
    .overflow-md-visible {
        overflow: visible;
    }
    .position-md-static {
        position: static;
    }
    .position-md-relative {
        position: relative;
    }
    .position-md-absolute {
        position: absolute;
    }
    .d-md-block {
        display: block;
    }
    .d-md-inline-block {
        display: inline-block;
    }
    .d-md-flex {
        display: flex;
    }
    .d-md-inline-flex {
        display: inline-flex;
    }
    .d-md-none {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .text-sm-center {
        text-align: center;
    }
    .text-sm-left {
        text-align: left;
    }
    .text-sm-right {
        text-align: right;
    }
    .float-sm-left {
        float: left;
    }
    .float-sm-right {
        float: right;
    }
    .overflow-sm-hidden {
        overflow: hidden;
    }
    .overflow-sm-visible {
        overflow: visible;
    }
    .position-sm-static {
        position: static;
    }
    .position-sm-relative {
        position: relative;
    }
    .position-sm-absolute {
        position: absolute;
    }
    .d-sm-block {
        display: block;
    }
    .d-sm-inline-block {
        display: inline-block;
    }
    .d-sm-flex {
        display: flex;
    }
    .d-sm-inline-flex {
        display: inline-flex;
    }
    .d-sm-none {
        display: none;
    }
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.row--hcenter {
    justify-content: center;
}
.row--vcenter {
    align-items: center;
}
.col {
    flex: 1;
    max-width: 100%;
}
.col-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
}
.col-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
}
.off-1 {
    margin-left: 8.3333333333%;
}
.col-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
}
.off-2 {
    margin-left: 16.6666666667%;
}
.col-3 {
    flex: 25%;
    max-width: 25%;
}
.off-3 {
    margin-left: 25%;
}
.col-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
}
.off-4 {
    margin-left: 33.3333333333%;
}
.col-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
}
.off-5 {
    margin-left: 41.6666666667%;
}
.col-6 {
    flex: 50%;
    max-width: 50%;
}
.off-6 {
    margin-left: 50%;
}
.col-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
}
.off-7 {
    margin-left: 58.3333333333%;
}
.col-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
}
.off-8 {
    margin-left: 66.6666666667%;
}
.col-9 {
    flex: 75%;
    max-width: 75%;
}
.off-9 {
    margin-left: 75%;
}
.col-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
}
.off-10 {
    margin-left: 83.3333333333%;
}
.col-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
}
.off-11 {
    margin-left: 91.6666666667%;
}
.col-12 {
    flex: 100%;
    max-width: 100%;
}
.off-12 {
    margin-left: 100%;
}
.col-20 {
    flex: 20%;
    max-width: 20%;
}
.gap-0,
.gap-0-x {
    margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
    padding-left: 0;
}
.gap-0,
.gap-0-y {
    margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
    padding-top: 0;
}
.gap-5,
.gap-5-x {
    margin-left: -5px;
}
.gap-5 > *,
.gap-5-x > * {
    padding-left: 5px;
}
.gap-5,
.gap-5-y {
    margin-top: -5px;
}
.gap-5 > *,
.gap-5-y > * {
    padding-top: 5px;
}
.gap-12,
.gap-12-x {
    margin-left: -12px;
}
.gap-12 > *,
.gap-12-x > * {
    padding-left: 12px;
}
.gap-12,
.gap-12-y {
    margin-top: -12px;
}
.gap-12 > *,
.gap-12-y > * {
    padding-top: 12px;
}
.gap-24,
.gap-24-x {
    margin-left: -24px;
}
.gap-24 > *,
.gap-24-x > * {
    padding-left: 24px;
}
.gap-24,
.gap-24-y {
    margin-top: -24px;
}
.gap-24 > *,
.gap-24-y > * {
    padding-top: 24px;
}
@media screen and (max-width: 1200px) {
    .col-xl {
        flex: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        flex: auto;
        max-width: 100%;
        width: auto;
    }
    .col-xl-1 {
        flex: 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .off-xl-1 {
        margin-left: 8.3333333333%;
    }
    .col-xl-2 {
        flex: 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .off-xl-2 {
        margin-left: 16.6666666667%;
    }
    .col-xl-3 {
        flex: 25%;
        max-width: 25%;
    }
    .off-xl-3 {
        margin-left: 25%;
    }
    .col-xl-4 {
        flex: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .off-xl-4 {
        margin-left: 33.3333333333%;
    }
    .col-xl-5 {
        flex: 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .off-xl-5 {
        margin-left: 41.6666666667%;
    }
    .col-xl-6 {
        flex: 50%;
        max-width: 50%;
    }
    .off-xl-6 {
        margin-left: 50%;
    }
    .col-xl-7 {
        flex: 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .off-xl-7 {
        margin-left: 58.3333333333%;
    }
    .col-xl-8 {
        flex: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .off-xl-8 {
        margin-left: 66.6666666667%;
    }
    .col-xl-9 {
        flex: 75%;
        max-width: 75%;
    }
    .off-xl-9 {
        margin-left: 75%;
    }
    .col-xl-10 {
        flex: 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .off-xl-10 {
        margin-left: 83.3333333333%;
    }
    .col-xl-11 {
        flex: 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .off-xl-11 {
        margin-left: 91.6666666667%;
    }
    .col-xl-12 {
        flex: 100%;
        max-width: 100%;
    }
    .off-xl-12 {
        margin-left: 100%;
    }
    .col-xl-20 {
        flex: 20%;
        max-width: 20%;
    }
    .gap-xl-0,
    .gap-xl-0-x {
        margin-left: 0;
    }
    .gap-xl-0 > *,
    .gap-xl-0-x > * {
        padding-left: 0;
    }
    .gap-xl-0,
    .gap-xl-0-y {
        margin-top: 0;
    }
    .gap-xl-0 > *,
    .gap-xl-0-y > * {
        padding-top: 0;
    }
    .gap-xl-5,
    .gap-xl-5-x {
        margin-left: -5px;
    }
    .gap-xl-5 > *,
    .gap-xl-5-x > * {
        padding-left: 5px;
    }
    .gap-xl-5,
    .gap-xl-5-y {
        margin-top: -5px;
    }
    .gap-xl-5 > *,
    .gap-xl-5-y > * {
        padding-top: 5px;
    }
    .gap-xl-12,
    .gap-xl-12-x {
        margin-left: -12px;
    }
    .gap-xl-12 > *,
    .gap-xl-12-x > * {
        padding-left: 12px;
    }
    .gap-xl-12,
    .gap-xl-12-y {
        margin-top: -12px;
    }
    .gap-xl-12 > *,
    .gap-xl-12-y > * {
        padding-top: 12px;
    }
    .gap-xl-24,
    .gap-xl-24-x {
        margin-left: -24px;
    }
    .gap-xl-24 > *,
    .gap-xl-24-x > * {
        padding-left: 24px;
    }
    .gap-xl-24,
    .gap-xl-24-y {
        margin-top: -24px;
    }
    .gap-xl-24 > *,
    .gap-xl-24-y > * {
        padding-top: 24px;
    }
    .reset-xl {
        margin-left: 0;
    }
}
@media screen and (max-width: 1024px) {
    .col-lg {
        flex: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: auto;
        max-width: 100%;
        width: auto;
    }
    .col-lg-1 {
        flex: 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .off-lg-1 {
        margin-left: 8.3333333333%;
    }
    .col-lg-2 {
        flex: 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .off-lg-2 {
        margin-left: 16.6666666667%;
    }
    .col-lg-3 {
        flex: 25%;
        max-width: 25%;
    }
    .off-lg-3 {
        margin-left: 25%;
    }
    .col-lg-4 {
        flex: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .off-lg-4 {
        margin-left: 33.3333333333%;
    }
    .col-lg-5 {
        flex: 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .off-lg-5 {
        margin-left: 41.6666666667%;
    }
    .col-lg-6 {
        flex: 50%;
        max-width: 50%;
    }
    .off-lg-6 {
        margin-left: 50%;
    }
    .col-lg-7 {
        flex: 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .off-lg-7 {
        margin-left: 58.3333333333%;
    }
    .col-lg-8 {
        flex: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .off-lg-8 {
        margin-left: 66.6666666667%;
    }
    .col-lg-9 {
        flex: 75%;
        max-width: 75%;
    }
    .off-lg-9 {
        margin-left: 75%;
    }
    .col-lg-10 {
        flex: 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .off-lg-10 {
        margin-left: 83.3333333333%;
    }
    .col-lg-11 {
        flex: 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .off-lg-11 {
        margin-left: 91.6666666667%;
    }
    .col-lg-12 {
        flex: 100%;
        max-width: 100%;
    }
    .off-lg-12 {
        margin-left: 100%;
    }
    .col-lg-20 {
        flex: 20%;
        max-width: 20%;
    }
    .gap-lg-0,
    .gap-lg-0-x {
        margin-left: 0;
    }
    .gap-lg-0 > *,
    .gap-lg-0-x > * {
        padding-left: 0;
    }
    .gap-lg-0,
    .gap-lg-0-y {
        margin-top: 0;
    }
    .gap-lg-0 > *,
    .gap-lg-0-y > * {
        padding-top: 0;
    }
    .gap-lg-5,
    .gap-lg-5-x {
        margin-left: -5px;
    }
    .gap-lg-5 > *,
    .gap-lg-5-x > * {
        padding-left: 5px;
    }
    .gap-lg-5,
    .gap-lg-5-y {
        margin-top: -5px;
    }
    .gap-lg-5 > *,
    .gap-lg-5-y > * {
        padding-top: 5px;
    }
    .gap-lg-12,
    .gap-lg-12-x {
        margin-left: -12px;
    }
    .gap-lg-12 > *,
    .gap-lg-12-x > * {
        padding-left: 12px;
    }
    .gap-lg-12,
    .gap-lg-12-y {
        margin-top: -12px;
    }
    .gap-lg-12 > *,
    .gap-lg-12-y > * {
        padding-top: 12px;
    }
    .gap-lg-24,
    .gap-lg-24-x {
        margin-left: -24px;
    }
    .gap-lg-24 > *,
    .gap-lg-24-x > * {
        padding-left: 24px;
    }
    .gap-lg-24,
    .gap-lg-24-y {
        margin-top: -24px;
    }
    .gap-lg-24 > *,
    .gap-lg-24-y > * {
        padding-top: 24px;
    }
    .reset-lg {
        margin-left: 0;
    }
}
@media screen and (max-width: 768px) {
    .col-md {
        flex: 1;
        max-width: 100%;
    }
    .col-md-auto {
        flex: auto;
        max-width: 100%;
        width: auto;
    }
    .col-md-1 {
        flex: 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .off-md-1 {
        margin-left: 8.3333333333%;
    }
    .col-md-2 {
        flex: 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .off-md-2 {
        margin-left: 16.6666666667%;
    }
    .col-md-3 {
        flex: 25%;
        max-width: 25%;
    }
    .off-md-3 {
        margin-left: 25%;
    }
    .col-md-4 {
        flex: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .off-md-4 {
        margin-left: 33.3333333333%;
    }
    .col-md-5 {
        flex: 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .off-md-5 {
        margin-left: 41.6666666667%;
    }
    .col-md-6 {
        flex: 50%;
        max-width: 50%;
    }
    .off-md-6 {
        margin-left: 50%;
    }
    .col-md-7 {
        flex: 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .off-md-7 {
        margin-left: 58.3333333333%;
    }
    .col-md-8 {
        flex: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .off-md-8 {
        margin-left: 66.6666666667%;
    }
    .col-md-9 {
        flex: 75%;
        max-width: 75%;
    }
    .off-md-9 {
        margin-left: 75%;
    }
    .col-md-10 {
        flex: 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .off-md-10 {
        margin-left: 83.3333333333%;
    }
    .col-md-11 {
        flex: 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .off-md-11 {
        margin-left: 91.6666666667%;
    }
    .col-md-12 {
        flex: 100%;
        max-width: 100%;
    }
    .off-md-12 {
        margin-left: 100%;
    }
    .col-md-20 {
        flex: 20%;
        max-width: 20%;
    }
    .gap-md-0,
    .gap-md-0-x {
        margin-left: 0;
    }
    .gap-md-0 > *,
    .gap-md-0-x > * {
        padding-left: 0;
    }
    .gap-md-0,
    .gap-md-0-y {
        margin-top: 0;
    }
    .gap-md-0 > *,
    .gap-md-0-y > * {
        padding-top: 0;
    }
    .gap-md-5,
    .gap-md-5-x {
        margin-left: -5px;
    }
    .gap-md-5 > *,
    .gap-md-5-x > * {
        padding-left: 5px;
    }
    .gap-md-5,
    .gap-md-5-y {
        margin-top: -5px;
    }
    .gap-md-5 > *,
    .gap-md-5-y > * {
        padding-top: 5px;
    }
    .gap-md-12,
    .gap-md-12-x {
        margin-left: -12px;
    }
    .gap-md-12 > *,
    .gap-md-12-x > * {
        padding-left: 12px;
    }
    .gap-md-12,
    .gap-md-12-y {
        margin-top: -12px;
    }
    .gap-md-12 > *,
    .gap-md-12-y > * {
        padding-top: 12px;
    }
    .gap-md-24,
    .gap-md-24-x {
        margin-left: -24px;
    }
    .gap-md-24 > *,
    .gap-md-24-x > * {
        padding-left: 24px;
    }
    .gap-md-24,
    .gap-md-24-y {
        margin-top: -24px;
    }
    .gap-md-24 > *,
    .gap-md-24-y > * {
        padding-top: 24px;
    }
    .reset-md {
        margin-left: 0;
    }
}
@media screen and (max-width: 500px) {
    .col-sm {
        flex: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        flex: auto;
        max-width: 100%;
        width: auto;
    }
    .col-sm-1 {
        flex: 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .off-sm-1 {
        margin-left: 8.3333333333%;
    }
    .col-sm-2 {
        flex: 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .off-sm-2 {
        margin-left: 16.6666666667%;
    }
    .col-sm-3 {
        flex: 25%;
        max-width: 25%;
    }
    .off-sm-3 {
        margin-left: 25%;
    }
    .col-sm-4 {
        flex: 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .off-sm-4 {
        margin-left: 33.3333333333%;
    }
    .col-sm-5 {
        flex: 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .off-sm-5 {
        margin-left: 41.6666666667%;
    }
    .col-sm-6 {
        flex: 50%;
        max-width: 50%;
    }
    .off-sm-6 {
        margin-left: 50%;
    }
    .col-sm-7 {
        flex: 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .off-sm-7 {
        margin-left: 58.3333333333%;
    }
    .col-sm-8 {
        flex: 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .off-sm-8 {
        margin-left: 66.6666666667%;
    }
    .col-sm-9 {
        flex: 75%;
        max-width: 75%;
    }
    .off-sm-9 {
        margin-left: 75%;
    }
    .col-sm-10 {
        flex: 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .off-sm-10 {
        margin-left: 83.3333333333%;
    }
    .col-sm-11 {
        flex: 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .off-sm-11 {
        margin-left: 91.6666666667%;
    }
    .col-sm-12 {
        flex: 100%;
        max-width: 100%;
    }
    .off-sm-12 {
        margin-left: 100%;
    }
    .col-sm-20 {
        flex: 20%;
        max-width: 20%;
    }
    .gap-sm-0,
    .gap-sm-0-x {
        margin-left: 0;
    }
    .gap-sm-0 > *,
    .gap-sm-0-x > * {
        padding-left: 0;
    }
    .gap-sm-0,
    .gap-sm-0-y {
        margin-top: 0;
    }
    .gap-sm-0 > *,
    .gap-sm-0-y > * {
        padding-top: 0;
    }
    .gap-sm-5,
    .gap-sm-5-x {
        margin-left: -5px;
    }
    .gap-sm-5 > *,
    .gap-sm-5-x > * {
        padding-left: 5px;
    }
    .gap-sm-5,
    .gap-sm-5-y {
        margin-top: -5px;
    }
    .gap-sm-5 > *,
    .gap-sm-5-y > * {
        padding-top: 5px;
    }
    .gap-sm-12,
    .gap-sm-12-x {
        margin-left: -12px;
    }
    .gap-sm-12 > *,
    .gap-sm-12-x > * {
        padding-left: 12px;
    }
    .gap-sm-12,
    .gap-sm-12-y {
        margin-top: -12px;
    }
    .gap-sm-12 > *,
    .gap-sm-12-y > * {
        padding-top: 12px;
    }
    .gap-sm-24,
    .gap-sm-24-x {
        margin-left: -24px;
    }
    .gap-sm-24 > *,
    .gap-sm-24-x > * {
        padding-left: 24px;
    }
    .gap-sm-24,
    .gap-sm-24-y {
        margin-top: -24px;
    }
    .gap-sm-24 > *,
    .gap-sm-24-y > * {
        padding-top: 24px;
    }
    .reset-sm {
        margin-left: 0;
    }
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}
picture,
img {
    max-width: 100%;
    height: auto;
}
input,
button,
textarea,
select {
    font: inherit;
}
a {
    text-decoration: none;
    color: inherit;
}
.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}
.clearfix:after {
    clear: both;
}
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 var(--container-pad);
    margin: 0 auto;
}
.container--fluid {
    max-width: 100%;
}
* {
    margin: 0;
    padding: 0;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
html {
    color: var(--main-font-color);
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    font-weight: 400;
    line-height: 1.5;
}
body {
    font-size: 1rem;
    line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.2;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.17rem;
}
h4 {
    font-size: 1rem;
}
h5 {
    font-size: 0.83rem;
}
h6 {
    font-size: 0.67rem;
}
p {
    margin: 1rem 0;
}
ul,
ol {
    margin: 1rem;
}
ul li,
ol li {
    margin: 0.5rem 0;
}
a {
    color: #007bff;
}
a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
blockquote {
    margin: 1rem 0;
    padding: 0 1rem;
    color: #6c757d;
    border-left: 0.25rem solid #dee2e6;
}
code {
    font-family: Courier New, Courier, monospace;
}
pre {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Courier New, Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow: auto;
}
.site-header {
    z-index: 2;
    position: relative;
    background: var(--header-color);
}
.logo-wrapper a {
    font-size: 30px;
    font-weight: 700;
    color: var(--header-text-color);
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
}
.logo-wrapper a img {
    width: 100%;
}
.logo-wrapper a:hover {
    color: var(--secondary-color);
}
.site-footer a:hover {
    color: var(--secondary-color) !important;
}
.jsMobileClose {
    margin-top: 40px;
}
.mobile--trigger svg path {
    fill: var(--header-text-color);
}
.disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 5px;
    background-color: #000;
    color: #fff;
}
.main-menu--list {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
}
.main-menu--item {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.main-menu--item__link {
    color: var(--header-text-color) !important;
    font-size: 1rem;
    text-decoration: none;
    padding: 6px 3px 8px;
    font-weight: 600;
}
.main-menu--item__link:hover {
    color: var(--secondary-color) !important;
    text-decoration: none;
}
.main-menu--item .dropdown--list {
    position: absolute;
    top: -10000px;
    background: #fff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    margin: 0;
    list-style: none;
    border-radius: 3px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 1024px) {
    .main-menu--item .dropdown--list {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 1.75rem;
    }
}
.main-menu--item .dropdown--list.active {
    opacity: 1;
    visibility: visible;
    top: 50px;
}
@media only screen and (max-width: 1024px) {
    .main-menu--item .dropdown--list.active {
        z-index: 1;
        top: 0;
    }
}
.main-menu--item .dropdown--item {
    margin: 0;
}
.main-menu--item .dropdown--link {
    padding: 9px;
    width: 200px;
    display: flex;
    justify-content: center;
    color: #000;
    margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
    .main-menu--item .dropdown--link {
        max-width: 100%;
        width: 100%;
    }
}
.main-menu--item .dropdown--separator {
    height: 1px;
    display: block;
    background: #2323231a;
    margin: 6px 0;
}
@media only screen and (max-width: 1024px) {
    .main-menu--desktop {
        display: none;
    }
}
.main-menu--mobile .mobile--trigger {
    max-width: 30px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.icon-dropdown {
    margin-left: 6px;
    margin-bottom: 2px;
}
@media only screen and (max-width: 1024px) {
    .icon-dropdown {
        width: 1.25rem;
    }
}
.vanished {
    display: none;
}
.single--page {
    background: #fff;
}
.unlist {
    margin: 0;
    list-style: none;
}
.max-50 {
    max-width: 42.063rem;
    margin: 0 auto;
}
.center-text {
    text-align: center;
}
p,
ul,
li,
ol {
    font-size: 1.25rem;
    line-height: 1.688rem;
}
@media only screen and (max-width: 1200px) {
    p,
    ul,
    li,
    ol {
        font-size: 1rem;
        line-height: 1.488rem;
    }
}
@media only screen and (max-width: 500px) {
    p,
    ul,
    li,
    ol {
        font-size: 0.875rem;
        line-height: 1.2rem;
    }
}
.section {
    padding: 60px 0;
    position: relative;
}
.section--inner {
    border-color: var(--inner-block-border-color);
    border-top-width: var(--inner-block-border-top);
    border-bottom-width: var(--inner-block-border-bottom);
    border-top-style: solid;
    border-bottom-style: solid;
    background-color: var(--inner-block-background-color);
}
.section--inner p,
.section--inner ul,
.section--inner li,
.section--inner ol,
.section--inner div {
    color: var(--inner-block-text-color);
}
.section--inner h2,
.section--inner h3,
.section--inner h4,
.section--inner h5,
.section--inner h6 {
    color: var(--inner-block-title-color);
}
.section--inner h2 {
    font-size: 3rem;
    line-height: 3.313rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
}
@media only screen and (max-width: 500px) {
    .section--inner h2 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
}
.slider-example {
    margin-bottom: 60px;
}
.slider-example .slick-slide {
    padding: 240px 60px;
    font-size: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    border-radius: 3px;
}
.slick-prev:before,
.slick-next:before {
    color: #000;
}
.slick-next {
    right: 25px;
    z-index: 1;
}
.slick-prev {
    left: 25px;
    z-index: 1;
}
.site-footer {
    background: var(--footer-color);
}
.site-footer p {
    font-size: 14px;
}
.site-footer .row.fix-width {
    margin: 0 -30px;
}
.site-footer a {
    color: var(--footer-text-color);
}
.site-footer .footer--item {
    padding: 9px 30px;
}
.site-footer .social--list {
    gap: 0.625rem;
}
.site-footer .footer-top {
    padding: 50px 0;
    color: var(--footer-text-color);
    font-size: 12px;
    text-align: center;
}
.site-footer .footer-top h4 {
    font-size: 20px;
}
.site-footer .footer-top a {
    text-decoration: underline;
}
.site-footer .footer-top .footer-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.site-footer .footer-top .footer-menu a {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}
.footer-logos {
    background: var(--footer-sec-color);
}
.footer-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding: 40px;
}
.section--404 {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section--404 .s404-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section--404 .s404-title {
    font-size: 8rem;
}
.section--404 .s404-subtitle {
    font-size: 3rem;
}
.section--404 .s404-image {
    max-height: 250px;
}
.section--404 .s404-link {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}
.pagination ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.pagination ul .page-numbers {
    color: #000;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
    margin: 0 4px;
    font-size: 20px;
}
.pagination ul .page-numbers.current {
    background-color: #39ac31;
    color: #fff;
    border: 1px solid #39ac31;
}
.post-card {
    background: #fafafa;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    overflow: hidden;
}
.post-card-content {
    padding: 10px;
}
.single-post .featured-img-wrapper img {
    width: 100%;
    border-radius: 15px;
}
.single-post .post-info {
    padding: 20px;
    border-radius: 5px;
    background: #fafafa;
    margin-top: 20px;
}
.single-post .post-content-wrap {
    padding: 20px;
    border-radius: 5px;
    background: #fafafa;
}
.single-post .toc {
    padding: 20px;
    border-radius: 5px;
    position: sticky;
    top: 50px;
    background: #fafafa;
}
.single-post .toc ul {
    list-style: none;
    margin: 10px 0 0;
}
@media (max-width: 768px) {
    .single-post .post-top {
        order: 1;
    }
    .single-post .post-content {
        order: 3;
    }
    .single-post .post-toc {
        order: 2;
    }
}
.single-slot {
    padding: 50px 0;
}
.single-slot .slot-wrapper {
    overflow: hidden;
    border-radius: 10px;
}
.single-slot .slot-wrapper .slot-title {
    padding: 20px;
    background: #fff;
}
.single-slot .slot-wrapper .slot-title h1 {
    margin: 0;
    color: #000;
}
.contact--page {
    background: var(--contact-background-color);
    padding-top: 5.313rem;
    padding-bottom: 4.125rem;
}
.contact--page .wpcf7 form .wpcf7-response-output {
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    background: #00a0d2;
    color: #fff;
    max-width: 489px;
    margin: 0 auto;
    text-align: center;
    border-radius: 1.25rem;
    padding: 1.313rem 1.438rem;
}
.contact--page .wpcf7 form.invalid .wpcf7-response-output,
.contact--page .wpcf7 form.unaccepted .wpcf7-response-output,
.contact--page .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    background: #ffb900;
    color: #000;
    max-width: 489px;
    margin: 0 auto;
    text-align: center;
    border-radius: 1.25rem;
    padding: 1.313rem 1.438rem;
}
.contact--title {
    font-family: inherit;
    font-size: 3rem;
    line-height: 4rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--contact-text-color);
    text-align: center;
}
@media only screen and (max-width: 1200px) {
    .contact--title {
        font-size: 2.5rem;
        line-height: 2.813rem;
    }
}
@media only screen and (max-width: 500px) {
    .contact--title {
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
}
.contact--content {
    position: relative;
}
.contact--content .wpcf7 {
    z-index: 2;
    position: relative;
}
.contact--img {
    position: absolute;
}
@media only screen and (max-width: 500px) {
    .contact--img {
        display: none;
    }
}
.contact--img.left-top {
    top: 3.125rem;
    left: 0;
}
.contact--img.left-middle {
    top: 12.25rem;
    left: 7.875rem;
}
.contact--img.left-bottom {
    top: 29.063rem;
    left: 3.563rem;
}
.contact--img.right-top {
    top: 3.75rem;
    right: 5.5rem;
}
.contact--img.right-middle {
    top: 19.063rem;
    right: 8.5rem;
}
.contact--img.right-bottom {
    top: 28.063rem;
    right: 0.688rem;
}
.form--items {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 2.188rem;
}
.form--item {
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 1.063rem 1.438rem 1.313rem;
    border: 0.063rem solid transparent;
    box-shadow: 0 0.25rem 0.25rem #00000026;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}
.form--item input,
.form--item textarea {
    max-width: 100%;
    width: 100%;
    border: unset !important;
    outline: none !important;
    font-family: sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: #9a9797;
    font-weight: 600;
}
@media only screen and (max-width: 500px) {
    .form--item input,
    .form--item textarea {
        font-weight: 400;
    }
}
.form--item textarea {
    padding: 0.8rem 0 1.4rem;
    resize: none;
}
.form--item .selected-flag {
    outline: none !important;
}
.form--item p {
    margin: 0;
}
.form--item .wpcf7-not-valid-tip {
    display: none !important;
}
.form--item:hover {
    border: 0.063rem solid #000000;
    box-shadow: 0 0.25rem 0.25rem #00000040;
}
.form--btn {
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form--btn input,
.form--btn .wpcf7-submit,
.form--btn button {
    width: fit-content;
    font-family: inherit;
    background: var(--contact-submit_background-color);
    color: var(--contact-submit_text-color);
    border: none;
    border-radius: 0.9rem;
    text-align: center;
    padding: 0.5rem 2.813rem;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.875rem;
    text-transform: uppercase;
    box-shadow: 0 0.25rem 0.25rem #00000040;
    margin-top: 3.563rem;
    margin-bottom: 2.37rem;
    outline: none;
    cursor: pointer;
}
.form--btn input:hover,
.form--btn .wpcf7-submit:hover,
.form--btn button:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #262d40;
    transform: translateY(-0.25em);
}
.form--btn p {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.form--btn .wpcf7-spinner {
    display: none !important;
}
.form--terms {
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form--terms span.wpcf7-list-item-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contact-text-color);
}
.form--terms span.wpcf7-list-item-label a {
    color: var(--contact-text-color) !important;
    text-decoration: underline;
}
.form--terms input[type='checkbox'] {
    vertical-align: bottom;
    accent-color: var(--contact-checkbox-color);
    width: 24px;
    height: 24px;
    box-shadow: 0 0.25rem 0.25rem #00000040;
    margin-right: 6px;
}
.form--error {
    color: var(--contact-error-text-color);
    text-align: center;
    font-size: 16px;
    margin-top: 12px;
}
.form--loader p {
    display: flex;
    justify-content: center;
    align-items: center;
}
.form--loader input {
    display: none !important;
}
.form--loader .wpcf7-spinner {
    width: 57px;
    height: 57px;
    display: flex;
    background-color: transparent !important;
}
.form--loader .wpcf7-spinner:before {
    content: '' !important;
    display: none !important;
}
body.page-template-default {
    background-color: var(--page-background-color);
}
.page--hero {
    min-height: 23rem;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 500px) {
    .page--hero {
        min-height: 15rem;
    }
}
.page--hero_image {
    margin: 0 auto;
    display: block;
}
.page--content {
    border-bottom-width: var(--page-border-bottom);
    border-bottom-style: solid;
    border-top-color: var(--page-border-color);
    border-bottom-color: var(--page-border-color);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    padding: 2.125rem 0 0;
    color: var(--page-text-color);
}
.page--content h2 {
    font-weight: 700;
    color: var(--page-title-color);
}
@media only screen and (max-width: 500px) {
    .page--content h2 {
        font-size: 1rem;
    }
}
.page--title {
    margin: 0 auto 15px;
    font-size: 3rem;
    line-height: 3.313rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: var(--page-title-color);
}
@media only screen and (max-width: 500px) {
    .page--title {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}
section.homepage-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
    overflow: hidden;
    background-image: url('../images/herobg.D5bpSfrC.png');
}
section.homepage-hero .fields-wrapper {
    position: relative;
    width: 100%;
    min-height: 23rem;
    text-align: center;
    padding-top: 1.5rem;
}
section.homepage-hero .fields-wrapper .hero-title {
    font-size: 40px;
    font-weight: 700;
}
section.homepage-hero .fields-wrapper .hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}
section.homepage-hero .fields-wrapper .hero-link {
    color: #fff;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
}
.main-banner-image {
    position: absolute;
    bottom: 0;
    opacity: 100%;
    width: 100%;
    display: block;
    max-width: 46.5rem;
    left: 50%;
    transform: translate(-50%);
}
.main-banner-text {
    max-width: 61.875rem;
    margin: auto;
}
.section--casinos-grid {
    padding: 40px 0;
}
.casino-item {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    display: flex;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3764705882));
    position: relative;
}
.casinos-grid .col-12:first-child .casino-item {
    border-radius: 0 0 8px 8px;
}
.casino-item--top {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    background-color: #000000bd;
}
.casino-item--top .casino-item-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    width: 50%;
}
.casino-item--top .casino-item-logo img {
    max-height: 50px;
}
.casino-item--top .casino-item-title {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 5px;
    height: 100%;
    background: #f2f7ff;
    font-weight: 800;
}
.casino-item--top .casino-item-title h2 {
    margin: 0;
}
.casino-item--top .casino-item-title .casino-item-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.casino-item--top .casino-item-title .casino-item-rating svg {
    height: 15px;
    fill: #fccb07;
}
.casino-item--top .casino-item-title p {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}
.casino-item--top .casino-item-title p.rating {
    font-size: 24px !important;
    font-weight: 600;
    color: #d56706;
    line-height: 0.6;
}
@media only screen and (max-width: 1024px) {
    .casino-item--top .casino-item-title {
        width: 100%;
        background: #fff;
        align-items: flex-start;
    }
}
@media only screen and (max-width: 768px) {
    .casino-item--top .casino-item-title {
        justify-content: center;
        gap: 30px;
    }
    .casino-item--top .casino-item-logo {
        padding: 40px 10px;
    }
}
@media only screen and (max-width: 1024px) {
    .casino-item--top {
        flex-direction: column;
    }
}
@media only screen and (max-width: 768px) {
    .casino-item--top {
        width: 100%;
    }
}
.casino-item--middle {
    width: 25%;
    background: #f2f7ff;
    padding: 15px;
    display: flex;
}
.casino-item--middle-left {
    padding: 0 12px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}
.casino-item--middle-left .casino-item-bonus {
    text-align: center;
    font-size: 12px;
    color: #000;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.casino-item--middle-left .casino-item-bonus p {
    margin: 0;
}
.casino-item--middle-left .casino-item-bonus .casino-item-bonus-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.casino-item--middle-left .casino-item-bonus-value {
    color: #fff;
    background: #ce2d4f;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}
.casino-item--middle-left .casino-item-bonus .play-button {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .casino-item--middle-left .casino-item-bonus .play-button {
        display: flex;
    }
}
.casino-item--middle-left .casino-item-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid;
}
.casino-item--middle-left .casino-item-features p {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: left;
    color: #000;
}
.casino-item--middle-left .casino-item-features p svg {
    width: 15px;
}
.casino-item--middle-left .casino-item-features p svg path {
    fill: #36c218;
}
.casino-item--middle-left .casino-item-payment-methods {
    padding: 10px 0;
}
.casino-item--middle-left .casino-item-payment-methods .row {
    display: flex;
    justify-content: center;
}
.casino-item--middle-right {
    padding: 0 12px;
    width: 50%;
}
@media only screen and (max-width: 1024px) {
    .casino-item--middle {
        width: 50%;
    }
}
@media only screen and (max-width: 768px) {
    .casino-item--middle {
        width: 100%;
    }
}
.casino-item--bottom {
    width: 25%;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f2f7ff;
}
.casino-item--bottom p {
    font-size: 10px;
    color: #535354;
    text-align: center;
    max-height: 40px;
    overflow: hidden;
    margin: 10px;
}
@media only screen and (max-width: 1024px) {
    .casino-item--bottom {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .casino-item {
        flex-direction: column;
    }
}
.slot-item {
    width: 100%;
    height: 100%;
    border: 1px solid #525252;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.slot-item--bottom {
    padding: 15px;
}
.slot-item--bottom h2 {
    margin-top: 0;
    color: #000;
}
a.play-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    padding: 16px;
    line-height: 1;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
a.play-button svg {
    width: 20px;
    fill: #fff;
}
a.play-button:hover {
    background: var(--secondary-color);
    color: #fff;
}
a.play-button:hover svg path {
    fill: #fff;
}
a.more-button {
    color: #fff;
    background: #ce2d4f;
    padding: 20px;
    border-radius: 5px;
    margin: 50px auto auto;
    transition: all 0.3s ease;
}
a.more-button:hover {
    background: #fccb07;
    color: #000;
}
h2.casinos_block_title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    max-width: 670px;
    margin: auto;
}
p.casinos_block_subtitle {
    max-width: 670px;
    text-align: center;
    margin: 20px auto 40px;
}
.casino-item-our-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
p.casino-disclaimer {
    font-size: 12px;
    line-height: 1.2;
}
.casino-item-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
}
.casinos-header--top {
    display: flex;
    justify-content: space-between;
    background: var(--header-color);
    color: #fff;
    padding: 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
@media only screen and (max-width: 768px) {
    .casinos-header--top {
        display: none;
    }
}
.casinos-header--top span {
    width: 25%;
    display: flex;
    justify-content: center;
    font-weight: 600;
}
@media only screen and (max-width: 1024px) {
    .casinos-header--top span.casino-bonus,
    .casinos-header--top span.casino-rating {
        display: none;
    }
}
.casinos-header--bottom {
    padding: 20px;
    justify-content: space-around;
    gap: 20px;
    display: flex;
    margin-bottom: 10px;
}
.casinos-header--bottom div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.casinos-header--bottom div img {
    width: 50px;
}
.casinos-header--bottom div p {
    margin: 0;
    font-size: 12px;
}
@media only screen and (max-width: 768px) {
    .casinos-header--bottom {
        background: transparent;
        margin-bottom: 40px;
    }
}
.flag-item {
    padding: 5px 20px;
    font-weight: 700;
    position: absolute;
    top: -1px;
    left: -1px;
    min-width: 96px;
    max-width: max-content;
    width: 100%;
    min-height: 16px;
    font-size: 16px;
    line-height: 1.25;
    color: #fff;
    display: flex;
    align-items: center;
    background-color: var(--main-color);
    border-top-left-radius: 9px;
    clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0 100%, 0 0);
    z-index: 1;
}
@media print {
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: ' (' attr(href) ')';
    }
    abbr[title]:after {
        content: ' (' attr(title) ')';
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}
.footer-logo {
    max-width: 130px;
}
.main-menu--desktop[data-astro-cid-d6vcou2g] {
    display: none;
}
.mobile--menu[data-astro-cid-d6vcou2g] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #4283b6;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 2px 5px #0000001a;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}
.mobile--menu[data-astro-cid-d6vcou2g].active {
    display: block;
    max-height: 80vh;
}
.mobile--trigger[data-astro-cid-d6vcou2g] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile--trigger[data-astro-cid-d6vcou2g] .icon-close[data-astro-cid-d6vcou2g],
.mobile--trigger[data-astro-cid-d6vcou2g].active
    .icon-menu[data-astro-cid-d6vcou2g] {
    display: none;
}
.mobile--trigger[data-astro-cid-d6vcou2g].active
    .icon-close[data-astro-cid-d6vcou2g] {
    display: inline-block;
}
.mobile--nav[data-astro-cid-d6vcou2g] {
    padding: 1rem;
}
.mobile--nav[data-astro-cid-d6vcou2g] ul[data-astro-cid-d6vcou2g],
.main-menu--list[data-astro-cid-d6vcou2g] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu--mobile[data-astro-cid-d6vcou2g]
    .main-menu--list[data-astro-cid-d6vcou2g]
    li[data-astro-cid-d6vcou2g] {
    margin-bottom: 1rem;
}
.main-menu--mobile[data-astro-cid-d6vcou2g]
    .main-menu--item__link[data-astro-cid-d6vcou2g] {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    background-color: #ffffff1a;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.main-menu--mobile[data-astro-cid-d6vcou2g]
    .main-menu--item__link[data-astro-cid-d6vcou2g]:hover,
.main-menu--mobile[data-astro-cid-d6vcou2g]
    .main-menu--item__link[data-astro-cid-d6vcou2g]:focus {
    background-color: #fff3;
}
@media (min-width: 768px) {
    .main-menu--desktop[data-astro-cid-d6vcou2g] {
        display: flex;
        justify-content: end;
        width: 100%;
    }
    .main-menu--mobile[data-astro-cid-d6vcou2g] {
        display: none;
    }
    .main-menu--desktop[data-astro-cid-d6vcou2g]
        .main-menu--item__link[data-astro-cid-d6vcou2g] {
        text-decoration: none;
    }
}
.main-menu--wrapper[data-astro-cid-d6vcou2g] {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}
.main-menu--list[data-astro-cid-d6vcou2g] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu--item__link[data-astro-cid-d6vcou2g] {
    color: var(--header-text-color) !important;
    font-size: 1rem;
    text-decoration: none;
    padding: 6px 3px 8px;
    font-weight: 600;
    display: block;
}
.logo-18[data-astro-cid-d6vcou2g],
.logo-18[data-astro-cid-sz7xmlte] {
    width: 55px;
}
:root {
    --accent: 136, 58, 234;
    --accent-light: 224, 204, 250;
    --accent-dark: 49, 10, 101;
    --accent-gradient: linear-gradient(
        45deg,
        rgb(var(--accent)),
        rgb(var(--accent-light)) 30%,
        white 60%
    );
}
html {
    font-family: system-ui, sans-serif;
    background: #13151a;
}
code {
    font-family: Menlo, Monaco, Lucida Console, Liberation Mono,
        DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
}
