@charset "UTF-8";
html {
    min-height: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 12px;
    line-height: 1.33;
    font-family: 'Exo 2', Arial, sans-serif;
    text-align: left;
    color: #000;
    background-color: #fff;
    overflow-y: overlay;
    overflow-x: clip;
    position: relative;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
body.overflow .main_header {
    top: 0;
    background-color: #2e8b8b;
    border-radius: 0;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}

body.overflow {
    overflow: clip;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --app-height: 100%;
}

input,
select {
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fff;
}

/* Hide images with an empty src attribute */
img[src=''] {
    display: none;
}

img {
    max-width: 100%;
}

/* Full link element styles */
a.full_link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

a {
    color: #1b69de;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.toggler {
    display: none;
    padding: 0 0 0 32px;
    margin: 0 0 0 32px;
    text-decoration: none;
    color: #fff;
    position: relative;
}
.toggler strong {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
}
.toggler span {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
}
.toggler em {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.toggler em:nth-child(1) {
    top: 4px;
}
.toggler em:nth-child(2) {
    top: 11px;
}
.toggler em:nth-child(3) {
    top: 18px;
}
.toggler.active em:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 11px;
}
.toggler.active em:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}
.toggler.active em:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 11px;
}

.main_header {
    width: 100%;
    height: 60px;
    background-color: rgba(46, 139, 139, 0);
    position: fixed;
    left: 0;
    top: 20px;
    z-index: 2;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.main_header.show_me {
    top: 0;
    background-color: #2e8b8b;
    border-radius: 0 0 48px 48px;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}
.main_header section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 0;
}
.logo a {
    display: inline-block;
    width: 190px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: contain;
    background-image: url('../images/favicon.svg');
}

.main_nav {
    font-size: 0;
}
.main_nav li {
    display: inline-block;
}
.main_nav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    -webkit-transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.main_nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.index_first {
    padding: 160px 0 210px;
    background-color: #2e8b8b;
    background-image: url('../images/first_bg.jpg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0 0 96px 96px;
}
.index_first section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.index_first .inner {
    width: calc(50% - 20px);
}
.index_first .inner h3 {
    padding: 0 0 20px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}
.index_first .inner h2 {
    padding: 0 0 32px;
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.index_first .inner p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}
.index_first .image {
    width: calc(35% - 20px);
    position: relative;
}
.index_first .image img {
    border-radius: 24px;
    -webkit-box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
}
.index_first .image strong {
    display: inline-block;
    padding: 6px 16px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    background-color: #2e8b8b;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 24px;
}
.index_first .image p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 96px;
    height: 96px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #b10000;
    border-radius: 50%;
    position: absolute;
    left: -32px;
    bottom: -32px;
    -webkit-box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.3);
}

.features_wrapper {
    margin: -90px 0 0;
}
.features_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.features_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 24px;
}
.features_grid article {
    padding: 32px;
    background-color: #fff;
    border-radius: 32px;
    text-align: center;
    -webkit-box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.features_grid article:hover {
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
}
.features_grid article:hover .icon {
    background-color: #b10000;
}
.features_grid .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-color: #2e8b8b;
    border-radius: 50%;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.features_grid h3 {
    padding: 24px 0 0;
    font-size: 24px;
    color: #014d4d;
    font-weight: 600;
}
.features_grid a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.tranding_wrapper {
    padding: 80px 0 80px;
}
.tranding_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.tranding_wrapper header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 0 40px;
}
.tranding_wrapper header p {
    padding: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b10000;
}
.tranding_wrapper header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #014d4d;
}
.tranding_wrapper header .link a {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #b10000;
    border-radius: 32px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.tranding_wrapper header .link a:hover {
    color: #014d4d;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px #b10000;
    box-shadow: inset 0 0 0 1px #b10000;
}

.tranding_grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 20px;
    justify-items: center;
}
.tranding_grid article {
    background-color: rgba(46, 139, 139, 0.15);
    border-radius: 32px;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    max-width: 600px;
    width: 100%;
}
.tranding_grid article:hover {
    background-color: rgba(46, 139, 139, 0.25);
    -webkit-box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
}
.tranding_grid article:hover .inner::before {
    -webkit-transform: translate(0, -4px);
    transform: translate(0, -4px);
}
.tranding_grid .image {
    position: relative;
}
.tranding_grid img {
    width: 100%;
    border-radius: 24px;
}
.tranding_grid .price {
    padding: 12px 16px;
    font-size: 16px;
    color: #fff;
    text-align: right;
    background-color: #2e8b8b;
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 8px;
}
.tranding_grid .price strong {
    display: block;
    font-weight: 600;
}
.tranding_grid .price em {
    font-size: 14px;
    text-decoration: line-through;
}
.tranding_grid .inner {
    padding: 20px 48px 32px 32px;
    position: relative;
}
.tranding_grid .inner::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('../images/bag_icon.svg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 40px;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    top: 12px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.tranding_grid h3 {
    font-size: 24px;
    color: #014d4d;
    font-weight: 700;
}
.tranding_grid p {
    padding: 0 0 10px;
    font-size: 18px;
    color: #0ca5a5;
}
.tranding_grid a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.popular_wrapper {
    padding: 60px 0 60px;
    background-color: rgba(177, 0, 0, 0.2);
    border-radius: 60px;
}
.popular_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.popular_wrapper header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 0 40px;
}
.popular_wrapper header p {
    padding: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b10000;
}
.popular_wrapper header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #014d4d;
}
.popular_wrapper header .link a {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #b10000;
    border-radius: 32px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.popular_wrapper header .link a:hover {
    color: #014d4d;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px #b10000;
    box-shadow: inset 0 0 0 1px #b10000;
}

.popular_grig {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 20px;
    justify-items: center;
}
.popular_grig article {
    max-width: 600px;
    width: 100%;
}
.popular_grig img {
    width: 100%;
}
.popular_grig img {
    border-radius: 32px;
}
.popular_grig .inner {
    padding: 32px;
    text-align: center;
}
.popular_grig h3 {
    padding: 0 0 20px;
    font-size: 24px;
    color: #014d4d;
    font-weight: 700;
}
.popular_grig p {
    padding: 0 0 10px;
    font-size: 18px;
    color: #0ca5a5;
}
.popular_grig .link a {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #b10000;
    border-radius: 32px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.popular_grig .link a:hover {
    color: #014d4d;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px #b10000;
    box-shadow: inset 0 0 0 1px #b10000;
}

.categories_wrapper {
    padding: 60px 0;
}
.categories_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.categories_wrapper header {
    padding: 0 0 32px;
    text-align: center;
}
.categories_wrapper header p {
    padding: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b10000;
}
.categories_wrapper header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #014d4d;
}

.categories_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 20px;
    font-size: 0;
}
.categories_grid figure {
    border-radius: 32px;
    background-color: #2e8b8b;
    position: relative;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.categories_grid figure:hover {
    -webkit-transform: translate(0, -4px);
    transform: translate(0, -4px);
    -webkit-box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.4);
}
.categories_grid figcaption {
    padding: 16px 20px;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.categories_grid img {
    width: 100%;
    border-radius: 32px;
}
.categories_grid a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main_footer {
    padding: 48px 0 32px;
    background-color: #2e8b8b;
    background-image: url('../images/footer_bg.jpg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 48px 48px 0 0;
}
.main_footer section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 32px;
    padding: 0 0 32px;
}

.footer_legal h4 {
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.legal_info {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.legal_info p {
    padding: 0 0 16px;
}

.legal_info strong {
    display: block;
    padding: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.footer_map h4 {
    padding: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.map_container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map_container iframe {
    display: block;
    width: 100%;
    height: 250px;
}

.footer_responsible {
    padding: 32px 0 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_responsible h4 {
    padding: 0 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.responsible_logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.responsible_logos a {
    display: inline-block;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    opacity: 0.85;
}

.responsible_logos a:hover {
    opacity: 1;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.responsible_logos img {
    height: 50px;
    width: auto;
    max-width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer_links {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_links_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.footer_links_inner a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    position: relative;
    padding: 4px 0;
}

.footer_links_inner a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: width 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: width 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.footer_links_inner a:hover {
    color: #fff;
}

.footer_links_inner a:hover::after {
    width: 100%;
}

.copyright {
    padding: 24px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.first_block {
    padding: 240px 0 120px;
    background-color: #2e8b8b;
    background-image: url('../images/page_head_bg.jpg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0 0 96px 96px;
}
.first_block section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.first_block h2 {
    padding: 0 0 24px;
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.first_block p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}
.first_block a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.contacts_wrapper {
    padding: 60px 0;
}
.contacts_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts_sides {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 24px;
    padding: 0 0 32px;
}

.contact_aside {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(46, 139, 139, 0.4);
    box-shadow: inset 0 0 0 1px rgba(46, 139, 139, 0.4);
}
.contact_aside h4 {
    padding: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: #b10000;
    text-transform: uppercase;
}
.contact_aside h3 {
    padding: 0 0 24px;
    font-size: 32px;
    font-weight: 700;
    color: #014d4d;
}
.contact_aside p {
    padding: 0 0 40px;
    font-size: 16px;
    color: #0ca5a5;
}
.contact_aside dl {
    padding: 0 0 0;
}
.contact_aside dt {
    padding: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #014d4d;
}
.contact_aside dd {
    padding: 0 0 24px;
    font-size: 16px;
    color: #0ca5a5;
    font-weight: 500;
}

.map_block {
    padding: 0 0 24px;
}

.form_side .button {
    padding: 12px 0 0;
}
.form_side .button button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #b10000;
    color: #fff;
    font-weight: 600;
    background-color: #b10000;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_side .button button:hover {
    color: #b10000;
    background-color: #fff;
}
.form_side .button svg {
    vertical-align: middle;
    margin: 0px 4px 0 0;
}

.form_grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.form_item {
    width: calc(50% - 12px);
}
.form_item.full {
    width: 100%;
}
.form_item p {
    padding: 0 0 2px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
}
.form_item input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 14px;
    border-radius: 6px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item input:focus {
    border-color: rgba(0, 0, 0, 0.6);
}
.form_item select {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 14px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) 50%;
    background-image: url('../images/select_white_pt.svg');
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item select:focus {
    border-color: rgba(0, 0, 0, 0.6);
}
.form_item textarea {
    display: block;
    width: 100%;
    height: 96px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 14px;
    border-radius: 6px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.form_item textarea:focus {
    border-color: rgba(0, 0, 0, 0.6);
}

.games_wrapper {
    padding: 60px 0;
}
.games_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.games_wrapper header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 0 40px;
}
.games_wrapper header p {
    padding: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b10000;
}
.games_wrapper header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #014d4d;
}
.games_wrapper select {
    display: block;
    min-width: 240px;
    width: 100%;
    padding: 8px 48px 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
    background-color: #b10000;
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) 50%;
    background-image: url('../images/select_white_pt.svg');
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_wrapper select:focus {
    border-color: rgba(0, 0, 0, 0.2);
}

.games_grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 20px;
    justify-items: center;
}
.games_grid article {
    background-color: rgba(46, 139, 139, 0.15);
    border-radius: 32px;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    max-width: 600px;
    width: 100%;
}
.games_grid article:hover {
    background-color: rgba(46, 139, 139, 0.25);
    -webkit-box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.2);
}
.games_grid article:hover .inner::before {
    -webkit-transform: translate(0, -4px);
    transform: translate(0, -4px);
}
.games_grid .image {
    position: relative;
}
.games_grid img {
    width: 100%;
    border-radius: 24px;
}
.games_grid .price {
    padding: 12px 16px;
    font-size: 16px;
    color: #fff;
    text-align: right;
    background-color: #2e8b8b;
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 8px;
}
.games_grid .price strong {
    display: block;
    font-weight: 600;
}
.games_grid .price em {
    font-size: 14px;
    text-decoration: line-through;
}
.games_grid .inner {
    padding: 20px 48px 32px 32px;
    position: relative;
}
.games_grid .inner::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('../images/bag_icon.svg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 40px;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    top: 12px;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.games_grid h3 {
    font-size: 24px;
    color: #014d4d;
    font-weight: 700;
}
.games_grid p {
    padding: 0 0 10px;
    font-size: 18px;
    color: #0ca5a5;
}
.games_grid a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.load_more {
    padding: 30px 0 20px;
    text-align: center;
}
.load_more a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #014d4d;
    text-decoration: none;
    background-color: #b10000;
    border-radius: 32px;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.load_more a:hover {
    color: #b10000;
    background-color: #014d4d;
}

.simple_wrapper {
    padding: 60px 0 60px;
}
.simple_wrapper section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.simple_wrapper .date {
    padding: 20px 0 0;
    font-size: 16px;
    color: #b10000;
    font-weight: 500;
}

.text {
    font-size: 16px;
    line-height: 1.33;
}
.text blockquote {
    position: relative;
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 20px 20px;
    margin: 0 0 20px;
    border-left: 4px solid #b10000;
    background: #f9f9f9;
}
.text blockquote::before {
    content: '“';
    position: absolute;
    top: -12px;
    left: 10px;
    font-size: 3rem;
    color: #ccc;
}
.text blockquote::after {
    content: '”';
    position: absolute;
    bottom: -24px;
    right: 10px;
    font-size: 3rem;
    color: #ccc;
}
.text h3 {
    padding: 0 0 12px;
    font-size: 24px;
    line-height: 1.33;
    font-weight: 700;
    color: #111;
}
.text p {
    padding: 0 0 16px;
    color: #333;
}
.text ul {
    padding: 0 0 16px;
}
.text li {
    padding: 0 0 0 16px;
    margin: 0 0 8px;
    position: relative;
}
.text li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #b10000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}
.text dl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 4px calc(100% - 120px);
    grid-template-columns: 100px calc(100% - 120px);
    grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 20px 4px;
    padding: 0 0 24px;
}
.text dt {
    font-weight: 600;
    color: #014d4d;
}
.text dd {
    color: #0ca5a5;
    font-weight: 500;
}

.disclamer_wrapper {
    padding: 0 0 32px;
}
.disclamer_wrapper section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.disclamer_wrapper article {
    max-width: 480px;
}
.disclamer_wrapper h3 {
    padding: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b10000;
}
.disclamer_wrapper p {
    padding: 0 0 8px;
    font-size: 16px;
    color: #0ca5a5;
}

.game_wrapper {
    height: 100vh;
    font-size: 0;
    position: relative;
}
.game_wrapper iframe {
    width: 100%;
    height: 100vh;
}

.cookie_consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(46, 139, 139, 0.98);
    -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s
        cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:
        transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
        -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cookie_consent.show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.cookie_consent_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.cookie_consent_text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cookie_consent_text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.cookie_consent_text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cookie_consent_text a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.cookie_consent_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cookie_accept,
.cookie_decline {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    text-transform: uppercase;
}

.cookie_accept {
    background-color: #fff;
    color: #2e8b8b;
}

.cookie_accept:hover {
    background-color: #f0f0f0;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cookie_decline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie_decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.age_verification_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition:
        opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
        visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:
        opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
        visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.age_verification_popup.show {
    opacity: 1;
    visibility: visible;
}

.age_verification_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.age_verification_content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 90%;
    padding: 48px 40px;
    background-color: #fff;
    border-radius: 32px;
    text-align: center;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.3s
        cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:
        transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
        -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.age_verification_popup.show .age_verification_content {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.age_verification_icon {
    margin: 0 auto 24px;
    width: 120px;
    height: 120px;
}

.age_verification_icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.age_verification_content h2 {
    padding: 0 0 16px;
    font-size: 32px;
    font-weight: 700;
    color: #014d4d;
    text-transform: uppercase;
}

.age_verification_content p {
    padding: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.age_question {
    padding: 16px 0 24px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2e8b8b !important;
}

.age_verification_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 24px 0 0;
}

.age_yes,
.age_no {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    -webkit-transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    text-transform: uppercase;
    min-width: 140px;
}

.age_yes {
    background-color: #2e8b8b;
    color: #fff;
}

.age_yes:hover {
    background-color: #014d4d;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 16px rgba(46, 139, 139, 0.3);
    box-shadow: 0 8px 16px rgba(46, 139, 139, 0.3);
}

.age_no {
    background-color: #b10000;
    color: #fff;
}

.age_no:hover {
    background-color: #8b0000;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 16px rgba(177, 0, 0, 0.3);
    box-shadow: 0 8px 16px rgba(177, 0, 0, 0.3);
}

body.age_verification_blocked {
    overflow: hidden;
}
