:root {
--policy-accent: #2b6cb0;
--policy-accent-hover: #1a4a80;
--policy-text: #2d3748;
--policy-text-light: #4a5568;
--policy-bg: #f7fafc;
--policy-card-bg: #ffffff;
--policy-border: #e2e8f0;
--policy-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
--policy-radius: 16px;
--policy-transition: 0.2s ease;
}
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
max-width: 100%;
font-family: 'Oswald', sans-serif;
scrollbar-color: rgba(255, 255, 255, 0.8) transparent;
scrollbar-width: thin;
}
body{
background: #5E5E5E;  
}
a {
font-size: 20px;
font-weight: 400;
margin: 5px 0;
color: #333;
background: 0;
border: 0;
text-transform: none;
margin: 0;
padding: 0;
cursor: pointer;
outline: none !important;
text-decoration: none;
}
a:hover {
color: #e379db;
text-transform: none;
cursor: pointer;
outline: none !important;
text-decoration: underline;
}
::-webkit-scrollbar {
width: 10px; 
height: 10px;
background: transparent;
}
::-webkit-scrollbar-track {
background: transparent;
margin: 5px 0;
}
::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
border: 2px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 1);
}
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
transition: opacity 0.5s ease;
}
body.preload {
overflow: hidden;
}
body.loaded .preloader {
opacity: 0;
pointer-events: none;
}
h1 {
font-size: 3rem;
font-weight: 600;
color: white;
}
h2 {
font-size: 2.5em;
font-weight: 600;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
position: relative;
display: inline-block;
overflow: hidden;
transition: color 0.5s ease;
}
h2::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 0%;
background: #E4669A;
z-index: -1;
transition: width 0.3s ease;
}
h2:hover::before {
width: 100%;
}
h2:hover {
color: white;
}
h3 {
font-size: 2.0em;
font-weight: 400;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.5em;
font-weight: 300;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}
.loader-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s;
}
.loader-overlay[style*="display: none"] {
display: none !important;
}
.circular-loader {
width: 50px;
height: 50px;
animation: rotate 2s linear infinite;
}
.loader-path {
stroke-dasharray: 150, 200;
stroke-dashoffset: -10;
animation: dash 1.5s ease-in-out infinite;
stroke-linecap: round;
}
@keyframes rotate {
100% { transform: rotate(360deg); }
}
@keyframes dash {
0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
50% { stroke-dasharray: 89, 200; stroke-dashoffset: -35; }
100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124; }
}
[data-editable-type="attribute"] {
position: relative !important;
display: inline-block;
}
.edit-pencil {
cursor: pointer;
transition: opacity 0.3s;
border-radius: 15px;
z-index: 1000;
}
[data-editable-type="attribute"] .edit-pencil {
position: absolute;
top: 10px;
right: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
[data-editable]:hover .edit-pencil {
opacity: 1;
}
.editor-overlay {
background: white !important;
animation: editorFadeIn 0.3s ease !important;
padding: 10px !important;
box-shadow: 0 0 10px rgb(0 0 0 / 64%) !important;
z-index: 10000 !important;
min-width: 400px;
}
@keyframes editorFadeIn {
from {
opacity: 0;
transform: translate(-50%, -40%);
}
to {
opacity: 1;
transform: translate(-50%, -50%);
}
}
.editor-overlay textarea {
transition: all 0.3s ease !important;
width: 100% !important;
height: 10vh !important;
color: black !important;
}
.editor-overlay editor-buttons {
display: flex !important;
flex-direction: row !important;
gap: 10px !important;
justify-content: center !important;
}
.editor-overlay textarea:focus {
border-color: #2196F3 !important;
box-shadow: 0 0 8px rgba(33,150,243,0.3) !important;
}
#seo-editor {
position: fixed;
top: 20px;
right: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
z-index: 10000;
width: 420px;
transition: transform 0.3s ease;
}
.seo-editor-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border-bottom: 1px solid #eee;
}
.toggle-editor {
background: none;
border: none;
font-size: 1.2em;
cursor: pointer;
padding: 5px;
}
.seo-editor-content {
padding-right: 15px;
padding-left: 15px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
#seo-editor.active .seo-editor-content {
max-height: 500px;
}
.form-group {
position: relative;;
}
.form-group input {
color: black !important;
}
.form-group label {
padding-top: 0px;
display: block;
font-size: 16px;
color: #666;
margin-bottom: 5px;
}
.editable-text {
padding: 8px;
border: 1px solid #eee;
border-radius: 6px;
min-height: 40px;
}
#seo-editor .edit-pencil {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.05);
padding: 5px;
border-radius: 4px;
}
.B87732 {
width: 240px;
height: 60px;
color: white;
border-radius: 50px;
cursor: pointer;
border: none;
}
.B87732 p {
color: black;
font-size: 28px;
font-weight: 300;
}
.V9724 {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
background: rgba(0, 0, 0, 0.3);
}
.V771323 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.V3311 {
position: relative;
z-index: 2;
color: white;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 20px;
align-items: flex-start;
}
.V772881 {
position: relative;
display: flex;
flex-direction: row;
gap: 1vh;
padding: 3vh;
z-index: 2;
}
.V578333{
color: white;
font-size: 1.8em;
font-weight: 500;
}
.V89222 {
display: flex;
flex-direction: column;
margin-left: 10vh;
align-items: center;
gap: 2vh;
}
.V8922257 {
display: flex;
flex-direction: column;
margin-left: 10vh;
align-items: flex-start;
gap: 2vh;
}
.V3311 h1 {
font-size: 4rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
max-width: 850px;
text-align: center;
}
.V3311 p {
max-width: 600px;
text-align: center;
}
.C09981 {
display: flex;
flex-direction: row;
}
.C78711 {
margin-left: 5vh;
font-size: 4.5em !important;
}
.C3788 {
display: flex;
flex-direction: row;
margin-bottom: 5vh;
}
.C0022 {
display: flex;
flex-direction: column;
max-width: 1400px;
}
.C1642 {
display: grid;
grid-template-columns: repeat(2, 1fr);
max-width: 1200px;
gap: 70px;
}
.C9011 {
display: flex;
flex-direction: column;
}
.C99113 {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
}
.C01322 {
width: 24px;
height: 24px;
background: #FFB500;
border-radius: 50px;
}
.C08711 {
margin-top: 10px;
margin-left: 5px;
overflow-y: auto;
max-height: 300px;
}
.C97821 {
display: flex;
writing-mode: vertical-lr;
transform: rotate(180deg);
align-items: center;
justify-content: center;
}
.C81134 {
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-right: 20vh;
}
.C81134 h2 {
color: #E4669A;
font-size: 5em;
margin-bottom: 4vh;
}
.C82452 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.C86113 {
position: relative;
display: flex;
width: 100%;
height: 300px;
overflow: hidden;
border-radius: 10px;
text-decoration: none;
color: white;
transition: transform .3s;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.C86113:hover {
text-decoration: none;
transform: scale(1.02);
}
.C86113-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: 0;
}
.C86113 h3 {
padding: 2vh;
position: relative;
z-index: 1;
}
.C89811 {
display: flex;
flex-direction: column;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 120px;
max-height: 120px;
word-break: break-word;
overflow-wrap: break-word;
padding-left: 6vh;
padding-bottom: 2vh;
padding-right: 2vh;
text-align: end;
font-size: 14px;
position: relative;
z-index: 1;
}
.C89811 p {
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
max-height: 100%;
}
.C881121 {
display: flex;
flex-direction: column;
height: 85%;
justify-content: center;
gap: 20px;
}
.M8722 {
display: flex;
flex-direction: column;
padding: 5.5rem 6.5rem;
min-height: 1000px;
width: 100%;
}
.M14242 {
display: flex;
flex-direction: column;
padding: 4.0rem 6.5rem;
width: 100%;
justify-content: center;
align-items: center;
}
.C87762 {
display: flex;
flex-direction: column;
width: 80%;
height: 95%;
background-color: #E4669A;
border-radius: 20px;
}
.C73321 {
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-right: 8vh;
margin-top: 4vh;
margin-bottom: 4vh;
}
.C73321 h2{
font-size: 4.0em;
}
.C78124 {
display: flex;
flex-direction: row;
text-align: center;
}
.C71134 {
display: flex;
flex-direction: column;
width: 50%;
align-items: center;
gap: 40px;
}
.C71134 h3{
font-size: 2.5em;
}
.C71134 p {
font-size: 1.8em;
}
.C53411 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.C67111 {
display: flex;
flex-direction: row;
align-items: center;
width: 100px;
}
.C71135 {
display: flex;
flex-direction: column;
width: 50%;
align-items: center;
gap: 20px;
}
.C41455 {
margin-bottom: 30px;
display: flex;
flex-direction: row;
gap: 30px;
align-items: flex-start;
}
.C78121 {
display: flex;
flex-direction: column;
position: relative;
width: 400px;
}
.C61343 {
width: 90%;
padding: 15px 0 10px 0;
font-size: 18px;
color: white;
background: transparent;
border: none;
border-bottom: 2px solid rgba(255, 255, 255, 0.8);
outline: none;
transition: 0.3s ease;
}
.C61343:focus {
border-bottom-color: #00fff5;
}
.C553332 {
resize: vertical;
min-height: 120px;
line-height: 1.5;
}
.C61134 {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #00e5ff, transparent);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.C71137 {
display: flex;
flex-direction: column;
width: 50%;
}
.C61343::placeholder {
color: rgba(255, 255, 255, 0.7);
}
.C61343:focus ~ .C61134 {
transform: scaleX(1);
}
.C92432 {
padding-right: 8vh;
padding-top: 2vh;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.C62122 {
background: white;
width: 150px;
height: 50px;
border: 0;
cursor: pointer;
}
.C62122:hover {
transform: scale(1.02);
}
.C62122::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 0%;
background: #E4669A;
z-index: -1;
transition: width 0.3s ease;
}
.C62122:hover::before {
width: 100%;
}
.C62122:hover {
color: white;
}
.C62122 p {
color: black;
font-weight: 300;
font-size: 24px;
}
.C67781 {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 2vh;
margin-bottom: 2vh;
}
.C34822 {
display: flex;
flex-direction: row;
width: 80%;
}
.C77111 {
display: flex;
align-items: baseline;
gap: 1vh;
}
.C77111 input {
width: 24px;
height: 24px;
}
.C674221 {
display: flex;
flex-direction: row;
align-items: center;
}
.C43355 {
display: flex;
flex-direction: row;
gap: 30px;
justify-content: center;
padding-left: 2vh;
padding-right: 2vh;
padding-top: 2vh;
}
.C821434 {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.C821434 h2 {
color: #E4669A;
font-size: 4em;
}
.C772321 {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.C781212 {
display: flex;
gap: 30px;
margin-top: 20px;
flex-direction: row;
}
.C889113 {
position: relative;
display: flex;
height: 400px;
overflow: hidden;
text-decoration: none;
color: white;
transition: transform .3s;
flex-direction: column;
justify-content: space-between;
}
.C889113-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: 0;
}
.C990221 {
display: flex;
flex-direction: row;
justify-content: flex-end;
padding: 2vh;
position: relative;
z-index: 1;
}
.C8822145 {
display: flex;
flex-direction: column;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 120px;
max-height: 120px;
word-break: break-word;
overflow-wrap: break-word;
padding-bottom: 2vh;
padding-right: 2vh;
text-align: start;
font-size: 14px;
position: relative;
z-index: 1;
align-items: start;
}
.C8822145 p {
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
max-height: 100%;
padding-left: 1vh;
}
.swiper__controls {
display: flex;
flex-direction: row;
justify-content: center;
gap: 40px;
margin-top: 2vh;
}
.swiper__btn {
display: flex;
width: 64px;
height: 64px;
border-radius: 50px;
background: white;
align-items: center;
justify-content: center;
border: none;
cursor: pointer;
}
.swiper__btn img {
width: 24px;
height: 24px;
}
.swiper__btn:hover {
transform: scale(1.02);
}
.C853173 {
position: relative;
display: flex;
height: 500px;
overflow: hidden;
text-decoration: none;
color: white;
transition: transform .3s;
flex-direction: column;
justify-content: space-between;
}
.C853173-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: 0;
}
.C853173 h3 {
margin: 2vh;
position: relative;
z-index: 1;
}
.swiper-container {
position: relative;
overflow: hidden;
width: 100%;
}
.swiper-button-prev, .swiper-button-next {
position: absolute;
top: 50%;
cursor: pointer;
width: 50px !important;
height: 50px !important;
z-index: 10 !important;
opacity: 0.9;
transition: all 0.3s;
background: #FFFFFF;
border-radius: 50% !important;
display: flex;
align-items: center !important;
justify-content: center !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border: none;
outline: none;
}
.swiper-button-next::after {
transform: rotate(-45deg);
margin-right: 4px;
content: '' !important;
}
.swiper-button-prev::after {
transform: rotate(135deg);
margin-left: 4px;
content: '' !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
content: '' !important;
width: 16px;
height: 16px;
border: solid #333;
border-width: 0 3px 3px 0;
display: inline-block;
}
.D782221 {
width: 100%;
height: 500px;
object-fit: cover;
}
.D075709 p {
position: absolute;
top: 20px;
left: 20px;
margin: 0;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.5);
padding: 8px 15px;
border-radius: 10px;
z-index: 2;
}
.D75734 {
display: flex;
flex-direction: column;
padding: 4.25rem 6.5rem;
min-height: 1080px;
width: 100%;
justify-content: center;
}
.D7545 {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 100%;
}
.D757656 {
position: relative;
width: 100%;
height: 600px;
}
.D732675 {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 20px;
}
.D757656 h2 {
position: absolute;
top: 20px;
left: 20px;
margin: 0;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.5);
padding: 8px 15px;
border-radius: 10px;
z-index: 2;
}
.D757656 p.block-content {
position: absolute;
bottom: 20px;
right: 20px;
margin: 0;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.5);
padding: 8px 15px;
border-radius: 10px;
z-index: 2;
}
.D758647 {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.D757457 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.F77075 {
display: grid;
gap: 12px;
}
.F72785 {
background: linear-gradient(180deg, rgba(15, 118, 110, 0.02), transparent 50%);
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--border);
}
.F5557610 {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 16px 18px;
background: white;
border: none;
text-align: left;
cursor: pointer;
transition: background var(--transition), transform var(--transition);
font-size: 16px;
font-weight: 600;
color: #071124;
}
.F5557610 h3 {
color: black;
}
.F7555187 p {
color: black;
}
.F84567 {
width: 20px;
height: 20px;
flex: 0 0 20px;
transform-origin: center;
transition: transform var(--transition);
color: var(--accent);
}
.F7555187 {
padding: 14px 18px 18px;
font-size: 20px;
color: black;
line-height: 1.5;
background: #ffffffc4;
border-top: 1px solid rgba(15, 118, 110, 0.04);
animation: panelFade .18s ease-out;
}
.N881121 {
display: flex;
flex-direction: column;
justify-content: center;
}
.N873191 {
display: flex;
flex-direction: column;
margin-top: 40px;
gap: 50px;
justify-content: center;
align-items: flex-start;
}
.N075105 {
display: flex;
flex-direction: column;  
}
.N075105 h2 {
margin-bottom: 1vh;
}
.N51067 {
width: 500px;
}
.N74757015 {
display: flex;
flex-direction: row;
gap: 50px;
cursor: pointer;
justify-content: center;
}
.N278881 {
position: relative;
}
.N278881 img {
width: 300px;
height: 300px;
border-radius: 50%;
}
.N782121 {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.N782121 p {
width: 900px;
max-height: 150px;
overflow: auto;
}
.N821377 {
background: white;
width: 150px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.N821377:hover {
transform: scale(1.02);
}
.N74757015:hover {
transform: scale(1.001);
}
.B8880123 {
background: white;
width: 200px;
height: 50px;
display: flex;
align-items: center;
z-index: 10000;
position: fixed;
top: 50%;
right: -80px;
transform: rotate(270deg);
border: 0;
font-size: 1.3em;
justify-content: center;
font-weight: 400;
cursor: pointer;
}
.B8880123::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 0%;
background: #E4669A;
z-index: -1;
transition: width 0.3s ease;
}
.B8880123:hover::before {
width: 100%;
}
.B8880123:hover {
color: white;
}
.A21141557 {
display: flex;
align-items: center;
justify-content: center;
}
.actions-swiper.swiper {
display: none;
}
.directions-swiper.swiper {
display: none;
}
.subscriptions-swiper.swiper {
display: none;
}
.blog-swiper.swiper {
display: none;
}
.A9878103 {
display: grid;
grid-template-columns: repeat(3, 1fr);
margin-top: 50px;
width: 90%;
gap: 20px;
}
.A2142489 {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.A234124127 {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
aspect-ratio: 1 / 1;
}
.A234124127 img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
display: block;
}
.A21399157 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
z-index: 2;
width: 70%;
padding: 12px;
text-align: center;
align-items: center;
justify-content: center;
max-height: 90%;
}
.A21399157 .A32521456576,
.A21399157 .A32525257 {
display: none;
}
.A2142489:hover .A21399157 h3 {
display: none;
}
.A2142489:hover .A21399157 .A32521456576,
.A2142489:hover .A21399157 .A32525257 {
display: flex;
}
.A2142489.active .A21399157 h3 {
display: none;
}
.A2142489.active .A21399157 .A32521456576, .A2142489.active .A21399157 .A32525257 {
display: flex;
align-items: center;
}
.A21399157 .A32521456576 {
flex: 1;
overflow-y: auto;
margin-bottom: 12px;
max-height: 250px;
}
.A21399157 .A32525257 {
margin-top: 0;
padding: 8px 16px;
background-color: white;
color: black;
border: none;
border-radius: 4px;
cursor: pointer;
}
.A21399157 .A32525257:hover {
transform: scale(1.02);
}
.B921377 {
display: flex;
flex-direction: row;
height: 70%;
}
.B7981090 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 70%;
}
.B921398157 {

}
.B7765492157 {
display: flex;
width: 50%;
align-items: center;
}
.B7765492157 img {
display: flex;
height: 70%;
width: 100%;
object-fit: cover;
border-radius: 20px;
}
.B989812057 {
display: flex;
flex-direction: column;
}
.B263787874 {
display: flex;
max-width: 1440px;
overflow: auto;
}
.B97766257 {
display: flex;
flex-direction: column;
width: 60%;
margin-top: 20px;
gap: 20px;
}
.B8872157 {
position: relative;
display: flex;
width: 100%;
height: 500px;
overflow: hidden;
border-radius: 10px;
text-decoration: none;
color: white;
transition: transform .3s;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.B8872157 h3 {
padding: 2vh;
position: relative;
z-index: 1;
}
.B0736757 {
max-width: 1200px;
}
.N792478857 {
max-width: 700px;
}
.N78293757 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 30px;
}
.N8872157 {
position: relative;
display: flex;
width: 100%;
height: 500px;
overflow: hidden;
border-radius: 10px;
text-decoration: none;
color: white;
transition: transform .3s;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.N8872157:hover {
transform: scale(1.01);
}
.N8872157 h3 {
padding: 2vh;
position: relative;
z-index: 1;
text-align: end;
}
.N89811 {
display: flex;
flex-direction: column;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 120px;
max-height: 120px;
word-break: break-word;
overflow-wrap: break-word;
padding-left: 6vh;
padding-bottom: 2vh;
padding-right: 2vh;
text-align: start;
font-size: 18px;
position: relative;
z-index: 1;
}
.I827472457 {
max-width: 700px;
color: #E4669A !important;
}
.I827472457 h2{
color: #E4669A !important;
margin-bottom: 4vh;
margin-top: 4vh;
}
.N758647 {
display: flex;
flex-direction: column;
justify-content: center;
}
.N8921378857 {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
border-radius: 16px;
}
.N8921378857:hover {
transform: scale(1.02);
}
.N234788214 {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.N8921378857 h3 {
position: absolute;
top: 20px;
left: 20px;
z-index: 2;
margin: 0;
max-width: 60%;
text-align: right;
}
.N936771257 {
position: absolute;
right: 20px;
bottom: 20px;
z-index: 2;
max-width: 70%;
}
.N936771257 p {
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
.A4782134 {
display: flex;
flex-direction: column;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
color: white;
padding: 10px 20px;
border-radius: 8px;
}
.K2142489 {
position: relative;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.K92193021:hover {
transform: scale(1.02);
}
.K92193021 p {
background: #0000008a;
padding: 5px;
}
.A75472843757 {
text-align: left !important;
}
.A1642 {
display: flex;
flex-direction: column;
gap: 20px;
}
.A7562757 {
display: flex;
flex-direction: column;
}
.A7562757 p {
max-width: 900px;
}
.A97821 {
display: flex;
align-items: center;
max-width: 600px;
}
.A97821 img {
object-fit: cover;
height: 60%;
border-radius: 20px 0px 0px 20px;
}
.A743562457 {
display: flex;
flex-direction: row;
gap: 50px;
}
.A7234523657 {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.A346346857 {
display: flex;
flex-direction: column;
gap: 20px;
}
.M872257 {
display: flex;
flex-direction: column;
padding: 5.5rem 6.5rem;
min-height: 1080px;
width: 100%;
justify-content: center;
}
.A12321457 {
aspect-ratio: 1 / 1;
width: 400px;
height: 400px;
}
.A7234523657 img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
display: block;
}
.A7234523657 p {
max-width: 300px;
text-align: center;
}
.A346346857 p {
max-width: 1200px;
}
.N87319157 {
display: flex;
flex-direction: column;
margin-top: 40px;
gap: 50px;
justify-content: center;
align-items: center;
}
.A72347841 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.A124812457 {
background: black;
padding: 10px;
border-radius: 10px;
text-align: center;
}
.A124812457:hover {
transform: scale(1.01);
}
.A25382357 {
display: flex;
flex-direction: column;
gap: 10px;
}
.A25382357 p {
max-width: 700px;
}
.R32525657 {
display: flex;
position: fixed;
padding: 12px 28px;
background: #E4669A;
color: white;
border: none;
font-size: 16px;
cursor: pointer;
right: 20px;
bottom: 10px;
font-weight: 500;
transition: background 0.3s;
z-index: 1000;
align-items: center;
justify-content: center;
}
.R32525657:hover {
background: white;
color: black;
}
.R41457 {
display: none;
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.6);
z-index: 10000;
align-items: center;
justify-content: center;    
}
.R23526557 {
background: #fff;
padding: 30px;
border-radius: 12px;
max-width: 480px;
width: 90%;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);   
}
.R23526557 p {
margin-top: 0;
font-size: 22px;
color: black;
font-weight: 400;
}
.R23526557 .close-modal {
position: absolute;
top: 12px; right: 16px;
background: none;
border: none;
font-size: 28px;
cursor: pointer;
color: #888;
}
.R32143215457 label {
display: block;
margin: 12px 0 4px;
font-weight: bold;
}
.R32143215457 input[type="text"],
.R32143215457 input[type="tel"],
.R32143215457 textarea,
.R32143215457 select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 15px;
box-sizing: border-box;
}
.R32143215457 textarea {
resize: vertical;
min-height: 80px;
}
.R32143215457 .R1231457 {
display: flex;
gap: 8px;
font-size: 28px;
cursor: pointer;
color: #ccc;
}
.R32143215457 .R1231457 .R12452357.selected {
color: #fd7e14;
}
.R32143215457 .R12454357 {
display: flex;
align-items: flex-start;
gap: 8px;
margin-top: 16px;
font-size: 14px;
}
.R32143215457 .R12454357 input {
margin-top: 3px;
}
.R32143215457 .R1234243457 {
margin-top: 20px;
width: 100%;
padding: 12px;
background: #28a745;
color: white;
border: none;
border-radius: 6px;
font-size: 17px;
cursor: pointer;
}
.R32143215457 .R1234243457:disabled {
background: #aaa;
cursor: not-allowed;
}
.R211457 {
margin-top: 10px;
font-size: 14px;
text-align: center;    
}
.O192837 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.O482736 {
border-radius: 10px 10px 0px 0px;
padding: 15px;
background: #404040;
height: 300px;
text-align: end;
display: flex;
flex-direction: column;
gap: 10px;
}
.O882736-comment {
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: auto;
text-overflow: ellipsis;
word-break: break-word;
overflow-wrap: break-word;
}
.O782736-rating {
color: white;
}
.O592837 {
display: none;
}
.O291837 {
margin-top: 20px;
text-align: left;
}
.O381927 {
padding: 10px 24px;
background: #333;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
width: 60%;
height: 60px;
}
.C7812457 {
display: flex;
flex-direction: row;
text-align: center;
justify-content: center;
}
.C7332157 {
display: flex;
flex-direction: row;
margin-left: 8vh;
margin-top: 4vh;
margin-bottom: 4vh;
}
.R12452357 {
cursor: pointer;
font-size: 24px;
}
.R12452357.active {
color: gold;
text-shadow: 0 0 5px orange;
}
.C8776257 {
display: flex;
flex-direction: column;
width: 70%;
height: 95%;
background-color: #E4669A;
border-radius: 20px;
}
.AU-auth-container {
width: 600px;
margin-top: 120px;
padding: 30px;
background: #5b5b5b;
box-shadow: 7px 9px 9px -4px rgba(0, 0, 0, 0.1);
}
.C814212457 {
display: flex;
justify-content: center;
}
.AU-cabinet { max-width: 600px;
margin: 40px auto;
padding: 30px;
background: #fff;
border-radius: 12px;
}
.AU-auth-title {
text-align: center;
margin-bottom: 20px;
font-family: 'Oswald',
sans-serif;
}
.AU-form {
display: flex;
flex-direction: column;
gap: 16px;
}
.AU-field {
display: flex;
flex-direction: column;
gap: 4px;
}
.AU-label {
font-weight: 500;
font-size: 1em;
color: white;
}
.AU2314557 {
color: white;
}
.AU32423557 {
color: white;
}
.AU-input { padding: 10px 14px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
transition: 0.2s;
}
.AU-input:focus {
border-color: #2196F3;
outline: none;
box-shadow: 0 0 0 2px rgba(33,150,243,0.2);
}
.AU-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
cursor: pointer;
}
.AU-checkbox input {
width: 18px;
height: 18px;
}
.AU-button {
background: #cf938b;
color: #fff;
padding: 12px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
font-weight: 600;
transition: 0.2s;
}
.AU-button:hover {
background: #b7867f;
}
.AU-error {
background: #ffebee;
color: #c62828;
padding: 10px;
border-radius: 6px;
margin-bottom: 15px;
}
.AU-success {
background: #e8f5e9;
color: #2e7d32;
padding: 10px;
border-radius: 6px;
margin-bottom: 15px;
}
.AU-links {
text-align: center;
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 8px;
}
.AU-user-menu {
display: flex;
align-items: center;
gap: 8px;
}
.AU-button-login, .AU-button-register {
padding: 6px 14px;
font-size: 14px;
text-decoration: none;
border: 1px solid #ffffff;
color: #ffffff;
background: transparent;
transition: 0.2s;
}
.AU-button-login:hover, .AU-button-register:hover {
background: white;
color: black;
}
.AU-user-greeting {
font-weight: 500;
text-decoration: none;
padding: 6px 12px;
color: white;
}
.H21321757 {
display: flex;
align-items: center;
}
.C100 {
display: flex;
min-height: calc(100vh - 140px);
background: #f4f6f9;
font-family: inherit;
margin-top: 5%;
width: 100%;
}
.C200 {
width: 260px;
background: #404040;
padding: 30px 0;
display: flex;
flex-direction: column;
gap: 4px;
box-shadow: 2px 0 15px rgba(0,0,0,0.05);
}
.C201 {
display: flex;
align-items: center;
padding: 14px 30px;
color: #bdc3c7;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
transition: all 0.2s ease;
border-left: 3px solid transparent;
}
.C201:hover {
background: rgba(255,255,255,0.05);
color: #fff;
}
.C202 {
background: rgba(26, 188, 156, 0.15);
color: #1abc9c !important;
border-left-color: #1abc9c;
font-weight: 600;
}
.C300 {
flex: 1;
padding: 40px;
background: #fff;
border-radius: 12px 0 0 12px;
box-shadow: -4px 0 20px rgba(0,0,0,0.03);
}
.C310 {
font-size: 1.6rem;
color: #2c3e50;
margin: 0 0 25px 0;
font-weight: 600;
}
.C301, .C304 {
background: #ffffff;
border: 1px solid #edf2f7;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 6px rgba(0,0,0,0.02);
max-width: 520px;
}
.C302, .C305 {
display: flex;
flex-direction: column;
gap: 20px;
}
.C303, .C306 {
padding: 12px 28px;
background: #1abc9c;
color: #fff;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
align-self: flex-start;
}
.C303:hover, .C306:hover {
background: #16a085;
}
.C401 {
display: block;
font-size: 0.9rem;
font-weight: 500;
color: #4a5568;
margin-bottom: 6px;
}
.C400 {
width: 100%;
padding: 12px 16px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-size: 1rem;
background: #f8fafc;
transition: border 0.2s, box-shadow 0.2s;
box-sizing: border-box;
}
.C400:focus {
outline: none;
border-color: #1abc9c;
box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
background: #fff;
}
.C500, .C501 {
padding: 12px 20px;
border-radius: 8px;
margin-bottom: 25px;
font-weight: 500;
font-size: 0.95rem;
}
.C500 {
background: #fff5f5;
color: #c53030;
border: 1px solid #feb2b2;
}
.C501 {
background: #f0fff4;
color: #276749;
border: 1px solid #9ae6b4;
}
.C600 {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.C601 {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.02);
transition: transform 0.2s, box-shadow 0.2s;
}
.C601:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.C602 {
font-size: 1.1rem;
font-weight: 600;
color: #2d3748;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}
.C603 {
font-size: 0.9rem;
color: #718096;
margin-bottom: 12px;
line-height: 1.4;
}
.C604 {
margin-top: 10px;
font-size: 0.9rem;
color: #4a5568;
display: flex;
justify-content: space-between;
align-items: center;
}
.C610 {
width: 100%;
background: #edf2f7;
border-radius: 100px;
height: 8px;
margin: 10px 0;
overflow: hidden;
}
.C611 {
height: 100%;
border-radius: 100px;
background: linear-gradient(90deg, #1abc9c, #2ecc71);
transition: width 0.3s;
}
.C612 {
display: flex;
justify-content: space-between;
font-size: 0.85rem;
color: #a0aec0;
margin-top: 8px;
}
.C620 {
background: #f7fafc;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 15px;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 12px;
}
.C621 {
background: #ebf8ff;
color: #2b6cb0;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
}
.C622 { color: #38a169; background: #f0fff4; }
.C623 {
font-size: 0.95rem;
color: #2d3748;
}
.C700 {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 25px;
}
.C701 {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #1abc9c;
}
.C800 {
margin-top: 10px;
}
.C801 {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.C801 p {
color: black;
}
.C807 {
padding: 8px 16px;
background: #1abc9c;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
font-weight: 500;
}
.C802 {
display: grid;
grid-template-columns: 60px repeat(7, 1fr);
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: auto;
font-size: 0.85rem;
min-width: 900px;
}
.C802-wrap {
width: 100%;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
touch-action: pan-x;
}
.C803 {
background: #f8fafc;
padding: 10px 4px;
text-align: center;
font-weight: 600;
border-bottom: 1px solid #e2e8f0;
border-right: 1px solid #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
min-height: 40px;
}
.C803:first-child {
border-left: none;
}
.C804 {
border-bottom: 1px solid #e2e8f0;
border-right: 1px solid #e2e8f0;
padding: 4px;
position: relative;
min-height: 60px;
background: #fff;
}
.C804:nth-child(8n) {
border-right: none;
}
.C805 {
background: #1abc9c;
color: #fff;
border-radius: 4px;
padding: 3px 4px;
font-size: 0.65rem;
margin: 2px 0;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
line-height: 1.3;
overflow: hidden;
gap: 3px;
}
.C805-left {
flex: 1 1 auto;
display: flex;
flex-direction: column;
min-width: 0;
}
.C805-right {
flex: 0 0 auto;
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
white-space: nowrap;
}
.C805-time {
font-weight: 600;
font-size: 1.2rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.C805-trainer {
font-size: 1.2rem;
opacity: 0.9;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.C805-capacity {
font-size: 1.2rem;
font-weight: 600;
}
.C805-direction {
font-size: 1.2rem;
opacity: 0.9;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.C805-status {
font-size: 0.9rem;
padding: 1px 3px;
border-radius: 3px;
background: rgba(255,255,255,0.25);
margin-top: 2px;
}
.C805-duration {
font-size: 0.9rem;
}
.C805.cancelled {
font-size: 1.2rem;
background: #e74c3c;
text-decoration: line-through;
opacity: 0.7;
}
.C805.rescheduled {
font-size: 1.2rem;
background: #f39c12;
}
.C805.past {
background: #95a5a6;
opacity: 0.6;
text-decoration: line-through;
pointer-events: none;
}
.C806 {
display: flex;
gap: 10px;
margin-top: 10px;
}
.C807 {
padding: 8px 16px;
background: #1abc9c;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
font-weight: 500;
}
.C810 {
background: #f0fff4;
border: 1px solid #c6f6d5;
border-radius: 8px;
padding: 15px;
margin-bottom: 25px;
}
.C811 {
font-weight: 600;
color: #276749;
margin-bottom: 8px;
}
.C812 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 0;
border-bottom: 1px dashed #c6f6d5;
}
.C812:last-child {
border: none;
}
.C813 {
font-size: 0.9rem;
}
.C900-overlay {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1000;
justify-content: center;
align-items: center;
}
.C900-modal {
background: #fff;
border-radius: 12px;
padding: 30px;
max-width: 450px;
width: 90%;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
position: relative;
}
.C900-close {
position: absolute;
top: 15px;
right: 20px;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: #a0aec0;
}
.C900-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 20px;
color: #2d3748;
}
.C900-text {
margin-bottom: 10px;
color: #4a5568;
}
.C900-select {
width: 100%;
padding: 10px;
border: 1px solid #e2e8f0;
border-radius: 8px;
margin-bottom: 15px;
}
.C900-btn {
padding: 10px 24px;
background: #1abc9c;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
margin-right: 10px;
}
.C900-btn.danger {
background: #e74c3c;
}
.C1000 {
width: 100%;
border-collapse: collapse;
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.C1001 {
background: #f8fafc;
}
.C1002 {
padding: 12px 15px;
text-align: left;
font-weight: 600;
color: #4a5568;
border-bottom: 1px solid #e2e8f0;
}
.C1003 {
padding: 12px 15px;
border-bottom: 1px solid #f0f0f0;
color: #2d3748;
font-size: 0.95rem;
}
.C1004 {
padding: 4px 10px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: 600;
display: inline-block;
}
.C1004.scheduled {
background: #ebf8ff;
color: #2b6cb0;
}
.C1004.cancelled {
background: #fff5f5;
color: #c53030;
}
.C1004.rescheduled {
background: #fffaf0;
color: #c05621;
}
.C1004.completed {
background: #f0fff4;
color: #276749;
}
.C32423557 {
background: #f0fff4;
border: 1px solid #c6f6d5;
border-radius: 10px;
padding: 20px;
margin-bottom: 25px;
}
.C23423557 {
margin: 0 0 10px;
font-weight: 600;
color: #276749;
}
.C23523557 {
font-size: 2rem;
letter-spacing: 4px;
font-weight: bold;
color: #1abc9c;
}
.C23523557 p {
color: black;
}
.C744557 {
background: #ebf8ff;
border: 1px solid #90cdf4;
border-radius: 10px;
padding: 15px;
color: #2b6cb0;
margin-bottom: 20px;
}
.C999 {
display: none;
padding: 12px 18px;
background: #cf938b;
color: #fff;
font-size: 18px;
cursor: pointer;
user-select: none;
}
.C42343457 {
margin-top: auto;
padding: 0 20px;
}
.P23900238957 {
max-width: 1200px;
margin: 40px auto;
padding: 40px 32px;
background-color: var(--policy-card-bg);
border-radius: var(--policy-radius);
box-shadow: var(--policy-shadow);
color: var(--policy-text);
line-height: 1.7;
font-size: 16px;
box-sizing: border-box;
transition: box-shadow var(--policy-transition);
}
.P23900238957:hover {
box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08), 0 10px 15px -8px rgba(0, 0, 0, 0.04);
}
.P23900238957 h1 {
font-size: 2.2rem;
font-weight: 700;
color: #1a202c;
margin: 0 0 16px;
line-height: 1.3;
letter-spacing: -0.5px;
border-bottom: 2px solid var(--policy-accent);
padding-bottom: 16px;
}
.P23900238957 h2 {
font-size: 1.6rem;
font-weight: 600;
color: #1a202c;
margin: 40px 0 16px;
position: relative;
padding-left: 20px;
}
.P23900238957 h2::before {
content: '';
position: absolute;
left: 0;
top: 4px;
bottom: 4px;
width: 4px;
background-color: var(--policy-accent);
border-radius: 4px;
}
.P23900238957 h3 {
font-size: 1.2rem;
font-weight: 600;
color: var(--policy-accent);
margin: 28px 0 12px;
letter-spacing: -0.2px;
}
.P23900238957 p {
margin: 0 0 16px;
color: var(--policy-text-light);
text-align: justify;
hyphens: auto;
word-break: break-word;
}
.P23900238957 p:last-child {
margin-bottom: 0;
}
.P23900238957 a {
color: var(--policy-accent);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: all var(--policy-transition);
font-weight: 500;
}
.P23900238957 a:hover {
color: var(--policy-accent-hover);
border-bottom-color: var(--policy-accent-hover);
}
.P23900238957 a:active {
opacity: 0.8;
}
.P23900238957 *:last-child {
margin-bottom: 0;
}
@media (max-width: 1440px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2.2em;
}
h3 {
font-size: 1.5em;
}
p {
font-size: 1.4em;
}
.M8722 {
padding: 4.25rem 3.5rem;
}
.C62122 p {
color: black;
font-weight: 300;
font-size: 24px;
}
.C73321 h2 {
font-size: 3.0em;
}
.C71134 h3 {
font-size: 1.7em;
}
.C71134 p {
font-size: 1.3em;
}
.C77111 p {
font-size: 1.0em;
}
.C77111 input {
width: 20px;
height: 20px;
}
.C71134 {
width: 40%;
}
.C78121 {
width: 250px;
}
.C62122 {
width: 150px;
height: 50px;
}
.C821434 h2 {
font-size: 4.0em !important;
}
.C821434 {
flex-direction: row;
justify-content: center;
margin: 0;
}
.C78711 {
margin-left: 5vh;
font-size: 4.0em !important;
}
.C01322 {
width: 16px;
height: 16px;
}
.C1642 {
gap: 40px;
}
.C81134 h2 {
font-size: 4.0em !important;
}
.C81134 {
flex-direction: row;
justify-content: center;
margin: 0;
}
.C82452 {
grid-template-columns: repeat(2, 1fr);
}
.D75734 {
padding: 4.25rem 3.5rem;
}
.N74757015 {
gap: 20px;
}
.N782121 p {
width: 600px;
}
.N78293757 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.A97821 {
max-width: 400px;
}
.A7562757 p {
max-width: 600px;
}
.C89281 {
padding: 40px 0px 0px 0px;
}
.M872257 {
min-height: auto;
padding: 4.25rem 3.5rem;
}
.H21321757 {
margin-top: 2%;
}
}
@media (max-width: 1024px) {
.B87732 {
width: 200px;
height: 50px;
color: white;
border-radius: 50px;
cursor: pointer;
}
.B87732 p {
color: black;
font-size: 20px;
font-weight: 300;
}
h2 {
font-size: 1.7em;
margin-bottom: 1vh;
}
h1 {
font-size: 2.0rem;
}
.C73321 h2 {
font-size: 2.0em;
}
.C62122 {
width: 120px;
height: 40px;
}
.C87762 {
width: 90%;
height: 80%;
}
.C553332 {
min-height: 70px;
}
.C67781 {
padding-top: 4vh;
}
.C62122 p {
color: black;
font-weight: 300;
font-size: 18px;
}
.C71134 h3 {
font-size: 1.4em;
}
.C71134 p {
font-size: 1.0em;
}
.C78121 {
width: 200px;
}
.C821434 h2 {
font-size: 3.0em !important;
}
.V3311 {
align-items: center;
}
.V89222 {
margin: 0;
}
.V772881 {
padding: 2vh;
}
.V578333{
font-size: 1.4em;
font-weight: 400;
}
.V3311 h1 {
font-size: 2rem;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
max-width: 550px;
text-align: center;
}
.C1642 {
grid-template-columns: repeat(1, 1fr);
}
.C09981 {
display: flex;
flex-direction: column;
}
.C97821 {
display: none;
align-items: center;
justify-content: center;
}
.C78711 {
margin-left: 5vh;
font-size: 3.5em !important;
writing-mode: horizontal-tb;
transform: rotate(180deg);
}
.C89811 p {
-webkit-line-clamp: 2;
}
.C89811 {
height: 80px;
}
.C82452 {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.C81134 h2 {
font-size: 3.0em !important;
}
.D782221 {
height: 300px;
}
.D757656 {
height: 400px;
}
.D757656 h2 {
top: 10px;
left: 10px;
padding: 5px 10px;
border-radius: 5px;
}
.D757656 p.block-content {
position: absolute;
bottom: 10px;
right: 10px;
padding: 5px 10px;
border-radius: 5px;
}
.D75734 {
min-height: auto;
}
.D757656 h2 {
top: 10px;
left: 10px;
padding: 5px 10px;
border-radius: 5px;
}
.D757656 p.block-content {
position: absolute;
bottom: 10px;
right: 10px;
padding: 5px 10px;
border-radius: 5px;
}
.D757457 {
grid-template-columns: repeat(1, 1fr);
}
.N782121 p {
width: 400px;
}
.N278881 img {
width: 200px;
height: 200px;
border-radius: 50%;
}
.N821377 {
width: 130px;
height: 30px;
font-size: 1.1em;
}
.A32525257 {
font-size: 0.7em;
}
.B97766257 {
width: 100%;
}
.N8872157 {
height: 400px;
}
.V8922257 {
margin: 0;
}
.A7562757 p {
max-width: 100%;
}
.A97821 {
max-width: 100%;
justify-content: center;
}
.A97821 img {
object-fit: cover;
width: 700px;
border-radius: 20px;
}
.A743562457 {
align-items: center;
}
.A12321457 {
width: 300px;
height: 300px;
}
.H21321757 {
margin-top: 5%;
}
}
@media (max-width: 768px) {
.M8722 {
min-height: auto;
padding: 4.25rem 3.5rem;
}
#seo-editor {
width: 280px;
right: 10px;
}
h1 {
font-size: 1.7rem;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.2em;
}
p {
font-size: 1.2em;
}
.C87762 {
width: 100%;
height: 80%;
}
.M14242 {
padding: 4.25rem 1.0rem;
}
.C61343 {
font-size: 14px;
}
.C553332 {
min-height: 80px;
}
.C73321 h2 {
font-size: 1.7em;
}
.C41455 {
gap: 10px;
}
.C71134 h3 {
font-size: 1.1em;
}
.C71134 p {
font-size: 0.7em;
}
.C77111 p {
font-size: 0.7em;
}
.C77111 input {
width: 18px;
height: 18px;
}
.C77111 a {
font-size: 16px;
}
.C41455 {
margin-bottom: 0px;
}
.C87762 {
height: 60%;
}
.C821434 h2 {
font-size: 2.5em !important;
}
.C86113 {
height: 200px;
}
.V772881 {
padding: 2vh;
}
.V578333{
font-size: 1.2em;
font-weight: 400;
}
.N873191 {
display: none;
}
.subscriptions-swiper.swiper {
display: block;
width: 100%;
}
.subscriptions-swiper .swiper-slide {
display: flex;
justify-content: center;
}
.directions-swiper.swiper {
display: block;
width: 100%;
}
.directions-swiper .swiper-slide {
display: flex;
justify-content: center;
}
.N74757015 {
width: 100%;
}
.N74757015 {
flex-direction: column;
cursor: pointer;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.N782121 {
flex-direction: column;
justify-content: center;
align-items: center;
}
.N782121 p {
width: 100%;
overflow: auto;
text-overflow: ellipsis;
word-break: break-word;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.N278881 img {
width: 250px;
height: 250px;
border-radius: 50%;
}
.B8880123 {
width: 150px;
height: 40px;
right: -50px;
}
.A234124127 {
width: 100%;
overflow: hidden;
}
.A21141557 .A9878103 {
display: none;
}
.blog-swiper.swiper {
display: block;
width: 100%;
}
.blog-swiper .swiper-slide {
display: flex;
justify-content: center;
}
.actions-swiper.swiper {
display: block;
width: 100%;
}
.B921377 {
display: flex;
flex-direction: column;
height: 100%;
gap: 20px;
}
.B7981090 {
width: 100%;
}
.B7765492157 {
width: 100%;
}
.C881121 {
gap: 10px;
}
.B8872157 {
height: 300px;
}
.I827472457 h2 {
margin: 0px;
}
.N78293757 {
grid-template-columns: repeat(1, 1fr);
}
.N8872157 {
height: 350px;
}
.A97821 img {
width: 400px;
}
.C89281 {
padding: 0px 0px 40px 0px;
}
.C3788 {
margin-bottom: 1vh;
}
.A743562457 {
flex-direction: column;
gap: 10px;
}
.O482736 {
border-radius: 10px;
}
.O192837 {
grid-template-columns: 1fr;
margin-top: 20px;
}
.O482736 {
max-height: 250px;
}
.O192837 {
gap: 10px;
}
.R12452357 {
cursor: pointer;
font-size: 20px;
}
.C71137 {
width: 60%;
}
.N8921378857 {
height: 300px;
}
.C8776257 {
width: auto;
}
.A2142489 {
margin-top: 20px;
}
.AU-auth-container {
margin: 20px 10px;
padding: 20px;
}
.AU-user-menu {
order: -1;
justify-content: flex-end;
}
.C300 {
padding: 20px;
}
.C100 {
flex-direction: column;
}
.C200 {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 260px;
transform: translateX(-100%);
transition: transform 0.25s ease;
z-index: 1000;
box-shadow: 2px 0 20px rgba(0,0,0,0.2);
}
.C200.open {
transform: translateX(0);
}
.C201 {
justify-content: center;
padding: 12px 15px;
border-left: none;
border-bottom: 2px solid transparent;
font-size: 0.9rem;
}
.C202 {
border-bottom-color: #1abc9c;
border-left: none;
background: transparent;
}
.C300 {
border-radius: 0;
padding: 20px;
}
.C600 {
grid-template-columns: 1fr;
}
.C802 {
min-width: 820px;
font-size: 0.75rem;
}
.C803 {
min-height: 36px;
padding: 6px 2px;
}
.C804 {
min-height: 50px;
padding: 2px;
}
.C805 {
font-size: 0.65rem;
padding: 2px 4px;
}
.C807 {
padding: 4px 2px;
background: #1abc9c;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
font-weight: 500;
font-size: 0.9em;
}
.C999 {
display: block;
width: 100%;
}
#menu-toggle:checked ~ .C200 {
transform: translateX(0);
}
#menu-toggle:checked ~ .C200::after {
content: "";
position: fixed;
top: 0;
left: 260px;
width: calc(100vw - 260px);
height: 100vh;
background: rgba(0,0,0,0.3);
}
.C42343457 {
margin-top: 50px;
}
.C234414357 {
margin-top: 10%;
}
.P23900238957 {
margin: 24px 16px;
padding: 28px 20px;
font-size: 15px;
border-radius: 12px;
}
.P23900238957 h1 {
font-size: 1.7rem;
padding-bottom: 12px;
}
.P23900238957 h2 {
font-size: 1.35rem;
margin-top: 32px;
padding-left: 16px;
}
.P23900238957 h3 {
font-size: 1.1rem;
}
}
@media (max-width: 600px) {
.C82452 {
display: flex;
flex-direction: column;
gap: 20px;
}
.C86113 {
height: 180px;
}
.C81134 h2 {
font-size: 2.5em !important;
}
.A9878103 {
width: 100%;
}
.A124812457 {
font-size: 0.7em;
}
.C772321 {
margin-top: 10px;
}
.AU-auth-container {
margin: 10px;
box-shadow: none;
}
.H21321757 {
margin-top: 12%;
}
.C700 {
display: flex;
align-items: center;
margin-bottom: 10px;
flex-direction: column;
}
}
@media (max-width: 480px) {
.P23900238957 {
margin: 16px 10px;
padding: 24px 16px;
font-size: 14px;
border-radius: 10px;
}
.P23900238957 h1 {
font-size: 1.5rem;
}
.P23900238957 h2 {
font-size: 1.2rem;
}
.P23900238957 h3 {
font-size: 1rem;
}
.P23900238957 p {
text-align: left;
}
}
@media (max-width: 425px) {
.C67781 {
padding-top: 4vh;
padding-right: 2vh;
padding-left: 2vh;
}
.C62122 {
width: 100px;
height: 30px;
}
.C62122 p {
font-size: 14px;
}
h3 {
font-size: 1.2em;
}
.M8722 {
height: 100%;
}
.B87732 {
width: 150px;
height: 40px;
color: white;
border-radius: 50px;
cursor: pointer;
}
.B87732 p {
color: black;
font-size: 18px;
font-weight: 300;
}
.M8722 {
padding: 1rem 2.0rem;
}
.V3311 h1 {
font-size: 1.5rem;
margin-bottom: 5px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
max-width: 330px;
}
.C89811 {
height: 60px;
}
.D75734 {
padding: 4.25rem 2.0rem;
}
.D757656 h2 {
top: 5px;
left: 5px;
padding: 5px 5px;
border-radius: 5px;
}
.A234124127 {
overflow: hidden;
}
.A21399157 {
width: 60%;
max-height: 70%;
}
.A97821 img {
width: 300px;
}
.C3788 {
margin-bottom: 0vh;
}
.M872257 {
padding: 4.25rem 2.0rem;
}
.A12321457 {
width: 200px;
height: 200px;
}
.A7234523657 p {
max-width: 200px;
}
.N936771257 {
font-size: 0.7em;
}
.N936771257 {
right: 15px;
}
.B921377 {
margin-top: 20px;
}
}
@media (max-width: 375px) {
.C73321 h2 {
font-size: 1.2em;
}
p {
font-size: 0.7em;
}
.C71134 h3 {
font-size: 1.0em;
}
.C41455 {
margin-bottom: 0px;
}
.C77111 {
gap: 5px;
}
.C77111 a {
font-size: 14px;
}
.C77111 input {
width: 16px;
height: 16px;
}
.C553332 {
min-height: 20px;
line-height: 1.0;
}
.C87762 {
height: 60%;
}
.C821434 h2 {
font-size: 2.0em !important;
}
.C81134 h2 {
font-size: 2.0em !important;
}
.C89811 {
height: 50px;
}
.C86113 {
height: 150px;
}
}
@media (max-width: 320px) {
.V3311 h1 {
font-size: 1.2rem;
margin-bottom: 5px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
max-width: 250px;
}
}